[yum] update to latest HEAD Basically just an update for transifex sync.

James Antill james at fedoraproject.org
Mon Oct 17 21:49:32 UTC 2011


commit fc5be08e632046928b03dec8f7d4e44ea3662c15
Author: James Antill <james at and.org>
Date:   Mon Oct 17 17:49:06 2011 -0400

    update to latest HEAD
    Basically just an update for transifex sync.

 yum-HEAD.patch |141531 ++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 yum.spec       |    6 +-
 2 files changed, 138101 insertions(+), 3436 deletions(-)
---
diff --git a/yum-HEAD.patch b/yum-HEAD.patch
index a1ad8f8..d611bc9 100644
--- a/yum-HEAD.patch
+++ b/yum-HEAD.patch
@@ -1,5 +1,18 @@
+diff --git a/.gitignore b/.gitignore
+index 911da19..85decd5 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -4,6 +4,8 @@
+ *.bak
+ *.swp
+ *.tar.*
++.tx
++docs/sphinxdocs/_build
+ .project
+ .pydevproject
+ asthelper.completions
 diff --git a/Makefile b/Makefile
-index 740b616..fc04853 100644
+index 740b616..0622bbe 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -1,4 +1,4 @@
@@ -8,7 +21,7 @@ index 740b616..fc04853 100644
  PYFILES = $(wildcard *.py)
  PYLINT_MODULES =  *.py yum rpmUtils
  PYLINT_IGNORE = oldUtils.py
-@@ -38,6 +38,10 @@ install:
+@@ -38,6 +38,19 @@ install:
  
  	for d in $(SUBDIRS); do make PYTHON=$(PYTHON) DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; [ $$? = 0 ] || exit 1; done
  
@@ -16,6 +29,15 @@ index 740b616..fc04853 100644
 +	make -C docs/sphinxdocs html
 +	echo "Docs are in: docs/sphinxdocs/_build/html/*"
 +
++transifex-pull:
++	tx pull -a -f
++	@echo "You can now git commit -a -m 'Transfix pull, *.po update'"
++
++transifex-push:
++	make -C po yum.pot
++	tx push -s -t
++	@echo "You can now git commit -a -m 'Transfix push, yum.pot update'"
++
  .PHONY: docs test
  
  DOCS = yum rpmUtils callback.py yumcommands.py shell.py output.py cli.py utils.py\
@@ -1797,7 +1819,7 @@ index 1a8202a..499da41 100644
  Specifies the config file location - can take HTTP and FTP URLs and local file
  paths\&.
 diff --git a/docs/yum.conf.5 b/docs/yum.conf.5
-index 515aa73..607e9fc 100644
+index 515aa73..d6fe824 100644
 --- a/docs/yum.conf.5
 +++ b/docs/yum.conf.5
 @@ -114,15 +114,27 @@ are causing problems from the transaction.
@@ -1855,7 +1877,7 @@ index 515aa73..607e9fc 100644
  \fBsslcacert \fR
  Path to the directory containing the databases of the certificate authorities
  yum should use to verify SSL certificates. Defaults to none - uses system
-@@ -595,6 +616,12 @@ package's dependencies. If any of them are no longer required by any other
+@@ -595,6 +616,16 @@ package's dependencies. If any of them are no longer required by any other
  package then also mark them to be removed.
  Boolean (1, 0, True, False, yes,no) Defaults to False
  
@@ -1865,10 +1887,14 @@ index 515aa73..607e9fc 100644
 +installed dependencies and check for an update.
 +Boolean (1, 0, True, False, yes,no) Defaults to False
 +
++.IP
++\fBreset_nice \fR
++If set to true then yum will try to reset the nice value to zero, before
++running an rpm transaction. Defaults to False.
  
  
  .SH "[repository] OPTIONS"
-@@ -755,6 +782,11 @@ repository.
+@@ -755,6 +786,11 @@ repository.
  Overrides the \fBbandwidth\fR option from the [main] section for this
  repository.
  
@@ -2234,9 +2260,18 @@ index c60fa08..0000000
 -ts run
 -exit
 diff --git a/etc/yum.bash b/etc/yum.bash
-index f1e06e8..b998341 100644
+index f1e06e8..8760a9b 100644
 --- a/etc/yum.bash
 +++ b/etc/yum.bash
+@@ -8,7 +8,7 @@ _yum_list()
+     # Fail fast for things that look like paths.
+     [[ $2 == */* || $2 == [.~]* ]] && return
+ 
+-    if [ "$1" = all ] ; then
++    if [[ $1 == all ]] ; then
+         # Try to strip in between headings like "Available Packages" - would
+         # be nice if e.g. -d 0 did that for us.  This will obviously only work
+         # for English :P
 @@ -45,7 +45,7 @@ _yum_grouplist()
  {
      local IFS=$'\n'
@@ -2246,6 +2281,15 @@ index f1e06e8..b998341 100644
          2>/dev/null | sed -ne 's/^[[:space:]]\{1,\}\(.\{1,\}\)/\1/p' )" \
          -- "$2" ) )
  }
+@@ -56,7 +56,7 @@ _yum_grouplist()
+ _yum_plugins()
+ {
+     local val
+-    [ $1 = 1 ] && val='\(1\|yes\|true\|on\)' || val='\(0\|no\|false\|off\)'
++    [[ $1 -eq 1 ]] && val='\(1\|yes\|true\|on\)' || val='\(0\|no\|false\|off\)'
+     COMPREPLY+=( $( compgen -W '$( command grep -il "^\s*enabled\s*=\s*$val" \
+         /etc/yum/pluginconf.d/*.conf 2>/dev/null \
+         | sed -ne "s|^.*/\([^/]\{1,\}\)\.conf$|\1|p" )' -- "$2" ) )
 @@ -75,7 +75,7 @@ _yum_baseopts()
  {
      local opts='--help --tolerant --cacheonly --config --randomwait
@@ -2283,7 +2327,24 @@ index f1e06e8..b998341 100644
  
      local i c cmd subcmd
      for (( i=1; i < ${#words[@]}-1; i++ )) ; do
-@@ -231,13 +241,15 @@ _yum()
+@@ -211,7 +221,7 @@ _yum()
+             ;;
+ 
+         clean)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W 'expire-cache packages headers
+                     metadata cache dbcache all' -- "$cur" ) )
+             return 0
+@@ -224,20 +234,22 @@ _yum()
+             ;;
+ 
+         distro-sync|distribution-synchronization)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W 'full different' -- "$cur" ) )
+             _yum_list installed "$cur"
+             return 0
              ;;
  
          downgrade|reinstall)
@@ -2302,7 +2363,72 @@ index f1e06e8..b998341 100644
              return 0
              ;;
  
-@@ -288,8 +300,10 @@ _yum()
+@@ -247,36 +259,53 @@ _yum()
+             ;;
+ 
+         help)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W '${cmds[@]}' -- "$cur" ) )
+             return 0
+             ;;
+ 
+         history)
+             if [[ $prev == $cmd ]] ; then
+-                COMPREPLY=( $( compgen -W 'info list summary undo redo new
+-                    addon-info package-list rollback' -- "$cur" ) )
++                COMPREPLY=( $( compgen -W 'info list packages-list
++                    packages-info summary addon-info redo undo rollback new
++                    sync stats' -- "$cur" ) )
+                 return 0
+             fi
+             case $subcmd in
+-                undo|redo|repeat|addon|addon-info|rollback)
+-                    _yum_transactions
+-                    COMPREPLY=( $( compgen -W "${COMPREPLY[@]} last" \
+-                        -- "$cur" ) )
++                undo|repeat|addon|addon-info|rollback)
++                    if [[ $prev == $subcmd ]]; then
++                        COMPREPLY=( $( compgen -W "last" -- "$cur" ) )
++                        _yum_transactions
++                    fi
++                    ;;
++                redo)
++                    case $prev in
++                        redo)
++                            COMPREPLY=( $( compgen -W "force-reinstall
++                                force-remove last" -- "$cur" ) )
++                            _yum_transactions
++                            ;;
++                        reinstall|force-reinstall|remove|force-remove)
++                            COMPREPLY=( $( compgen -W "last" -- "$cur" ) )
++                            _yum_transactions
++                            ;;
++                    esac
+                     ;;
+                 package-list|pkg|pkgs|pkg-list|pkgs-list|package|packages|\
+-                packages-list)
++                packages-list|pkg-info|pkgs-info|package-info|packages-info)
+                     _yum_list available "$cur"
+                     ;;
+                 info|list|summary)
+-                    _yum_transactions
+                     if [[ $subcmd != info ]] ; then
+-                        COMPREPLY=( $( compgen -W "${COMPREPLY[@]} all" \
+-                            -- "$cur" ) )
++                        COMPREPLY=( $( compgen -W "all" -- "$cur" ) )
+                         [[ $cur != all ]] && _yum_list available "$cur"
+                     else
+                         _yum_list available "$cur"
+                     fi
++                    _yum_transactions
++                    ;;
++                sync|synchronize)
++                    _yum_list installed "$cur"
+                     ;;
+             esac
+             return 0
+@@ -288,13 +317,15 @@ _yum()
              ;;
  
          install)
@@ -2315,7 +2441,27 @@ index f1e06e8..b998341 100644
              return 0
              ;;
  
-@@ -318,8 +332,10 @@ _yum()
+         list)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W 'all available updates installed
+                     extras obsoletes recent' -- "$cur" ) )
+             return 0
+@@ -306,24 +337,26 @@ _yum()
+             ;;
+ 
+         repolist)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W 'all enabled disabled' -- "$cur" ) )
+             return 0
+             ;;
+ 
+         shell)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -f -o plusdirs -- "$cur" ) )
+             return 0
              ;;
  
          update|upgrade)
@@ -2328,6 +2474,11 @@ index f1e06e8..b998341 100644
              return 0
              ;;
          version)
+-            [ "$prev" = "$cmd" ] && \
++            [[ $prev == $cmd ]] && \
+                 COMPREPLY=( $( compgen -W 'all installed available nogroups
+                     grouplist groupinfo' -- "$cur" ) )
+             return 0
 diff --git a/output.py b/output.py
 index b6aa277..be4e4d9 100755
 --- a/output.py
@@ -3633,4967 +3784,139450 @@ index b6aa277..be4e4d9 100755
      """simple progress bar 50 # marks"""
      
      mark = '#'
-diff --git a/po/cs.po b/po/cs.po
-index 622394b..8d79443 100644
---- a/po/cs.po
-+++ b/po/cs.po
-@@ -2,14 +2,15 @@
+diff --git a/po/bn_IN.po b/po/bn_IN.po
+index f1f232a..3d3e57d 100644
+--- a/po/bn_IN.po
++++ b/po/bn_IN.po
+@@ -2,12 +2,13 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
--# Adam  Pribyl <covex at lowlevel.cz>, 2011
-+#   <zpavlas at redhat.com>, 2011.
-+# Adam  Pribyl <covex at lowlevel.cz>, 2011.
++# Translators:
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
  "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-08-12 20:48+0000\n"
-+"Last-Translator: MilanKerslager <milan.kerslager at pslib.cz>\n"
- "Language-Team: Czech (http://www.transifex.net/projects/p/yum/team/cs/)\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Bengali (India) (http://www.transifex.net/projects/p/yum/team/bn_IN/)\n"
  "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -19,21 +20,21 @@ msgstr ""
+@@ -16,413 +17,438 @@ msgstr ""
+ "Language: bn_IN\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
  
- #: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
  msgid "Updating"
--msgstr "Aktualizuje se"
-+msgstr "Aktualizace"
+ msgstr ""
  
- #: ../callback.py:49 ../yum/rpmtrans.py:74
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
  msgid "Erasing"
--msgstr "Maže se"
-+msgstr "Odstranění"
+ msgstr ""
  
- #: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
- #: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
  #: ../yum/rpmtrans.py:78
  msgid "Installing"
--msgstr "Instaluje se"
-+msgstr "Instalování"
+ msgstr ""
  
- #: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
--msgstr "Zastaralé"
-+msgstr "Zastaralo"
+ msgstr ""
  
- #: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
  msgid "Updated"
-@@ -72,7 +73,7 @@ msgstr "Odstraňuje se"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
  
- #: ../callback.py:219 ../yum/rpmtrans.py:79
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
  msgid "Cleanup"
--msgstr "Čistí se"
-+msgstr "Vymazání"
+ msgstr ""
  
- #: ../cli.py:115
+-#: ../cli.py:115
++#: ../cli.py:118
  #, python-format
-@@ -81,11 +82,11 @@ msgstr "Příkaz „%s“ již definován"
+ msgid "Command \"%s\" already defined"
+ msgstr ""
  
- #: ../cli.py:127
+-#: ../cli.py:127
++#: ../cli.py:133
  msgid "Setting up repositories"
--msgstr "Nastavují se repozitáře"
-+msgstr "Příprava repozitářů"
+ msgstr ""
  
- #: ../cli.py:138
+-#: ../cli.py:138
++#: ../cli.py:144
  msgid "Reading repository metadata in from local files"
--msgstr "Načítají se metadata repozitářů z lokálních souborů"
-+msgstr "Načítání metadat repozitářů z lokálních souborů"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
  
- #: ../cli.py:245 ../utils.py:281
+-#: ../cli.py:297
++#: ../cli.py:306
  #, python-format
-@@ -114,7 +115,7 @@ msgstr "  Odesláno     : %s na %s"
+ msgid "  Committed: %s at %s"
+ msgstr ""
  
- #: ../cli.py:336
+-#: ../cli.py:336
++#: ../cli.py:347
  msgid "You need to give some command"
--msgstr "Musíte zadat nějaký příkaz"
-+msgstr "Musít být zadán nějaký příkaz"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
  
- #: ../cli.py:350
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
  #, python-format
-@@ -150,15 +151,15 @@ msgstr "Ukončeno na příkaz uživatele"
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
  
- #: ../cli.py:501
+-#: ../cli.py:501
++#: ../cli.py:525
  msgid "Downloading Packages:"
--msgstr "Stahují se balíčky:"
-+msgstr "Stahování balíčků:"
+ msgstr ""
  
- #: ../cli.py:506
+-#: ../cli.py:506
++#: ../cli.py:530
  msgid "Error Downloading Packages:\n"
--msgstr "Chyba stahování balíčků:\n"
-+msgstr "Chyba při stahování balíčků:\n"
+ msgstr ""
  
- #: ../cli.py:525 ../yum/__init__.py:4967
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
  msgid "Running Transaction Check"
--msgstr ""
-+msgstr "Spuštěna kontrola transakce"
+ msgstr ""
  
- #: ../cli.py:534 ../yum/__init__.py:4976
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
  msgid "ERROR You need to update rpm to handle:"
-@@ -166,32 +167,32 @@ msgstr "CHYBA Je potřeba aktualizovat rpm k provedení:"
+ msgstr ""
  
- #: ../cli.py:536 ../yum/__init__.py:4979
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
  msgid "ERROR with transaction check vs depsolve:"
--msgstr ""
-+msgstr "CHYBA při kontrole transakce a řešení závislostí:"
+ msgstr ""
  
- #: ../cli.py:542
+-#: ../cli.py:542
++#: ../cli.py:566
  msgid "RPM needs to be updated"
--msgstr "Je potřeba aktualizovat RPM"
-+msgstr "Je nutné aktualizovat RPM"
+ msgstr ""
  
- #: ../cli.py:543
+-#: ../cli.py:543
++#: ../cli.py:567
  #, python-format
  msgid "Please report this error in %s"
--msgstr "Oznamte prosím tuto chybu v %s"
-+msgstr "Oznamte prosím tuto chybu na adrese %s"
+ msgstr ""
  
- #: ../cli.py:549
+-#: ../cli.py:549
++#: ../cli.py:573
  msgid "Running Transaction Test"
--msgstr "Spouští se test transakcí"
-+msgstr "Spuštěn test transakce"
+ msgstr ""
  
- #: ../cli.py:561
+-#: ../cli.py:561
++#: ../cli.py:585
  msgid "Transaction Check Error:\n"
--msgstr "Chyba při kontrole transakcí:\n"
-+msgstr "Chyba při kontrole transakce:\n"
+ msgstr ""
  
- #: ../cli.py:568
+-#: ../cli.py:568
++#: ../cli.py:592
  msgid "Transaction Test Succeeded"
--msgstr "Test transakcí uspěl"
-+msgstr "Test transakce v pořádku"
+ msgstr ""
  
- #: ../cli.py:600
+-#: ../cli.py:600
++#: ../cli.py:624
  msgid "Running Transaction"
--msgstr "Spouští se transakce"
-+msgstr "Transakce spuštěna"
+ msgstr ""
  
- #: ../cli.py:630
+-#: ../cli.py:630
++#: ../cli.py:657
  msgid ""
-@@ -203,7 +204,7 @@ msgstr ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
  
- #: ../cli.py:649 ../cli.py:692
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
  msgid "  * Maybe you meant: "
--msgstr "  * Možná jste myslel: "
-+msgstr "  * Možná bylo míněno: "
+ msgstr ""
  
- #: ../cli.py:675 ../cli.py:683
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
  #, python-format
-@@ -227,29 +228,29 @@ msgstr "Není co dělat"
- #: ../cli.py:767
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
  #, python-format
- msgid "%d packages marked for Update"
--msgstr "%d balíčků označeno k aktualizaci"
-+msgstr "%d balíčků k aktualizaci"
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
  
- #: ../cli.py:770
+-#: ../cli.py:770
++#: ../cli.py:826
  msgid "No Packages marked for Update"
--msgstr "Žádné balíčky označené k aktualizaci"
-+msgstr "Nejsou dostupné žádné balíčky s aktualizacemi"
+ msgstr ""
  
- #: ../cli.py:866
+-#: ../cli.py:866
++#: ../cli.py:937
  #, python-format
- msgid "%d packages marked for Distribution Synchronization"
--msgstr "%d balíčků označených k synchronizaci distribuce"
-+msgstr "%d balíčků určeno k synchronizaci distribuce"
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
  
- #: ../cli.py:869
+-#: ../cli.py:869
++#: ../cli.py:939
  msgid "No Packages marked for Distribution Synchronization"
--msgstr "K synchronizaci distribuce nebyly označeny žádné balíčky"
-+msgstr "K synchronizaci distribuce nebyly určeny žádné balíčky"
+ msgstr ""
  
- #: ../cli.py:885
+-#: ../cli.py:885
++#: ../cli.py:965
  #, python-format
- msgid "%d packages marked for removal"
--msgstr "%d balíčků označeno ke smazání"
-+msgstr "%d balíčků ke smazání"
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
  
- #: ../cli.py:888
+-#: ../cli.py:888
++#: ../cli.py:967
  msgid "No Packages marked for removal"
--msgstr "Žádné balíčky označené k odstranění"
-+msgstr "Žádné balíčky ke smazání"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
  
- #: ../cli.py:913
- msgid "Package(s) to downgrade"
-@@ -263,7 +264,7 @@ msgstr " (z %s)"
- #: ../cli.py:939
+-#: ../cli.py:939
++#: ../cli.py:1041
  #, python-format
  msgid "Installed package %s%s%s%s not available."
--msgstr "Instalované balíčky  %s%s%s%s nejsou dostupné"
-+msgstr "Instalované balíčky %s%s%s%s nejsou dostupné"
- 
- #: ../cli.py:947
- msgid "Package(s) to reinstall"
-@@ -271,23 +272,27 @@ msgstr "Balíček(y) k reinstalaci"
+ msgstr ""
  
- #: ../cli.py:960
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
  msgid "No Packages Provided"
--msgstr "Žádný balíček neposkytuje"
-+msgstr "Neposkytnuty žádné balíčky"
+ msgstr ""
  
- #: ../cli.py:1058
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
  #, python-format
  msgid "N/S Matched: %s"
--msgstr ""
-+msgstr "Jméno/Souhrn odpovídá: %s"
+ msgstr ""
  
- #: ../cli.py:1075
+-#: ../cli.py:1075
++#: ../cli.py:1209
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
-+"  Vyhledáno %spouze%s podle jména a souhrnu, použijte \"search all\" pro "
-+"úplné hledání."
  
- #: ../cli.py:1077
+-#: ../cli.py:1077
++#: ../cli.py:1211
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
-+"  Vyhledáno %spouze%s podle plného jména a souhrnu, použijte \"search all\" "
-+"pro úplné hledání."
  
- #: ../cli.py:1095
+-#: ../cli.py:1095
++#: ../cli.py:1229
  #, python-format
-@@ -297,12 +302,12 @@ msgstr "Shoda: %s"
- #: ../cli.py:1102
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
--msgstr ""
-+msgstr "  Vyhledáno %shlavně%s, použijte \"search all\" pro úplné hledání."
+ msgstr ""
  
- #: ../cli.py:1106
+-#: ../cli.py:1106
++#: ../cli.py:1240
  #, python-format
  msgid "Warning: No matches found for: %s"
--msgstr "Varování: Žádný balíček odpovídající: %s"
-+msgstr "Varování: Žádná shoda pro: %s"
+ msgstr ""
  
- #: ../cli.py:1109
+-#: ../cli.py:1109
++#: ../cli.py:1243
  msgid "No Matches found"
-@@ -315,44 +320,44 @@ msgstr "Nebyly nalezeny balíčky pro %s"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
  
- #: ../cli.py:1184
+-#: ../cli.py:1184
++#: ../cli.py:1377
  msgid "Cleaning repos: "
--msgstr "Čištění repozitářů:"
-+msgstr "Vyčištění repozitářů:"
+ msgstr ""
  
- #: ../cli.py:1189
+-#: ../cli.py:1189
++#: ../cli.py:1382
  msgid "Cleaning up Everything"
--msgstr "Čistí se vše"
-+msgstr "Vymazání celého obsahu cache"
+ msgstr ""
  
- #: ../cli.py:1205
+-#: ../cli.py:1205
++#: ../cli.py:1398
  msgid "Cleaning up Headers"
--msgstr "Čistí se hlavičky"
-+msgstr "Vymazání hlaviček"
+ msgstr ""
  
- #: ../cli.py:1208
+-#: ../cli.py:1208
++#: ../cli.py:1401
  msgid "Cleaning up Packages"
--msgstr "Čistí se balíčky"
-+msgstr "Vymazání balíčků"
+ msgstr ""
  
- #: ../cli.py:1211
+-#: ../cli.py:1211
++#: ../cli.py:1404
  msgid "Cleaning up xml metadata"
--msgstr "Čistí se XML metadata"
-+msgstr "Vymazání XML metadat"
+ msgstr ""
  
- #: ../cli.py:1214
+-#: ../cli.py:1214
++#: ../cli.py:1407
  msgid "Cleaning up database cache"
--msgstr "Čistí se skladiště databáze"
-+msgstr "Vymazání databázové cache"
+ msgstr ""
  
- #: ../cli.py:1217
+-#: ../cli.py:1217
++#: ../cli.py:1410
  msgid "Cleaning up expire-cache metadata"
--msgstr "Ze skladiště se odstraňují zastaralá metadata"
-+msgstr "Vymazání zastaralých metadat"
+ msgstr ""
  
- #: ../cli.py:1220
+-#: ../cli.py:1220
++#: ../cli.py:1413
  msgid "Cleaning up cached rpmdb data"
--msgstr "Čistí se skladiště rpmdb dat"
-+msgstr "Vymazání rpmdb cache"
+ msgstr ""
  
- #: ../cli.py:1223
+-#: ../cli.py:1223
++#: ../cli.py:1416
  msgid "Cleaning up plugins"
--msgstr "Čistí se zásuvné moduly"
-+msgstr "Vymazání modulů"
+ msgstr ""
  
- #: ../cli.py:1247
+-#: ../cli.py:1247
++#: ../cli.py:1452
  #, python-format
  msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Varování: Žádná shoda skupiny pro: %s"
+ msgstr ""
  
- #: ../cli.py:1264
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
  msgid "Installed Groups:"
-@@ -360,7 +365,7 @@ msgstr "Nainstalované skupiny:"
+ msgstr ""
  
- #: ../cli.py:1270
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
  msgid "Installed Language Groups:"
--msgstr ""
-+msgstr "Nainstalované jazykové skupiny:"
+ msgstr ""
  
- #: ../cli.py:1276
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
  msgid "Available Groups:"
-@@ -368,7 +373,7 @@ msgstr "Dostupné skupiny:"
+ msgstr ""
  
- #: ../cli.py:1282
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
  msgid "Available Language Groups:"
--msgstr ""
-+msgstr "Dostupné jazykové skupiny:"
+ msgstr ""
  
- #: ../cli.py:1285
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
  msgid "Done"
-@@ -411,7 +416,7 @@ msgstr "Balíček %s je již nainstalován, přeskakuje se"
- #: ../cli.py:1397
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
--msgstr "Skartuje se neporovnatelný balíček %s.%s"
-+msgstr "Zahození neporovnatelného balíčku %s.%s"
+ msgstr ""
  
  #. we've not got any installed that match n or n+a
- #: ../cli.py:1423
-@@ -421,12 +426,12 @@ msgstr "Žádný jiný %s nainstalován, přidán do seznamu k potenciální ins
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
  
- #: ../cli.py:1443
+-#: ../cli.py:1443
++#: ../cli.py:1736
  msgid "Plugin Options"
--msgstr "Možnosti zásuvného modulu"
-+msgstr "Volby zásuvného modulu"
+ msgstr ""
  
- #: ../cli.py:1451
+-#: ../cli.py:1451
++#: ../cli.py:1748
  #, python-format
  msgid "Command line error: %s"
--msgstr "Chyba příkazové řádky: %s"
-+msgstr "Chyba na příkazovém řádku: %s"
+ msgstr ""
  
- #: ../cli.py:1467
+-#: ../cli.py:1467
++#: ../cli.py:1770
  #, python-format
-@@ -441,13 +446,13 @@ msgstr ""
+ msgid ""
+ "\n"
+@@ -430,438 +456,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
  
- #: ../cli.py:1521
+-#: ../cli.py:1521
++#: ../cli.py:1834
  msgid "--color takes one of: auto, always, never"
--msgstr "--color přijímá jeden z: auto, always, never"
-+msgstr "--color může být jen: auto, always, never"
+ msgstr ""
  
  #. We have a relative installroot ... haha
- #: ../cli.py:1596
+-#: ../cli.py:1596
++#: ../cli.py:1909
  #, python-format
  msgid "--installroot must be an absolute path: %s"
--msgstr ""
-+msgstr "--installroot musí být absolutní cesta: %s"
+ msgstr ""
  
- #: ../cli.py:1642
+-#: ../cli.py:1642
++#: ../cli.py:1963
  msgid "show this help message and exit"
-@@ -459,7 +464,7 @@ msgstr "tolerovat chyby"
+ msgstr ""
  
- #: ../cli.py:1649
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
  msgid "run entirely from system cache, don't update cache"
--msgstr "spustit vše ze systémového skladiště, bez jeho aktualizace"
-+msgstr "spustit vše ze systémové cache, bez její aktualizace"
+ msgstr ""
  
- #: ../cli.py:1652
+-#: ../cli.py:1652
++#: ../cli.py:1973
  msgid "config file location"
-@@ -471,7 +476,7 @@ msgstr "maximální čas čekání na příkaz"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
  
- #: ../cli.py:1657
+-#: ../cli.py:1657
++#: ../cli.py:1978
  msgid "debugging output level"
--msgstr "úroveň výstupních ladících informací"
-+msgstr "úroveň výpisu ladících informací"
+ msgstr ""
  
- #: ../cli.py:1661
+-#: ../cli.py:1661
++#: ../cli.py:1982
  msgid "show duplicates, in repos, in list/search commands"
-@@ -479,23 +484,23 @@ msgstr "ukázat duplikáty v repozitářích, v list/search příkazech"
+ msgstr ""
  
- #: ../cli.py:1663
+-#: ../cli.py:1663
++#: ../cli.py:1984
  msgid "error output level"
--msgstr "úroveň výstupu chyb"
-+msgstr "úroveň výpisu chyb"
+ msgstr ""
  
- #: ../cli.py:1666
+-#: ../cli.py:1666
++#: ../cli.py:1987
  msgid "debugging output level for rpm"
--msgstr "úroveň výstupních ladících informací pro rpm"
-+msgstr "úroveň výpisu ladících informací pro rpm"
+ msgstr ""
  
- #: ../cli.py:1669
+-#: ../cli.py:1669
++#: ../cli.py:1990
  msgid "quiet operation"
--msgstr "tichý chod"
-+msgstr "tichý běh"
+ msgstr ""
  
- #: ../cli.py:1671
+-#: ../cli.py:1671
++#: ../cli.py:1992
  msgid "verbose operation"
--msgstr "užvaněný chod"
-+msgstr "užvaněný běh"
+ msgstr ""
  
- #: ../cli.py:1673
+-#: ../cli.py:1673
++#: ../cli.py:1994
  msgid "answer yes for all questions"
--msgstr "odpovědět ano na všechny otázky"
-+msgstr "odpovědět na všechny otázky ano"
+ msgstr ""
  
- #: ../cli.py:1675
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
  msgid "show Yum version and exit"
-@@ -515,7 +520,7 @@ msgstr "zakázat jeden nebo více repozitářů (zástupné znaky povoleny)"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
  
- #: ../cli.py:1687
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
  msgid "exclude package(s) by name or glob"
--msgstr "vyřadit balíček(y) podle jména nebo globálně"
-+msgstr "vyřadit balíček(y) podle jména nebo výrazu"
+ msgstr ""
  
- #: ../cli.py:1689
+-#: ../cli.py:1689
++#: ../cli.py:2014
  msgid "disable exclude from main, for a repo or for everything"
-@@ -551,7 +556,7 @@ msgstr "kontrola zda jsou použity barvy"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
  
- #: ../cli.py:1708
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
  msgid "set value of $releasever in yum config and repo files"
--msgstr "nastavte hodnotu $releasever v konfiguraci yumu a repo souborech"
-+msgstr "nastavit hodnotu $releasever pro yum a repo soubory"
+ msgstr ""
  
- #: ../cli.py:1710
+-#: ../cli.py:1710
++#: ../cli.py:2035
  msgid "set arbitrary config and repo options"
-@@ -559,110 +564,110 @@ msgstr "nastavit doplňkové konfigurace a možnosti repozitáře "
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "Jan"
--msgstr "Led"
-+msgstr "led"
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "Feb"
--msgstr "Úno"
-+msgstr "úno"
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "Mar"
--msgstr "Bře"
-+msgstr "bře"
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "Apr"
--msgstr "Dub"
-+msgstr "dub"
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "May"
--msgstr "Kvě"
-+msgstr "kvě"
+ msgstr ""
  
- #: ../output.py:307
+-#: ../output.py:307
++#: ../output.py:440
  msgid "Jun"
--msgstr "Čer"
-+msgstr "čer"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Jul"
--msgstr "Čec"
-+msgstr "čec"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Aug"
--msgstr "Srp"
-+msgstr "srp"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Sep"
--msgstr "Zář"
-+msgstr "zář"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Oct"
--msgstr "Říj"
-+msgstr "říj"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Nov"
--msgstr "Lis"
-+msgstr "lis"
+ msgstr ""
  
- #: ../output.py:308
+-#: ../output.py:308
++#: ../output.py:441
  msgid "Dec"
--msgstr "Pro"
-+msgstr "pro"
+ msgstr ""
  
- #: ../output.py:318
+-#: ../output.py:318
++#: ../output.py:455
  msgid "Trying other mirror."
--msgstr "Zkouší se jiné zrcadlo"
-+msgstr "Zkusí se jiné zrcadlo..."
+ msgstr ""
  
- #: ../output.py:581
+-#: ../output.py:581
++#: ../output.py:798
  #, python-format
  msgid "Name        : %s%s%s"
--msgstr "Jméno       : %s%s%s"
-+msgstr "Jméno        : %s%s%s"
+ msgstr ""
  
- #: ../output.py:582
+-#: ../output.py:582
++#: ../output.py:799
  #, python-format
  msgid "Arch        : %s"
--msgstr "Arch        : %s"
-+msgstr "Platforma    : %s"
+ msgstr ""
  
- #: ../output.py:584
+-#: ../output.py:584
++#: ../output.py:801
  #, python-format
  msgid "Epoch       : %s"
--msgstr "Epocha      : %s"
-+msgstr "Epocha       : %s"
+ msgstr ""
  
- #: ../output.py:585
+-#: ../output.py:585
++#: ../output.py:802
  #, python-format
  msgid "Version     : %s"
--msgstr "Verze       : %s"
-+msgstr "Verze        : %s"
+ msgstr ""
  
- #: ../output.py:586
+-#: ../output.py:586
++#: ../output.py:803
  #, python-format
  msgid "Release     : %s"
--msgstr "Vydání      : %s"
-+msgstr "Vydání       : %s"
+ msgstr ""
  
- #: ../output.py:587
+-#: ../output.py:587
++#: ../output.py:804
  #, python-format
  msgid "Size        : %s"
--msgstr "Velikost    : %s"
-+msgstr "Velikost     : %s"
+ msgstr ""
  
- #: ../output.py:588 ../output.py:900
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
  #, python-format
  msgid "Repo        : %s"
--msgstr "Repo        : %s"
-+msgstr "Repozitář    : %s"
+ msgstr ""
  
- #: ../output.py:590
+-#: ../output.py:590
++#: ../output.py:807
  #, python-format
  msgid "From repo   : %s"
--msgstr "Z repozitáře: %s"
-+msgstr "Z repozitáře : %s"
+ msgstr ""
  
- #: ../output.py:592
+-#: ../output.py:592
++#: ../output.py:809
  #, python-format
  msgid "Committer   : %s"
--msgstr "Odesilatel  : %s"
-+msgstr "Odesilatel   : %s"
+ msgstr ""
  
- #: ../output.py:593
+-#: ../output.py:593
++#: ../output.py:810
  #, python-format
  msgid "Committime  : %s"
--msgstr "Čas odeslání: %s"
-+msgstr "Čas odeslání : %s"
+ msgstr ""
  
- #: ../output.py:594
+-#: ../output.py:594
++#: ../output.py:811
  #, python-format
  msgid "Buildtime   : %s"
--msgstr "Čas sestavení: %s"
-+msgstr "Čas vytvoření: %s"
+ msgstr ""
  
- #: ../output.py:596
+-#: ../output.py:596
++#: ../output.py:813
  #, python-format
-@@ -672,29 +677,29 @@ msgstr "Čas instalace: %s "
- #: ../output.py:604
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
  #, python-format
  msgid "Installed by: %s"
--msgstr "Nainstaloval: %s "
-+msgstr "Nainstaloval : %s "
+ msgstr ""
  
- #: ../output.py:611
+-#: ../output.py:611
++#: ../output.py:828
  #, python-format
  msgid "Changed by  : %s"
--msgstr "Změnil      : %s"
-+msgstr "Změnil       : %s"
+ msgstr ""
  
- #: ../output.py:612
+-#: ../output.py:612
++#: ../output.py:829
  msgid "Summary     : "
--msgstr "Souhrn      : "
-+msgstr "Souhrn       : "
+ msgstr ""
  
- #: ../output.py:614 ../output.py:913
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
  #, python-format
  msgid "URL         : %s"
--msgstr "URL         : %s"
-+msgstr "URL          : %s"
+ msgstr ""
  
- #: ../output.py:615
+-#: ../output.py:615
++#: ../output.py:832
  msgid "License     : "
--msgstr "Licence     : "
-+msgstr "Licence      : "
+ msgstr ""
  
- #: ../output.py:616 ../output.py:910
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
  msgid "Description : "
--msgstr "Popis       : "
-+msgstr "Popis        : "
+ msgstr ""
  
- #: ../output.py:684
+-#: ../output.py:684
++#: ../output.py:949
  msgid "y"
-@@ -738,7 +743,7 @@ msgstr " Popis: %s"
- #: ../output.py:788
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
  #, python-format
  msgid " Language: %s"
--msgstr ""
-+msgstr " Jazyk: %s"
+ msgstr ""
  
- #: ../output.py:790
+-#: ../output.py:790
++#: ../output.py:1059
  msgid " Mandatory Packages:"
-@@ -759,20 +764,20 @@ msgstr " Podmínečné balíčky:"
- #: ../output.py:814
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
  #, python-format
  msgid "package: %s"
--msgstr "balíčky: %s"
-+msgstr "balíček: %s"
+ msgstr ""
  
- #: ../output.py:816
+-#: ../output.py:816
++#: ../output.py:1088
  msgid "  No dependencies for this package"
--msgstr "  Pro tento balíček nejsou žádné závislosti"
-+msgstr "  Pro balíček nejsou žádné závislosti"
+ msgstr ""
  
- #: ../output.py:821
+-#: ../output.py:821
++#: ../output.py:1093
  #, python-format
  msgid "  dependency: %s"
--msgstr "  závislosti: %s"
-+msgstr "  závislost: %s"
+ msgstr ""
  
- #: ../output.py:823
+-#: ../output.py:823
++#: ../output.py:1095
  msgid "   Unsatisfied dependency"
--msgstr "   Neuspokojené závislosti"
-+msgstr "   Nevyřešené závislosti"
+ msgstr ""
  
- #: ../output.py:901
+-#: ../output.py:901
++#: ../output.py:1206
  msgid "Matched from:"
-@@ -794,7 +799,7 @@ msgstr "Další       : "
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
  
- #: ../output.py:966
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
  msgid "There was an error calculating total download size"
--msgstr "Při výpočtu celkové velikosti stahování nastala chyba"
-+msgstr "Při výpočtu celkové velikosti ke stahování nastala chyba"
+ msgstr ""
  
- #: ../output.py:971
+-#: ../output.py:971
++#: ../output.py:1285
  #, python-format
-@@ -804,7 +809,7 @@ msgstr "Celková velikost: %s"
- #: ../output.py:974
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
  #, python-format
  msgid "Total download size: %s"
--msgstr "Celková velikost stahování: %s"
-+msgstr "Celková velikost ke stahování: %s"
+ msgstr ""
  
- #: ../output.py:978 ../output.py:998
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
  #, python-format
-@@ -813,27 +818,27 @@ msgstr "Nainstalovaná velikost: %s"
+ msgid "Installed size: %s"
+ msgstr ""
  
- #: ../output.py:994
+-#: ../output.py:994
++#: ../output.py:1311
  msgid "There was an error calculating installed size"
--msgstr "Při počítání velikosti instalace došlo k chybě"
-+msgstr "Při výpočtu velikosti po instalaci došlo k chybě"
+ msgstr ""
  
- #: ../output.py:1039
+-#: ../output.py:1039
++#: ../output.py:1357
  msgid "Reinstalling"
--msgstr "Přeinstalovává se"
-+msgstr "Reinstalace"
+ msgstr ""
  
- #: ../output.py:1040
+-#: ../output.py:1040
++#: ../output.py:1358
  msgid "Downgrading"
--msgstr "Snižuje se verze"
-+msgstr "Snížení verze"
+ msgstr ""
  
- #: ../output.py:1041
+-#: ../output.py:1041
++#: ../output.py:1359
  msgid "Installing for dependencies"
--msgstr "Instaluje se kvůli závislostem"
-+msgstr "Instalace kvůli závislostem"
+ msgstr ""
  
- #: ../output.py:1042
+-#: ../output.py:1042
++#: ../output.py:1360
  msgid "Updating for dependencies"
--msgstr "Aktualizuje se kvůli závislostem"
-+msgstr "Aktualizace se kvůli závislostem"
+ msgstr ""
  
- #: ../output.py:1043
+-#: ../output.py:1043
++#: ../output.py:1361
  msgid "Removing for dependencies"
--msgstr "Odstraňuje se kvůli závislostem"
-+msgstr "Odstranění kvůli závislostem"
+ msgstr ""
  
- #: ../output.py:1050 ../output.py:1171
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
  msgid "Skipped (dependency problems)"
-@@ -845,7 +850,7 @@ msgstr "Nenainstalováno"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
  
- #: ../output.py:1053
+-#: ../output.py:1053
++#: ../output.py:1371
  msgid "Not available"
--msgstr ""
-+msgstr "Nedostupný"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
  msgid "Package"
-@@ -935,7 +940,7 @@ msgstr "Selhalo"
- #. Delta between C-c's so we treat as exit
- #: ../output.py:1260
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +901,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
  msgid "two"
--msgstr "dvě"
-+msgstr "dvou"
+ msgstr ""
  
- #. For translators: This is output like:
+@@ -927,7 +954,7 @@ msgstr ""
  #. Current download cancelled, interrupt (ctrl-c) again within two seconds
-@@ -995,11 +1000,11 @@ msgstr "Systém"
- #: ../output.py:1411
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +962,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
--msgstr ""
-+msgstr "Vynechání sloučené transakce %d až %d, protože jsou v překryvu"
+ msgstr ""
  
- #: ../output.py:1421 ../output.py:1592
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
  msgid "No transactions"
--msgstr ""
-+msgstr "Žádné transakce"
+ msgstr ""
  
- #: ../output.py:1446 ../output.py:2013
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
  msgid "Bad transaction IDs, or package(s), given"
-@@ -1007,11 +1012,11 @@ msgstr "Zadáno špatné ID transakce nebo balíčku/ů"
+ msgstr ""
  
- #: ../output.py:1484
+-#: ../output.py:1484
++#: ../output.py:1808
  msgid "Command line"
--msgstr ""
-+msgstr "Příkazový řádek"
+ msgstr ""
  
- #: ../output.py:1486 ../output.py:1908
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
  msgid "Login user"
--msgstr "Přihlášení uživatele"
-+msgstr "Přihlášen uživatel"
+ msgstr ""
  
  #. REALLY Needs to use columns!
- #: ../output.py:1487 ../output.py:2022
-@@ -1077,26 +1082,26 @@ msgstr "Začátek rpmdb  :"
- #: ../output.py:1749
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
  #, python-format
  msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u sekund)"
+ msgstr ""
  
- #: ../output.py:1751
+-#: ../output.py:1751
++#: ../output.py:2088
  #, python-format
  msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u minut)"
+ msgstr ""
  
- #: ../output.py:1753
+-#: ../output.py:1753
++#: ../output.py:2090
  #, python-format
  msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u hodin)"
+ msgstr ""
  
- #: ../output.py:1755
+-#: ../output.py:1755
++#: ../output.py:2092
  #, python-format
  msgid "(%u days)"
--msgstr ""
-+msgstr "(%u dnů)"
+ msgstr ""
  
- #: ../output.py:1756
+-#: ../output.py:1756
++#: ../output.py:2093
  msgid "End time       :"
--msgstr "Konečný čas    :"
-+msgstr "Čas ukončení    :"
+ msgstr ""
  
- #: ../output.py:1759 ../output.py:1761
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
  msgid "End rpmdb      :"
-@@ -1117,7 +1122,7 @@ msgstr "Přerušeno"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
  
- #: ../output.py:1773
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
  msgid "Failures:"
--msgstr ""
-+msgstr "Selhání:"
+ msgstr ""
  
- #: ../output.py:1777
+-#: ../output.py:1777
++#: ../output.py:2114
  msgid "Failure:"
-@@ -1125,11 +1130,11 @@ msgstr "Selhalo:"
+ msgstr ""
  
- #: ../output.py:1779
+-#: ../output.py:1779
++#: ../output.py:2116
  msgid "Success"
--msgstr "Úspěch"
-+msgstr "Úspěšné"
+ msgstr ""
  
- #: ../output.py:1784 ../output.py:1786
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
  msgid "Command Line   :"
--msgstr "Příkazová řádka:"
-+msgstr "Příkazový řádek:"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
  
- #: ../output.py:1795
+-#: ../output.py:2003
++#: ../output.py:2356
  #, python-format
-@@ -1242,48 +1247,48 @@ msgstr "%s: Nenalezena další data toho jména"
+ msgid "%s: No additional data found by this name"
+ msgstr ""
  
- #: ../output.py:2106
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
  msgid "installed"
--msgstr "instalaci"
-+msgstr "instalován"
+ msgstr ""
  
- #: ../output.py:2107
+-#: ../output.py:2107
++#: ../output.py:2567
  msgid "an update"
--msgstr ""
-+msgstr "novou aktualizací"
+ msgstr ""
  
- #: ../output.py:2108
+-#: ../output.py:2108
++#: ../output.py:2568
  msgid "erased"
--msgstr "smazání"
-+msgstr "smazán"
+ msgstr ""
  
- #: ../output.py:2109
+-#: ../output.py:2109
++#: ../output.py:2569
  msgid "reinstalled"
--msgstr "reinstalaci"
-+msgstr "reinstalován"
+ msgstr ""
  
- #: ../output.py:2110
+-#: ../output.py:2110
++#: ../output.py:2570
  msgid "a downgrade"
--msgstr ""
-+msgstr "ponížen"
+ msgstr ""
  
- #: ../output.py:2111
+-#: ../output.py:2111
++#: ../output.py:2571
  msgid "obsoleting"
--msgstr ""
-+msgstr "nahrazen"
+ msgstr ""
  
- #: ../output.py:2112
+-#: ../output.py:2112
++#: ../output.py:2572
  msgid "updated"
--msgstr "aktualizaci"
-+msgstr "aktualizován"
+ msgstr ""
  
- #: ../output.py:2113
+-#: ../output.py:2113
++#: ../output.py:2573
  msgid "obsoleted"
--msgstr "zastarání"
-+msgstr "zastaralý"
+ msgstr ""
  
- #: ../output.py:2117
+-#: ../output.py:2117
++#: ../output.py:2577
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
--msgstr ""
-+msgstr "---> Balíček %s.%s %s:%s-%s bude %s"
+ msgstr ""
  
- #: ../output.py:2124
+-#: ../output.py:2124
++#: ../output.py:2588
  msgid "--> Running transaction check"
--msgstr "--> Spouští se kontrola transakce"
-+msgstr "--> Kontrola transakce spuštěna"
+ msgstr ""
  
- #: ../output.py:2129
+-#: ../output.py:2129
++#: ../output.py:2594
  msgid "--> Restarting Dependency Resolution with new changes."
--msgstr "--> Restartuje se řešení závislostí s novými změnami."
-+msgstr "--> Restartování řešení závislostí s novými změnami."
+ msgstr ""
  
- #: ../output.py:2134
+-#: ../output.py:2134
++#: ../output.py:2600
  msgid "--> Finished Dependency Resolution"
-@@ -1292,17 +1297,17 @@ msgstr "--> Řešení závislostí dokončeno"
- #: ../output.py:2139 ../output.py:2144
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
--msgstr "--> Zpracování závislosti: %s pro balíček: %s"
-+msgstr "--> Zpracování závislostí: %s pro balíček: %s"
+ msgstr ""
  
- #: ../output.py:2149
+-#: ../output.py:2149
++#: ../output.py:2639
  #, python-format
  msgid "---> Keeping package: %s"
--msgstr "---> Ponechají se balíčky: %s"
-+msgstr "---> Ponechíní balíčku: %s"
+ msgstr ""
  
- #: ../output.py:2152
+-#: ../output.py:2152
++#: ../output.py:2648
  #, python-format
  msgid "--> Unresolved Dependency: %s"
--msgstr "--> Nevyřešená závislost: %s"
-+msgstr "--> Nevyřešené závislosti: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
  
- #: ../output.py:2163
+-#: ../output.py:2179
++#: ../output.py:2681
  #, python-format
-@@ -1347,7 +1352,7 @@ msgstr ""
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
  #. These should be the only three things we care about:
- #: ../output.py:2196
+-#: ../output.py:2196
++#: ../output.py:2698
  msgid "Updated By"
--msgstr "Aktualizoval"
-+msgstr "Aktualizací balíčku"
+ msgstr ""
  
- #: ../output.py:2197
+-#: ../output.py:2197
++#: ../output.py:2699
  msgid "Downgraded By"
-@@ -1355,7 +1360,7 @@ msgstr "Snížil verzi"
+ msgstr ""
  
- #: ../output.py:2198
+-#: ../output.py:2198
++#: ../output.py:2700
  msgid "Obsoleted By"
--msgstr "Zastaral"
-+msgstr "Zastaralán"
+ msgstr ""
  
- #: ../output.py:2216
+-#: ../output.py:2216
++#: ../output.py:2718
  msgid "Available"
-@@ -1368,12 +1373,12 @@ msgstr "--> Zpracování konfliktu: %s je v konfliktu s %s"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
  
- #: ../output.py:2252
+-#: ../output.py:2252
++#: ../output.py:2772
  msgid "--> Populating transaction set with selected packages. Please wait."
--msgstr "--> Do transakční sady se přidávají vybrané balíčky. Čekejte prosím."
-+msgstr "--> Do transakce jsou přidávány vybrané balíčky. Čekejte prosím."
+ msgstr ""
  
- #: ../output.py:2256
+-#: ../output.py:2256
++#: ../output.py:2781
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
--msgstr "---> Stahují se hlavičky %s pro přidání do transakce."
-+msgstr "---> Stahování hlaviček %s pro přidání do transakce."
+ msgstr ""
  
- #: ../utils.py:99
+-#: ../utils.py:99
++#: ../utils.py:123
  msgid "Running"
-@@ -1416,7 +1421,7 @@ msgstr "    Paměť  : %5s RSS (%5sB VSZ)"
- #: ../utils.py:125
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
  #, python-format
  msgid "    Started: %s - %s ago"
--msgstr "    Spuštěn: %s - %s nazpět"
-+msgstr "    Spuštěn: %s - před %s"
+ msgstr ""
  
- #: ../utils.py:127
+-#: ../utils.py:127
++#: ../utils.py:161
  #, python-format
-@@ -1431,7 +1436,7 @@ msgid ""
+ msgid "    State  : %s, pid: %d"
  msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
  "\n"
  "\n"
--"Ukončeno na základě pokynu uživatele"
-+"Ukončeno na příkaz uživatele"
+ "Exiting on user cancel"
+ msgstr ""
  
- #: ../utils.py:176 ../yummain.py:49
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
  msgid ""
-@@ -1441,7 +1446,7 @@ msgid ""
- msgstr ""
  "\n"
  "\n"
--"Ukončeno kvůli nefunkční rouře"
-+"Ukončeno přerušením roury"
+ "Exiting on Broken Pipe"
+ msgstr ""
  
- #: ../utils.py:178 ../yummain.py:51
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
  #, python-format
-@@ -1459,7 +1464,7 @@ msgid ""
+ msgid ""
+ "\n"
+@@ -1420,47 +1499,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
  "Another app is currently holding the yum lock; exiting as configured by "
  "exit_on_lock"
  msgstr ""
--"Zámek aplikace yum je uzamčen jinou aplikací; ukončeno dle konfigurace "
-+"Zámek pro yum nyní blokuje jiná aplikace; ukončení kvůli nastavenému "
- "exit_on_lock"
  
- #: ../utils.py:287
-@@ -1479,7 +1484,7 @@ msgstr "Chyba: %s"
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
  
- #: ../utils.py:346 ../yummain.py:194
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
  msgid " You could try using --skip-broken to work around the problem"
--msgstr " Můžete zkusit volbu --skip-broken k překonání tohoto problému"
-+msgstr " Pro obejití problému můžete zkusit volbu --skip-broken"
+ msgstr ""
  
- #: ../utils.py:348 ../yummain.py:87
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
  msgid " You could try running: rpm -Va --nofiles --nodigest"
-@@ -1496,7 +1501,7 @@ msgid ""
- "Dependencies Resolved"
  msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
  "\n"
--"Závislosti vyřešeny"
-+"Závislosti vyřešeny."
+ "Dependencies Resolved"
+ msgstr ""
  
- #: ../utils.py:376 ../yummain.py:234
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
  msgid "Complete!"
-@@ -1504,11 +1509,11 @@ msgstr "Hotovo!"
- 
- #: ../yumcommands.py:42
- msgid " Mini usage:\n"
--msgstr ""
-+msgstr " Mini použití:\n"
+ msgstr ""
  
- #: ../yumcommands.py:52
+@@ -1472,7 +1551,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
--msgstr "Pro spuštění tohoto příkazu potřebujete být root."
-+msgstr "Tento příkaz může spustit jen root."
+ msgstr ""
  
- #: ../yumcommands.py:59
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
  msgid ""
-@@ -1527,9 +1532,9 @@ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1568,484 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
- "\n"
--"Povolili jste kontrolu balíčků pomocí GPG klíčů, což je dobrá věc.\n"
--"Bohužel nemáte ale nainstalován žádný veřejný GPG klíč. Musíte stáhnout klíč\n"
--"pro balíček, který si přejete nainstalovat a přidat jej příkazem\n"
-+"Je povolena kontrola balíčků pomocí GPG klíčů, což je dobrá věc.\n"
-+"Není však nainstalován žádný veřejný GPG klíč. Musíte stáhnout\n"
-+"klíč pro balíček, který si přejete nainstalovat a přidat jej příkazem\n"
- "    rpm --import public.gpg.key\n"
- "\n"
- "\n"
-@@ -1542,7 +1547,7 @@ msgstr ""
- #: ../yumcommands.py:74
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
  #, python-format
  msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Problém v repozitáři: %s"
+ msgstr ""
  
- #: ../yumcommands.py:80
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
  #, python-format
-@@ -1551,7 +1556,7 @@ msgstr "Chyba: Je potřeba předat seznam balíčků do %s"
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
  
- #: ../yumcommands.py:86
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
  msgid "Error: Need an item to match"
--msgstr "Chyba: K nalezení shody je potřeba předmět"
-+msgstr "Chyba: K nalezení shody je potřeba položka"
+ msgstr ""
  
- #: ../yumcommands.py:92
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
  msgid "Error: Need a group or list of groups"
-@@ -1569,7 +1574,7 @@ msgstr "Chyba: Neplatný argument pro clean: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
  
- #: ../yumcommands.py:119
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
  msgid "No argument to shell"
--msgstr "Shell nemá žádný argument"
-+msgstr "Žádný argument pro shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
  
- #: ../yumcommands.py:121
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
  #, python-format
-@@ -1591,9 +1596,9 @@ msgid ""
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
  " You can enable repos with yum-config-manager --enable <repo>"
  msgstr ""
--"Neexistují žádné povolené repozitáře.\n"
--" Abyste viděli povolené repozitáře spusťte \"yum repolist all\".\n"
--" Povolit repozitáře můžete pomocí \"yum-config-manager --enable <repo>\""
-+"K dispozici nejsou žádné povolené repozitáře.\n"
-+" Pro zobrazení repozitářů spusťte \"yum repolist all\".\n"
-+" Repozitáře můžete povolit pomocí \"yum-config-manager --enable <repo>\""
  
- #: ../yumcommands.py:200
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
  msgid "PACKAGE..."
-@@ -1605,7 +1610,7 @@ msgstr "Instalovat balíček nebo balíčky do vašeho systému"
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
  
- #: ../yumcommands.py:212
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
  msgid "Setting up Install Process"
--msgstr "Uspořádává se průběh instalace"
-+msgstr "Příprava průběhu instalace"
+ msgstr ""
  
- #: ../yumcommands.py:223 ../yumcommands.py:245
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
  msgid "[PACKAGE...]"
-@@ -1613,11 +1618,11 @@ msgstr "[Balíček...]"
+ msgstr ""
  
- #: ../yumcommands.py:226
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
  msgid "Update a package or packages on your system"
--msgstr "Aktualizovat balíček nebo balíčky na vašem systému"
-+msgstr "Aktualizovat balíček nebo balíčky v systému"
+ msgstr ""
  
- #: ../yumcommands.py:234
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
  msgid "Setting up Update Process"
--msgstr "Uspořádává se průběh aktualizace"
-+msgstr "Příprava průběhu aktualizace"
+ msgstr ""
  
- #: ../yumcommands.py:248
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
  msgid "Synchronize installed packages to the latest available versions"
-@@ -1625,7 +1630,7 @@ msgstr "Synchronizovat nainstalované balíčky na poslední dostupnou verzi"
+ msgstr ""
  
- #: ../yumcommands.py:256
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
  msgid "Setting up Distribution Synchronization Process"
--msgstr "Uspořádává se proces synchronizace distribuce"
-+msgstr "Příprava procesu synchronizace distribuce"
+ msgstr ""
  
- #: ../yumcommands.py:299
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
  msgid "Display details about a package or group of packages"
-@@ -1633,32 +1638,32 @@ msgstr "Zobrazit detaily o balíčku nebo skupině balíčků"
+ msgstr ""
  
- #: ../yumcommands.py:348
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
  msgid "Installed Packages"
--msgstr "Nainstalované balíčky"
-+msgstr "Nainstalované balíčky:"
+ msgstr ""
  
- #: ../yumcommands.py:356
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
  msgid "Available Packages"
--msgstr "Dostupné balíčky"
-+msgstr "Dostupné balíčky:"
+ msgstr ""
  
- #: ../yumcommands.py:360
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
  msgid "Extra Packages"
--msgstr "Dodatečné balíčky"
-+msgstr "Dodatečné balíčky:"
+ msgstr ""
  
- #: ../yumcommands.py:364
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
  msgid "Updated Packages"
--msgstr "Aktualizované balíčky"
-+msgstr "Aktualizované balíčky:"
+ msgstr ""
  
  #. This only happens in verbose mode
- #: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
  msgid "Obsoleting Packages"
--msgstr "Zastaralé balíčky"
-+msgstr "Zastaralé balíčky:"
+ msgstr ""
  
- #: ../yumcommands.py:381
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
  msgid "Recently Added Packages"
--msgstr "Nově přidané balíčky"
-+msgstr "Nedávno přidané balíčky:"
+ msgstr ""
  
- #: ../yumcommands.py:388
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
  msgid "No matching Packages to list"
--msgstr "Nenalezeny shodné balíčky"
-+msgstr "Nenalezeny odpovídající balíčky"
+ msgstr ""
  
- #: ../yumcommands.py:402
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
  msgid "List a package or groups of packages"
-@@ -1670,11 +1675,11 @@ msgstr "Odstranit balíček nebo balíčky ze systému"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
  
- #: ../yumcommands.py:421
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
  msgid "Setting up Remove Process"
--msgstr "Uspořádává se průběh odstranění"
-+msgstr "Příprava průběhu odstranění"
+ msgstr ""
  
- #: ../yumcommands.py:435
- msgid "Setting up Group Process"
--msgstr "Uspořádává se zpracování skupiny"
-+msgstr "Příprava zpracování skupiny"
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
  
- #: ../yumcommands.py:441
- msgid "No Groups on which to run command"
-@@ -1698,23 +1703,23 @@ msgstr "Zobrazit detaily o skupině balíčků"
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
  
- #: ../yumcommands.py:550
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
  msgid "Generate the metadata cache"
--msgstr "Vygenerovat skladiště metadat"
-+msgstr "Vygenerovat cache s metadaty"
+ msgstr ""
  
- #: ../yumcommands.py:556
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
  msgid "Making cache files for all metadata files."
--msgstr "Vytváří se skladištní soubory pro všechna metadata "
-+msgstr "Vytváření cache souborů pro všechna metadata."
+ msgstr ""
  
- #: ../yumcommands.py:557
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
  msgid "This may take a while depending on the speed of this computer"
--msgstr "Může to chvíli trvat v závislosti na rychlosti tohoto počítače"
-+msgstr "Může to chvíli trvat v závislosti na rychlosti počítače"
+ msgstr ""
  
- #: ../yumcommands.py:578
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
  msgid "Metadata Cache Created"
--msgstr "Skladiště metadat vytvořeno"
-+msgstr "Cache s metadaty vytvořena."
+ msgstr ""
  
- #: ../yumcommands.py:592
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
  msgid "Remove cached data"
--msgstr "Odstranit data ze skladiště"
-+msgstr "Odstranit data z cache"
+ msgstr ""
  
- #: ../yumcommands.py:613
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
  msgid "Find what package provides the given value"
-@@ -1722,15 +1727,15 @@ msgstr "Nalézt balíček, který poskytuje danou hodnotu"
+ msgstr ""
  
- #: ../yumcommands.py:633
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
  msgid "Check for available package updates"
--msgstr "Zkontrolovat dostupné aktualizace balíčků"
-+msgstr "Zkontrolovat dostupnost aktualizací pro balíčky"
+ msgstr ""
  
- #: ../yumcommands.py:687
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
  msgid "Search package details for the given string"
--msgstr "Nalézt detaily balíčku pro daný řetězec"
-+msgstr "Vyhledat detaily balíčku pro zadaný řetězec"
+ msgstr ""
  
- #: ../yumcommands.py:693
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
  msgid "Searching Packages: "
--msgstr "Prohledávají se balíčky: "
-+msgstr "Prohledávání balíčků: "
+ msgstr ""
  
- #: ../yumcommands.py:710
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
  msgid "Update packages taking obsoletes into account"
-@@ -1738,7 +1743,7 @@ msgstr "Aktualizovat balíčky a brát v úvahu zastaralé"
+ msgstr ""
  
- #: ../yumcommands.py:719
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
  msgid "Setting up Upgrade Process"
--msgstr "Uspořádává se průběh aktualizace"
-+msgstr "Příprava průběhu upgrade"
+ msgstr ""
  
- #: ../yumcommands.py:737
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
  msgid "Install a local RPM"
-@@ -1746,15 +1751,15 @@ msgstr "Instalovat lokální RPM"
+ msgstr ""
  
- #: ../yumcommands.py:745
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
  msgid "Setting up Local Package Process"
--msgstr "Uspořádává se zpracování lokálního balíčku"
-+msgstr "Příprava zpracování lokálního balíčku"
+ msgstr ""
  
- #: ../yumcommands.py:764
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
  msgid "Determine which package provides the given dependency"
--msgstr "Určit který balíček poskytuje danou závislost"
-+msgstr "Zjistit, který balíček poskytuje danou závislost"
+ msgstr ""
  
- #: ../yumcommands.py:767
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
  msgid "Searching Packages for Dependency:"
--msgstr "Prohledávají se balíčky kvůli závislostem:"
-+msgstr "Prohledávání balíčků pro vyřešení závislostí:"
+ msgstr ""
  
- #: ../yumcommands.py:781
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
  msgid "Run an interactive yum shell"
-@@ -1762,15 +1767,15 @@ msgstr "Spustit interaktivní shell yum"
+ msgstr ""
  
- #: ../yumcommands.py:787
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
  msgid "Setting up Yum Shell"
--msgstr "Nastavuje se yum shell"
-+msgstr "Příprava yum shellu"
+ msgstr ""
  
- #: ../yumcommands.py:805
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
  msgid "List a package's dependencies"
--msgstr "Zobrazit závislosti balíčku"
-+msgstr "Vypsat závislosti balíčku"
+ msgstr ""
  
- #: ../yumcommands.py:811
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
  msgid "Finding dependencies: "
--msgstr "Hledají se závislosti: "
-+msgstr "Hledání závislostí: "
+ msgstr ""
  
- #: ../yumcommands.py:827
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
  msgid "Display the configured software repositories"
-@@ -1786,11 +1791,11 @@ msgstr "zakázáno"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
  
- #: ../yumcommands.py:937
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
  msgid "Repo-id      : "
--msgstr "Repo-id      : "
-+msgstr "Repo-ID      : "
+ msgstr ""
  
- #: ../yumcommands.py:938
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
  msgid "Repo-name    : "
--msgstr "Repo-jméno   : "
-+msgstr "Repo-název   : "
+ msgstr ""
  
- #: ../yumcommands.py:941
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
  msgid "Repo-status  : "
-@@ -1810,11 +1815,11 @@ msgstr "Repo-distro-tagy: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
  
- #: ../yumcommands.py:959
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
  msgid "Repo-updated : "
--msgstr "Repo-aktuální: "
-+msgstr "Repo-aktual. : "
+ msgstr ""
  
- #: ../yumcommands.py:961
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
  msgid "Repo-pkgs    : "
--msgstr "Repo-bal.    : "
-+msgstr "Repo-balíčků : "
+ msgstr ""
  
- #: ../yumcommands.py:962
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
  msgid "Repo-size    : "
-@@ -1830,7 +1835,7 @@ msgstr "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
  
- #: ../yumcommands.py:981
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
  msgid "  Updated    : "
--msgstr "  Aktualizováno: "
-+msgstr "Aktualizováno: "
+ msgstr ""
  
- #: ../yumcommands.py:984
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
  msgid "Repo-mirrors : "
-@@ -1869,21 +1874,21 @@ msgstr "Repo-vyřazeno: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
  
- #: ../yumcommands.py:1022
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
  msgid "Repo-filename: "
--msgstr ""
-+msgstr "Repo-konfig  : "
+ msgstr ""
  
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
- #: ../yumcommands.py:1032 ../yumcommands.py:1061
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
  msgid "repo id"
--msgstr "repo id"
-+msgstr "ID repozitáře:"
+ msgstr ""
  
- #: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
  msgid "status"
--msgstr "status"
-+msgstr "Stav:"
+ msgstr ""
  
- #: ../yumcommands.py:1062
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
  msgid "repo name"
--msgstr "jméno repa"
-+msgstr "Název repozitáře:"
+ msgstr ""
  
- #: ../yumcommands.py:1099
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
  msgid "Display a helpful usage message"
-@@ -1892,7 +1897,7 @@ msgstr "Zobrazit užitečnou nápovědu"
- #: ../yumcommands.py:1133
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
  #, python-format
  msgid "No help available for %s"
--msgstr "Není dostupná nápověda pro %s"
-+msgstr "Pro %s není dostupná nápověda"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
  
- #: ../yumcommands.py:1138
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
  msgid ""
-@@ -1916,7 +1921,7 @@ msgstr ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
  
- #: ../yumcommands.py:1168
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
  msgid "Setting up Reinstall Process"
--msgstr "Uspořádává se průběh reinstalace"
-+msgstr "Příprava průběhu reinstalace"
+ msgstr ""
  
- #: ../yumcommands.py:1176
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
  msgid "reinstall a package"
-@@ -1924,7 +1929,7 @@ msgstr "Reinstalace balíčku"
+ msgstr ""
  
- #: ../yumcommands.py:1195
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
  msgid "Setting up Downgrade Process"
--msgstr "Uspořádává se průběh snížení verze"
-+msgstr "Příprava snížení verze"
+ msgstr ""
  
- #: ../yumcommands.py:1202
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
  msgid "downgrade a package"
-@@ -1932,7 +1937,7 @@ msgstr "Snížení verze balíčku"
+ msgstr ""
  
- #: ../yumcommands.py:1216
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
  msgid "Display a version for the machine and/or available repos."
--msgstr "Zobrazit verzi pro tento počítač a/nebo dostupné repozitáře."
-+msgstr "Zobrazit verzi pro počítač a/nebo dostupné repozitáře."
+ msgstr ""
  
- #: ../yumcommands.py:1255
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
  msgid " Yum version groups:"
-@@ -1964,12 +1969,12 @@ msgstr "Dostupné skupiny:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
  
- #: ../yumcommands.py:1360
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
  msgid "Display, or use, the transaction history"
--msgstr "Zobrazit nebo používat transakční historii"
-+msgstr "Zobrazit nebo používat historii transakcí"
+ msgstr ""
  
- #: ../yumcommands.py:1432
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
  #, python-format
  msgid "Invalid history sub-command, use: %s."
--msgstr "Neplatný pod-příkaz historie, použijte: %s."
-+msgstr "Neplatný subpříkaz historie, použijte: %s."
+ msgstr ""
  
- #: ../yumcommands.py:1439
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
  msgid "You don't have access to the history DB."
-@@ -1981,46 +1986,46 @@ msgstr "Zkontrolovat problémy v rpmdb"
+ msgstr ""
  
- #: ../yumcommands.py:1514
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
  msgid "load a saved transaction from filename"
--msgstr ""
-+msgstr "Načíst transakci uloženou v souboru"
+ msgstr ""
  
- #: ../yumcommands.py:1518
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
  msgid "No saved transaction file specified."
--msgstr ""
-+msgstr "Nebyla zadána žádná uložená transakce."
+ msgstr ""
  
- #: ../yumcommands.py:1522
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
  #, python-format
  msgid "loading transaction from %s"
--msgstr ""
-+msgstr "načítání transakce z %s"
+ msgstr ""
  
- #: ../yumcommands.py:1528
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
-+msgstr "Transakce načtena z %s s %s položkami"
- 
- #. This is mainly for PackageSackError from rpmdb.
- #: ../yummain.py:84
- #, python-format
+ msgstr ""
+@@ -1944,100 +2056,106 @@ msgstr ""
  msgid " Yum checks failed: %s"
--msgstr ""
-+msgstr " Selhaly kontroly Yumu: %s"
+ msgstr ""
  
- #: ../yummain.py:114
- msgid ""
- "Another app is currently holding the yum lock; waiting for it to exit..."
--msgstr "Zámek yumu je obsazen jinou aplikací; čeká se na její ukončení..."
-+msgstr "Zámek yumu drží jiná aplikace; čeká se na její ukončení..."
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
  
- #: ../yummain.py:120
+-#: ../yummain.py:120
++#: ../yummain.py:124
  msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Nelze vytvořit soubor se zámkem; končím"
+ msgstr ""
  
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
  #. Depsolve stage
- #: ../yummain.py:167
+-#: ../yummain.py:167
++#: ../yummain.py:178
  msgid "Resolving Dependencies"
--msgstr "Řeší se závislosti"
-+msgstr "Řešení závislostí..."
+ msgstr ""
  
- #: ../yummain.py:230
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
  #, python-format
- msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
--msgstr ""
-+msgstr "Transakce byla uložena, spustíte ji pomocí: yum load-transaction %s"
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
  
- #: ../yummain.py:288
+-#: ../yummain.py:288
++#: ../yummain.py:326
  msgid ""
-@@ -2038,8 +2043,7 @@ msgstr "doTsSetup() bude v následujících verzích yumu odstraněno.\n"
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../yum/depsolve.py:99
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
  msgid "Setting up TransactionSets before config class is up"
--msgstr ""
--"Uspořádává se TransactionSet před tím než bude připravena třída config"
-+msgstr "Příprava TransactionSet před tím než bude připravena třída config"
+ msgstr ""
  
- #: ../yum/depsolve.py:153
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
  #, python-format
-@@ -2049,27 +2053,27 @@ msgstr "Neplatný tsflag v konfiguračním souboru: %s"
- #: ../yum/depsolve.py:164
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
  #, python-format
  msgid "Searching pkgSack for dep: %s"
--msgstr "Hledá se pkgSack pro závislost: %s"
-+msgstr "Hledání pkgSack pro závislost: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:207
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
  #, python-format
  msgid "Member: %s"
--msgstr "Prvek: %s"
-+msgstr "Člen: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:221 ../yum/depsolve.py:793
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
  #, python-format
  msgid "%s converted to install"
--msgstr "%s zkonvertován na instalaci"
-+msgstr "%s zkonvertován pro instalaci"
+ msgstr ""
  
- #: ../yum/depsolve.py:233
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
  #, python-format
  msgid "Adding Package %s in mode %s"
--msgstr "Přidává se balíček %s v módu %s"
-+msgstr "Přidání balíčeku %s v režimu %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:249
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
  #, python-format
  msgid "Removing Package %s"
--msgstr "Odstraňuje se balíček %s"
-+msgstr "Odstranění balíčku %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:271
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
  #, python-format
-@@ -2083,12 +2087,12 @@ msgstr "%s vyžaduje %s"
+ msgid "%s requires %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:339
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
  msgid "Needed Require has already been looked up, cheating"
--msgstr "Závazné požadavky již byly prohledány, švindluje se"
-+msgstr "Potřebné Require již bylo vyhledáno, švindluje se"
+ msgstr ""
  
- #: ../yum/depsolve.py:349
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
  #, python-format
  msgid "Needed Require is not a package name. Looking up: %s"
--msgstr "Závazný požadavek není jméno balíčku. Hledá se: %s"
-+msgstr "Potřebné Require není jméno balíčku. Hledání: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:357
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
  #, python-format
-@@ -2098,12 +2102,12 @@ msgstr "Možný poskytovatel: %s"
- #: ../yum/depsolve.py:380
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
  #, python-format
  msgid "Mode is %s for provider of %s: %s"
--msgstr "Mód je %s pro poskytovatele %s: %s"
-+msgstr "Režim %s pro poskytovatele %s: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:384
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
  #, python-format
  msgid "Mode for pkg providing %s: %s"
--msgstr "Mód pro bal. poskytující %s: %s"
-+msgstr "Režim pro bal. poskytující %s: %s"
- 
+ msgstr ""
+@@ -2045,774 +2163,784 @@ msgstr ""
  #. the thing it needs is being updated or obsoleted away
  #. try to update the requiring package in hopes that all this problem goes
-@@ -2111,37 +2115,39 @@ msgstr "Mód pro bal. poskytující %s: %s"
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
  #, python-format
  msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "Pro vyřešení závislostí se zkouší aktualizace %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
-+msgstr "Není cesta pro aktualizaci %s. Selhání!"
+ msgstr ""
  
- #: ../yum/depsolve.py:416
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
--msgstr "TSINFO: %s balíček požaduje %s označený ke smazání"
-+msgstr "TSINFO: balíček %s požaduje %s, který je určen ke smazání"
+ msgstr ""
  
- #: ../yum/depsolve.py:429
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
--msgstr "TSINFO: Zastarává se %s s %s k vyřešení závislostí."
-+msgstr ""
-+"TSINFO: Balíček %s je označen za zastaralý balíčkem %s pro vyřešení "
-+"závislostí."
+ msgstr ""
  
- #: ../yum/depsolve.py:432
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
--msgstr "TSINFO: Aktualizuji %s k vyřešení závislostí."
-+msgstr "TSINFO: Aktualizace %s pro vyřešení závislostí."
+ msgstr ""
  
- #: ../yum/depsolve.py:440
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
--msgstr "Nelze nalézt cestu aktualizací pro závislost pro: %s"
-+msgstr "Nelze nalézt cestu aktualizací pro závislosti pro: %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:471
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
  #, python-format
  msgid "Quick matched %s to require for %s"
--msgstr "Rychlá shoda %s vyžadovaného pro %s"
-+msgstr "Rychlá shoda %s vyžadována pro %s"
+ msgstr ""
  
  #. is it already installed?
- #: ../yum/depsolve.py:513
-@@ -2153,27 +2159,27 @@ msgstr ""
- #: ../yum/depsolve.py:529
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
--msgstr "Balíček %s, který může být řešení, má v ts novější verzi."
-+msgstr "Balíček %s, který může být řešením, má v transakci novější verzi."
+ msgstr ""
  
- #: ../yum/depsolve.py:540
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
--msgstr "Balíček %s, který může být řešení, je nainstalován v novější verzi."
-+msgstr "Balíček %s, který může být řešením, je nainstalován v novější verzi."
+ msgstr ""
  
- #: ../yum/depsolve.py:558
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
  #, python-format
  msgid "%s already in ts, skipping this one"
--msgstr "%s je již v ts, vynechává se"
-+msgstr "%s je již v transakci, vynechává se"
+ msgstr ""
  
- #: ../yum/depsolve.py:607
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
--msgstr "TSINFO: Označuji %s jako aktualizaci %s"
-+msgstr "TSINFO: Označení %s jako aktualizaci pro %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:616
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
--msgstr "TSINFO: Označuji %s jako instalaci %s"
-+msgstr "TSINFO: Označení %s jako instalaci pro %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:727 ../yum/depsolve.py:819
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
  msgid "Success - empty transaction"
-@@ -2181,11 +2187,11 @@ msgstr "Úspěch - prázdná transakce"
+ msgstr ""
  
- #: ../yum/depsolve.py:767 ../yum/depsolve.py:783
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
  msgid "Restarting Loop"
--msgstr "Restartuje se smyčka"
-+msgstr "Restartování smyčky"
+ msgstr ""
  
- #: ../yum/depsolve.py:799
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
  msgid "Dependency Process ending"
--msgstr "Proces zpracování závislostí končí"
-+msgstr "Proces zpracování závislostí skončil"
+ msgstr ""
  
- #: ../yum/depsolve.py:821
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
  msgid "Success - deps resolved"
-@@ -2194,17 +2200,17 @@ msgstr "Úspěch - závislosti vyřešeny"
- #: ../yum/depsolve.py:845
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
  #, python-format
  msgid "Checking deps for %s"
--msgstr "Kontroluji závislosti pro %s"
-+msgstr "Kontrola závislostí pro %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:931
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
  #, python-format
  msgid "looking for %s as a requirement of %s"
--msgstr "hledá se %s jako požadavek od %s"
-+msgstr "hledá se %s jako požadavek pro %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:1169
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
  #, python-format
  msgid "Running compare_providers() for %s"
--msgstr "Spouští se compare_providers() pro %s"
-+msgstr "Spuštěno compare_providers() pro %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
  #, python-format
-@@ -2222,7 +2228,7 @@ msgid ""
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
  "archdist compared %s to %s on %s\n"
  "  Winner: %s"
  msgstr ""
--"archdist porovnán pro %s k %s na %s\n"
-+"archdist porovnal %s vůči %s na %s\n"
- "  Vítěz: %s"
  
- #: ../yum/depsolve.py:1318
-@@ -2253,12 +2259,12 @@ msgstr " Vítěz:  %s"
- #: ../yum/depsolve.py:1368
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
  #, python-format
  msgid " Loser(with %d): %s"
--msgstr " Poražený (kým %d): %s"
-+msgstr " Poražený (%d): %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:1384
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
  #, python-format
  msgid "Best Order: %s"
--msgstr "Nejlepší pořádek: %s"
-+msgstr "Nejlepší pořadí: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:234
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
-@@ -2267,16 +2273,16 @@ msgstr "doConfigSetup() bude odstraněn v příští verzi Yumu.\n"
- #: ../yum/__init__.py:482
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
--msgstr "Repozitář  %r: Chyba při zpracování konfigurace:  %s"
-+msgstr "Repozitář  %r: Chyba při parsování konfigurace:  %s"
+ msgstr ""
  
- #: ../yum/__init__.py:488
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
--msgstr "Repozitáři %r chybí jméno v konfiguraci, používá se id"
-+msgstr "Repozitáři %r chybí v konfiguraci jméno, použito id"
+ msgstr ""
  
- #: ../yum/__init__.py:526
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
  msgid "plugins already initialised"
--msgstr "zásuvný modul je již inicializován"
-+msgstr "zásuvné moduly jsou již inicializovány"
+ msgstr ""
  
- #: ../yum/__init__.py:533
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
-@@ -2284,7 +2290,7 @@ msgstr "doRpmDBSetup() bude odstraněn v příští verzi Yumu.\n"
+ msgstr ""
  
- #: ../yum/__init__.py:544
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
  msgid "Reading Local RPMDB"
--msgstr "Načítá se lokální RPMDB"
-+msgstr "Načítání lokální RPMDB"
+ msgstr ""
  
- #: ../yum/__init__.py:567
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
-@@ -2296,16 +2302,16 @@ msgstr "doSackSetup() bude odstraněn v příští verzi Yumu.\n"
+ msgstr ""
  
- #: ../yum/__init__.py:660
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
  msgid "Setting up Package Sacks"
--msgstr "Připravuje se pytel balíčků"
-+msgstr "Příprava souhrnu balíčků"
+ msgstr ""
  
- #: ../yum/__init__.py:705
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
--msgstr "objekt repozitáře pro repo %s postrádá metodu _resetSack\n"
-+msgstr "repo objekt pro repozitář %s postrádá metodu _resetSack\n"
+ msgstr ""
  
- #: ../yum/__init__.py:706
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
  msgid "therefore this repo cannot be reset.\n"
--msgstr "proto nemůže toto repo být resetováno.\n"
-+msgstr "proto nemůže být tento repozitář resetován.\n"
+ msgstr ""
  
- #: ../yum/__init__.py:711
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
-@@ -2313,7 +2319,7 @@ msgstr "doUpdateSetup() bude odstraněn v příští verzi Yumu.\n"
+ msgstr ""
  
- #: ../yum/__init__.py:723
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
  msgid "Building updates object"
--msgstr "Sestavuje se objekt aktualizací"
-+msgstr "Sestavování objektů aktualizací"
+ msgstr ""
  
- #: ../yum/__init__.py:765
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
-@@ -2321,17 +2327,17 @@ msgstr "doGroupSetup() bude odstraněn v příští verzi Yumu.\n"
+ msgstr ""
  
- #: ../yum/__init__.py:790
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
  msgid "Getting group metadata"
--msgstr "Získávají se metadata skupin"
-+msgstr "Získávání metadata skupin"
+ msgstr ""
  
- #: ../yum/__init__.py:816
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
  #, python-format
  msgid "Adding group file from repository: %s"
--msgstr "Přidává se skupinový soubor pro repozitář: %s"
-+msgstr "Přidání souboru se skupinou pro repozitář: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:827
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
--msgstr "Selhalo přidání skupinového souboru pro repozitář: %s - %s"
-+msgstr "Selhalo přidání souboru se skupinou pro repozitář: %s - %s"
+ msgstr ""
  
- #: ../yum/__init__.py:833
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
  msgid "No Groups Available in any repository"
-@@ -2339,12 +2345,12 @@ msgstr "V žádném repozitáři nejsou dostupné skupiny"
+ msgstr ""
  
- #: ../yum/__init__.py:845
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
  msgid "Getting pkgtags metadata"
--msgstr "Získávají se pkgtags metadata"
-+msgstr "Získávání metadat pkgtags"
+ msgstr ""
  
- #: ../yum/__init__.py:855
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Adding tags from repository: %s"
--msgstr "Přidávají se tagy z repozitáře: %s"
-+msgstr "Přidávání tagů z repozitáře: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:866
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
  #, python-format
-@@ -2353,7 +2359,7 @@ msgstr "Selhalo přidání Pkg Tagů pro repozitář: %s - %s"
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
  
- #: ../yum/__init__.py:944
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
  msgid "Importing additional filelist information"
--msgstr "Importuji informace z dodatečného seznamu souborů"
-+msgstr "Importování informací z dodatečných seznamů souborů"
+ msgstr ""
  
- #: ../yum/__init__.py:958
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
  #, python-format
-@@ -2365,22 +2371,22 @@ msgid ""
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
  msgstr ""
--"Existují nedokončené transakce. Měli byste zvážit možnost nejdříve spustit "
--"yum-complete-transaction k jejich dokončení."
-+"Existují nedokončené transakce. Pro jejich dokončení raději nejprve spusťte "
-+"yum-complete-transaction."
  
- #: ../yum/__init__.py:983
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
  msgid "--> Finding unneeded leftover dependencies"
--msgstr ""
-+msgstr "--> Hledání nepotřebných závislostí"
+ msgstr ""
  
- #: ../yum/__init__.py:1041
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
-+msgstr "Chráněné verze multilib-u: %s != %s"
+ msgstr ""
  
- #: ../yum/__init__.py:1096
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
--msgstr "Zkuste odstranit \"%s\", který je chráněný"
-+msgstr "Pokus o odstranění \"%s\", který je chráněn"
+ msgstr ""
  
- #: ../yum/__init__.py:1217
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
  msgid ""
-@@ -2388,7 +2394,7 @@ msgid ""
+ "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
- "\n"
--"Balíček přeskočen kvůli problémům se závislostmi:"
-+"Balíčky přeskočené kvůli problémům se závislostmi:"
  
- #: ../yum/__init__.py:1221
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
  #, python-format
-@@ -2400,8 +2406,7 @@ msgstr "    %s z %s"
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
--"** Nalezeny %d pre-existující problémy rpmdb, následuje výstup \"yum "
--"check\":"
-+"** Nalezeny %d existující problémy v rpmdb, následuje výstup \"yum check\":"
  
- #: ../yum/__init__.py:1395
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
  msgid "Warning: RPMDB altered outside of yum."
-@@ -2409,11 +2414,11 @@ msgstr "Varování: RPMDB byla změněna mimo yum."
+ msgstr ""
  
- #: ../yum/__init__.py:1407
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
  msgid "missing requires"
--msgstr "chybějící požadavek"
-+msgstr "chybějící requires"
+ msgstr ""
  
- #: ../yum/__init__.py:1408
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
  msgid "installed conflict"
--msgstr "konflikt nainstalovaného"
-+msgstr "instalační konflikt"
+ msgstr ""
  
- #: ../yum/__init__.py:1525
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
  msgid ""
-@@ -2441,14 +2446,14 @@ msgstr "Selhalo odstranění transakčního souboru %s."
- #: ../yum/__init__.py:1590
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
  #, python-format
  msgid "%s was supposed to be installed but is not!"
--msgstr "%s mělo být nainstalováno, ale není!"
-+msgstr "%s by mělo být nainstalováno, ale není!"
+ msgstr ""
  
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
- #: ../yum/__init__.py:1651
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
  #, python-format
  msgid "%s was supposed to be removed but is not!"
--msgstr "%s mělo být odstraněno, ale není!"
-+msgstr "%s by mělo být odstraněno, ale není!"
+ msgstr ""
  
- #: ../yum/__init__.py:1768
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
  #, python-format
-@@ -2459,7 +2464,7 @@ msgstr "Nelze otevřít zámek  %s: %s"
- #: ../yum/__init__.py:1785
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
  #, python-format
  msgid "Unable to check if PID %s is active"
--msgstr "Nedá se zkontrolovat, zda je PID %s aktivní."
-+msgstr "Nelze zkontrolovat, zda je PID %s aktivní."
+ msgstr ""
  
  #. Another copy seems to be running.
- #: ../yum/__init__.py:1789
-@@ -2488,17 +2493,17 @@ msgstr "Nelze zkontrolovat kontrolní součet"
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
  
- #: ../yum/__init__.py:1894
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
  msgid "Package does not match checksum"
--msgstr "Balíček neodpovídá kontrolnímu součtu"
-+msgstr "Kontrolní součet balíčku nesouhlasí"
+ msgstr ""
  
- #: ../yum/__init__.py:1946
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
--msgstr "balíček neprošel kontrolním součtem ale skladiště je povoleno pro %s"
-+msgstr "kontrolní součet balíčku nesouhlasím, avšak pro %s je povolena cache"
+ msgstr ""
  
- #: ../yum/__init__.py:1949 ../yum/__init__.py:1979
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
  #, python-format
  msgid "using local copy of %s"
--msgstr "používá se lokální kopie %s"
-+msgstr "použití lokální kopie %s"
- 
- #: ../yum/__init__.py:1991
- #, python-format
-@@ -2507,9 +2512,9 @@ msgid ""
- "    * free   %s\n"
- "    * needed %s"
  msgstr ""
--"Nedostatek diskového prostoru ve stahovacím adresáři %s\n"
--"    * volno   %s\n"
--"    * potřeba %s"
-+"Nedostatek místa v cílovém adresáři pro stahování: %s\n"
-+"    * volné místo %s\n"
-+"    * je potřeba %s"
  
- #: ../yum/__init__.py:2052
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
  msgid "Header is not complete."
-@@ -2520,8 +2525,8 @@ msgstr "Hlavička není kompletní."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
--"Hlavička není v lokálním skladišti, ale je povoleno používat pouze "
--"skladiště. Nemohu stáhnout %s"
-+"Hlavička není v lokální cache, avšak nic jiného nelze použít. Nelze stáhnout"
-+" %s"
  
- #: ../yum/__init__.py:2147
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
  #, python-format
-@@ -2546,7 +2551,7 @@ msgstr "Balíček %s není podepsán"
- #: ../yum/__init__.py:2202
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
  #, python-format
  msgid "Cannot remove %s"
--msgstr "Nemohu odstranit %s"
-+msgstr "Nelze odstranit %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2206
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
  #, python-format
-@@ -2556,7 +2561,7 @@ msgstr "%s odstraněn"
- #: ../yum/__init__.py:2252
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
  #, python-format
  msgid "Cannot remove %s file %s"
--msgstr "Nemohu odstranit %s soubor %s"
-+msgstr "Nelze odstranit %s soubor %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2256
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
  #, python-format
-@@ -2566,17 +2571,17 @@ msgstr "%s soubor %s odstraněn"
- #: ../yum/__init__.py:2258
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
  #, python-format
- msgid "%d %s files removed"
--msgstr "%d %s soubor odstraněn"
-+msgstr "%d %s souborů odstraněno"
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
  
- #: ../yum/__init__.py:2327
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
  #, python-format
  msgid "More than one identical match in sack for %s"
--msgstr "Více než jedna identická shoda v pytli pro %s"
-+msgstr "Více než jedna identická shoda v souhrnu pro %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2333
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
--msgstr "Nic se neshoduje s %s.%s %s:%s-%s z aktualizace"
-+msgstr "Z aktualizace se nic neshoduje s %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yum/__init__.py:2632
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
  msgid ""
-@@ -2589,31 +2594,31 @@ msgstr ""
- #: ../yum/__init__.py:2675
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
  #, python-format
- msgid "Searching %d packages"
--msgstr "Prohledává se %d balíčků"
-+msgstr "Prohledávání %d balíčků"
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
  
- #: ../yum/__init__.py:2679
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
  #, python-format
  msgid "searching package %s"
--msgstr "prohledává se balíček %s"
-+msgstr "vyhledávání balíčku %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2691
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
  msgid "searching in file entries"
--msgstr "hledá se v souborových položkách"
-+msgstr "vyhledávání v názvech souborů"
+ msgstr ""
  
- #: ../yum/__init__.py:2698
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
  msgid "searching in provides entries"
--msgstr "hledá se v položkách poskytovatelů"
-+msgstr "vyhledávání v položkách poskytuje"
+ msgstr ""
  
- #: ../yum/__init__.py:2777
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
  msgid "No group data available for configured repositories"
--msgstr "Pro nastavený repozitář nejsou žádná dostupná skupinová data"
-+msgstr "Pro aktivní repozitáře nejsou k dispozici žádná data o skupinách"
+ msgstr ""
  
- #: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
- #: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
- #: ../yum/__init__.py:3339
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
  #, python-format
  msgid "No Group named %s exists"
--msgstr "Neexistuje skupina pojmenovaná %s"
-+msgstr "Neexistuje skupina %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2839 ../yum/__init__.py:2973
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
  #, python-format
-@@ -2623,44 +2628,44 @@ msgstr "balíček %s nebyl označen ve skupině %s"
- #: ../yum/__init__.py:2887
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
  #, python-format
  msgid "Adding package %s from group %s"
--msgstr "Přidává se balíček %s pro skupinu %s"
-+msgstr "Přidání balíčku %s ze skupiny %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2891
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
  #, python-format
  msgid "No package named %s available to be installed"
--msgstr "Žádný balíček pojmenovaný %s není dostupný pro instalaci"
-+msgstr "Pro instalaci není k dispozici žádný balíček s názvem %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2941
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
  #, python-format
  msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Varování: Skupina %s neobsahuje žádné balíčky."
+ msgstr ""
  
- #: ../yum/__init__.py:2943
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
-+msgstr "Skupina %s má %u volitelných balíčků, které mohou být nainstalovány."
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
- #: ../yum/__init__.py:3002
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
--msgstr "Uspořádaný seznam balíčků %s nenalezen v pytli balíčků"
-+msgstr "Položka balíčku %s nenalezena v souhrnu balíčků"
+ msgstr ""
  
- #: ../yum/__init__.py:3022
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
--msgstr "Uspořádaný seznam balíčků %s nenalezen v rpmdb"
-+msgstr "Položka balíčku %s nenalezena v rpmdb"
+ msgstr ""
  
- #: ../yum/__init__.py:3079 ../yum/__init__.py:3129
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
  #, python-format
  msgid "Invalid version flag from: %s"
--msgstr ""
-+msgstr "Neplatný příznak verze z: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:3096 ../yum/__init__.py:3101
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
  #, python-format
  msgid "No Package found for %s"
--msgstr "Nebyl nalezen balíček pro %s"
-+msgstr "Pro %s nebyl nalezen žádný balíček"
+ msgstr ""
  
- #: ../yum/__init__.py:3401
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
  msgid "Package Object was not a package object instance"
-@@ -2668,18 +2673,18 @@ msgstr "Objekt balíčku nebyl instancí balíčkového objektu"
+ msgstr ""
  
- #: ../yum/__init__.py:3405
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
  msgid "Nothing specified to install"
--msgstr "Nebylo určeno nic k instalaci"
-+msgstr "K instalaci nebylo nic určeno"
+ msgstr ""
  
- #: ../yum/__init__.py:3424 ../yum/__init__.py:4283
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
--msgstr "Hledá se virtuální poskytovatel nebo soubor poskytující %s"
-+msgstr "Zjišťování virtuálního provide nebo file-provide pro %s"
+ msgstr ""
  
- #: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
- #: ../yum/__init__.py:4289
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
  #, python-format
  msgid "No Match for argument: %s"
--msgstr "Nenalezena shoda pro argument: %s"
-+msgstr "Pro argument nenalezena shoda: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:3507
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
  #, python-format
-@@ -2688,7 +2693,7 @@ msgstr "Balíček %s je nainstalován, ale není dostupný"
+ msgid "Package %s installed and not available"
+ msgstr ""
  
- #: ../yum/__init__.py:3510
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
  msgid "No package(s) available to install"
--msgstr "Žádné balíčky dostupné pro instalaci"
-+msgstr "K instalaci nejsou dostupné žádné balíčky"
+ msgstr ""
  
- #: ../yum/__init__.py:3522
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
  #, python-format
-@@ -2698,7 +2703,8 @@ msgstr "Balíček: %s - již je v transakční sadě"
- #: ../yum/__init__.py:3550
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
--msgstr "Balíček %s je zastaralý balíčkem %s, který je již nainstalován"
-+msgstr ""
-+"Balíček %s je označen za zastaralý balíčkem %s, který je již nainstalován"
+ msgstr ""
  
- #: ../yum/__init__.py:3555
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
  #, python-format
-@@ -2706,13 +2712,15 @@ msgid ""
+ msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
  "requirements"
  msgstr ""
--"Balíček %s je zastaralý balíčkem %s, ale nový balíček nesplňuje závislosti"
-+"Balíček %s je označen za zastaralý balíčkem %s, ale není poskytnut pro "
-+"vyřešení závislostí"
  
- #: ../yum/__init__.py:3558
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
--"Balíček %s je zastaralý balíčkem %s, zkouší se místo něj instalovat %s"
-+"Balíček %s je označen za zastaralý balíčkem %s, zkouší se místo něj "
-+"instalovat %s"
  
- #: ../yum/__init__.py:3566
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
  #, python-format
-@@ -2722,12 +2730,12 @@ msgstr "Balíček %s je již nainstalován a v poslední verzi"
- #: ../yum/__init__.py:3580
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
--msgstr "Balíček odpovídající %s je již nainstalován. Hledají se aktualizace."
-+msgstr "Balíček odpovídající %s je již nainstalován. Vyhledání aktualizací."
+ msgstr ""
  
  #. update everything (the easy case)
- #: ../yum/__init__.py:3684
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
  msgid "Updating Everything"
--msgstr "Aktualizuje se vše"
-+msgstr "Aktualizace všeho"
+ msgstr ""
  
- #: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
- #: ../yum/__init__.py:3915
-@@ -2757,17 +2765,17 @@ msgstr "Neaktualizuje se balíček, který jej již aktuální: %s.%s %s:%s-%s"
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yum/__init__.py:3982
- msgid "No package matched to remove"
--msgstr "Nenalezen žádný shodný balíček pro odstranění"
-+msgstr "Nenalezen žádný balíček pro odstranění"
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yum/__init__.py:3988
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
  #, python-format
  msgid "Skipping the running kernel: %s"
--msgstr "Přeskakuji aktuálně používané jádro: %s"
-+msgstr "Aktuálně používané jádro bylo přeskočeno: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:3994
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
  #, python-format
  msgid "Removing %s from the transaction"
--msgstr "Odstraňuji %s z transakce"
-+msgstr "Odstranění %s z transakce"
+ msgstr ""
  
- #: ../yum/__init__.py:4029
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
  #, python-format
-@@ -2777,23 +2785,24 @@ msgstr "Nelze otevřít: %s. Přeskakuje se."
- #: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
  #, python-format
  msgid "Examining %s: %s"
--msgstr "Zkoumá se %s: %s"
-+msgstr "Zkoumání %s: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4036
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
--msgstr "Nelze lokálně instalovat deltarpm: %s. Přeskakuje se."
-+msgstr "Nelze lokálně nainstalovat deltarpm: %s. Přeskakuje se."
+ msgstr ""
  
- #: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
--msgstr "Nelze přidat balíček %s do transakce. Nekompatibilní architektura: %s"
-+msgstr "Do transakce nelze přidat balíček %s. Nekompatibilní architektura: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4051
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
--msgstr "Nelze instalovat balíček %s. Je zastaralý nainstalovaným balíčkem  %s"
-+msgstr ""
-+"Nelze nainstalovat balíček %s. Je zastaralý nainstalovaným balíčkem %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4059
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
  #, python-format
-@@ -2801,8 +2810,8 @@ msgid ""
+ msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
  "instead."
  msgstr ""
--"Balíček %s není nainstalován, nelze jej aktualizovat. Spusťte místo toho yum"
--" install a nainstalujte jej."
-+"Balíček %s není nainstalován, nelze jej aktualizovat. Nainstalujte jen "
-+"příkazem yum install."
  
- #: ../yum/__init__.py:4078 ../yum/__init__.py:4085
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
  #, python-format
-@@ -2810,26 +2819,28 @@ msgid ""
+ msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
  " instead."
  msgstr ""
-+"Balíček %s.%s není nainstalován, nelze jej aktualizovat. Nainstalujte jen "
-+"příkazem yum install."
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
  #, python-format
  msgid "Excluding %s"
--msgstr "Vynechává se %s"
-+msgstr "Vynechání %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4099
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
  #, python-format
  msgid "Marking %s to be installed"
--msgstr "Označuje se %s k instalaci"
-+msgstr "Označení %s k instalaci"
+ msgstr ""
  
- #: ../yum/__init__.py:4105
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
  #, python-format
  msgid "Marking %s as an update to %s"
--msgstr "Označuje se %s jako aktualizace %s"
-+msgstr "Označení %s jako aktualizace %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4112
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
  #, python-format
  msgid "%s: does not update installed package."
--msgstr "%s: není aktualizací instalovaného balíčku."
-+msgstr "%s: není aktualizací nainstalovaného balíčku."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
  
- #: ../yum/__init__.py:4147 ../yum/__init__.py:4223
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
  #, python-format
-@@ -2847,7 +2858,7 @@ msgstr "Problém při reinstalaci: žádný shodný balíček %s k instalaci"
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
  
- #: ../yum/__init__.py:4311
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
  msgid "No package(s) available to downgrade"
--msgstr "Žádné balíčky dostupné ke snížení verze"
-+msgstr "Pro snížení verze není dostupný žádný balíček"
+ msgstr ""
  
- #: ../yum/__init__.py:4319
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
  #, python-format
-@@ -2862,7 +2873,7 @@ msgstr "Neexistuje shoda pro dostupný balíček: %s"
- #: ../yum/__init__.py:4372
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
  #, python-format
  msgid "Only Upgrade available on package: %s"
--msgstr "Pouze aktualizace dostupná pro balíček: %s"
-+msgstr "Pouze aktualizace je dostupná pro balíček: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4442 ../yum/__init__.py:4479
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
  #, python-format
-@@ -2872,7 +2883,7 @@ msgstr "Nepodařilo se snížit verzi: %s"
- #: ../yum/__init__.py:4516
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
  #, python-format
  msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "Získávání klíče z %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4534
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
  msgid "GPG key retrieval failed: "
-@@ -2883,11 +2894,11 @@ msgstr "Získání GPG klíče selhalo: "
- #: ../yum/__init__.py:4557
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
--msgstr ""
-+msgstr "GPG podpis klíčem %s neodpovídá klíči CA pro repozitář: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4559
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
  msgid "GPG key signature verified against CA Key(s)"
--msgstr ""
-+msgstr "GPG podpis byl ověřen oproti CA klíči (klíčům)."
+ msgstr ""
  
- #: ../yum/__init__.py:4567
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
  #, python-format
-@@ -2897,7 +2908,7 @@ msgstr "Neplatný GPG klíč pro %s: %s"
- #: ../yum/__init__.py:4576
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
--msgstr "Zpracování GPG klíče selhalo: klíč nemá žádnou hodnotu %s"
-+msgstr "Parsování GPG klíče selhalo: klíč nemá žádnou hodnotu %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4592
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
  #, python-format
-@@ -2907,6 +2918,10 @@ msgid ""
- " Package: %s (%s)\n"
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2949,7 @@ msgid ""
  " From   : %s"
  msgstr ""
-+"Načtení %s klíče 0x%s:\n"
-+" Userid : %s\n"
-+" Balíček: %s (%s)\n"
-+" Z      : %s"
  
- #: ../yum/__init__.py:4600
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
  #, python-format
-@@ -2915,6 +2930,9 @@ msgid ""
- " Userid: \"%s\"\n"
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2957,231 @@ msgid ""
  " From  : %s"
  msgstr ""
-+"Načtení %s klíče 0x%s:\n"
-+" Userid: \"%s\"\n"
-+" Z     : %s"
  
- #: ../yum/__init__.py:4634
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
  #, python-format
-@@ -2932,7 +2950,7 @@ msgstr "Import klíče proběhl úspěšně"
+ msgid "Key import failed (code %d)"
+ msgstr ""
  
- #: ../yum/__init__.py:4676
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
  msgid "Didn't install any keys"
--msgstr ""
-+msgstr "Nebyly instalovány žádné klíče"
+ msgstr ""
  
- #: ../yum/__init__.py:4680
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
  #, python-format
-@@ -2940,8 +2958,8 @@ msgid ""
+ msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
  "Check that the correct key URLs are configured for this repository."
  msgstr ""
--"GPG klíč určený pro repozitář „%s“ je již nainstalován, ale není správný pro tento balíček.\n"
--"Zkontrolujte, že URL klíče jsou pro repozitář správně nastavena."
-+"GPG klíče určené pro repozitář „%s“ jsou již nainstalovány, avšak pro tento balíček nejsou správné.\n"
-+"Zkontrolujte, zda URL klíčů jsou pro tento repozitář správně nastaveny."
  
- #: ../yum/__init__.py:4689
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
  msgid "Import of key(s) didn't help, wrong key(s)?"
-@@ -2959,7 +2977,7 @@ msgstr "Import klíče selhal"
- #: ../yum/__init__.py:4770
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
  #, python-format
  msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "Nebyly nainstalovány žádné klíče pro repozitář %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
  #, python-format
-@@ -2972,7 +2990,7 @@ msgstr ""
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
  
- #: ../yum/__init__.py:4924
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
  msgid "Unable to find a suitable mirror."
--msgstr "Nemohu nalézt vhodné zrcadlo"
-+msgstr "Nelze nalézt vhodné zrcadlo"
+ msgstr ""
  
- #: ../yum/__init__.py:4926
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
  msgid "Errors were encountered while downloading packages."
-@@ -2981,7 +2999,7 @@ msgstr "Při stahování balíčků došlo k chybě."
- #: ../yum/__init__.py:4981
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
  #, python-format
  msgid "Please report this error at %s"
--msgstr "Oznamte prosím tuto chybu na %s"
-+msgstr "Oznamte tuto chybu na %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4998
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
  msgid "Test Transaction Errors: "
-@@ -2990,75 +3008,75 @@ msgstr "Chyby testu transakce: "
- #: ../yum/__init__.py:5098
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
  #, python-format
  msgid "Could not set cachedir: %s"
--msgstr "Nelze vytvořit skladiště: %s "
-+msgstr "Nelze nastavit adresář pro cache: %s "
+ msgstr ""
  
- #: ../yum/__init__.py:5148 ../yum/__init__.py:5150
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
  msgid "Dependencies not solved. Will not save unresolved transaction."
--msgstr ""
-+msgstr "Závislosti nebyly vyřešeny.  Nevyřešená transakce nebude uložena."
+ msgstr ""
  
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
  #, python-format
  msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "Nelze uložit transakční soubor %s: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5195
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
--msgstr ""
-+msgstr "Nelze načíst uloženou transakci %s : %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5214
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
  msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "rpmdb obsahuje jinou verzi než je v uložené transakci, "
+ msgstr ""
  
- #: ../yum/__init__.py:5216
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
  msgid " ignoring, as requested."
--msgstr ""
-+msgstr " ignorováno, jak bylo žádáno."
+ msgstr ""
  
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
  msgid " aborting."
--msgstr ""
-+msgstr " přerušeno."
+ msgstr ""
  
- #: ../yum/__init__.py:5228
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
  msgid "cannot find tsflags or tsflags not integer."
--msgstr ""
-+msgstr "nelze nalézt tsflags nebo tsflags není celé číslo."
+ msgstr ""
  
- #: ../yum/__init__.py:5267
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
--msgstr ""
-+msgstr "Nalezen txmbr v neznámém stavu: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5271
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
--msgstr ""
-+msgstr "Nelze nalézt txmbr: %s ve stavu %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5307 ../yum/__init__.py:5324
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
--msgstr ""
-+msgstr "Nelze nalézt txmbr: %s z: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5349
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
  msgid "Transaction members, relations are missing or ts has been modified,"
--msgstr ""
-+msgstr "Transakční položky nebo vztahy chybí nebo byla transakce změněna,"
+ msgstr ""
  
- #: ../yum/__init__.py:5351
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
-+msgstr " ignorováno. Musíte spustit redepsolve!"
+ msgstr ""
  
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
  #. Mostly copied from YumOutput._outKeyValFill()
- #: ../yum/plugins.py:209
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
  msgid "Loaded plugins: "
--msgstr "Zavedeny zásuvné moduly: "
-+msgstr "Zavedené moduly: "
+ msgstr ""
  
- #: ../yum/plugins.py:223 ../yum/plugins.py:229
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
  #, python-format
  msgid "No plugin match for: %s"
--msgstr "Neexistuje zásuvný modul pro: %s"
-+msgstr "Neexistuje shoda modulu pro: %s"
+ msgstr ""
  
- #: ../yum/plugins.py:259
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
  #, python-format
  msgid "Not loading \"%s\" plugin, as it is disabled"
--msgstr "Nezavádí se „%s“ modul, protože je zakázán"
-+msgstr "Nezaveden modul „%s“, protože je zakázán"
+ msgstr ""
  
  #. Give full backtrace:
- #: ../yum/plugins.py:271
-@@ -3079,7 +3097,7 @@ msgstr "Modul „%s“ požaduje API %s. Podporované API je %s."
- #: ../yum/plugins.py:316
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
  #, python-format
  msgid "Loading \"%s\" plugin"
--msgstr "Zavádí se zásuvný modul „%s“"
-+msgstr "Zaveden modul „%s“"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
  
- #: ../yum/plugins.py:323
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
  #, python-format
-@@ -3104,7 +3122,7 @@ msgstr "registrace příkazů není podporována"
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
  
- #: ../yum/rpmsack.py:148
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
  msgid "has missing requires of"
--msgstr "má chybějící požadavky"
-+msgstr "má chybějící requires"
+ msgstr ""
  
- #: ../yum/rpmsack.py:151
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
  msgid "has installed conflicts"
-@@ -3118,16 +3136,16 @@ msgstr "%s je duplicitní s %s"
- #: ../yum/rpmsack.py:168
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
  #, python-format
  msgid "%s is obsoleted by %s"
--msgstr "%s je zastaralé novějším %s"
-+msgstr "%s je označeno za zastaralé balíčkem %s"
+ msgstr ""
  
- #: ../yum/rpmsack.py:176
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
  #, python-format
  msgid "%s provides %s but it cannot be found"
--msgstr "%s poskytuje %s, ale to nelze nalézt"
-+msgstr "%s poskytuje %s, avšak nelze to nalézt"
- 
- #: ../yum/rpmtrans.py:80
+ msgstr ""
+@@ -3038,6 +3190,14 @@ msgstr ""
  msgid "Repackaging"
--msgstr "Přebaluje se"
-+msgstr "Přebalení"
+ msgstr ""
  
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
-@@ -3141,11 +3159,11 @@ msgstr "Pro RPM %s selhala kontrola md5"
- 
- #: ../rpmUtils/oldUtils.py:151
- msgid "Could not open RPM database for reading. Perhaps it is already in use?"
--msgstr "Nelze otevřít databázi RPM pro čtení. Možná je již používána?"
-+msgstr "Nelze otevřít RPM databázi pro čtení. Možná je právě používána?"
- 
- #: ../rpmUtils/oldUtils.py:183
- msgid "Got an empty Header, something has gone wrong"
--msgstr "Vrátila se prázdná hlavička. Něco se stalo špatně."
-+msgstr "Získána prázdná hlavička. Něco je špatně."
- 
- #: ../rpmUtils/oldUtils.py:253 ../rpmUtils/oldUtils.py:260
- #: ../rpmUtils/oldUtils.py:263 ../rpmUtils/oldUtils.py:266
-diff --git a/po/da.po b/po/da.po
-index a7202e2..30a8c8e 100644
---- a/po/da.po
-+++ b/po/da.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Kris Thomsen <lakristho at gmail.com>, 2011
-+# Kris Thomsen <lakristho at gmail.com>, 2011.
- msgid ""
- msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/de.po b/po/de.po
-index fa39cb0..642200d 100644
---- a/po/de.po
-+++ b/po/de.po
-@@ -2,16 +2,17 @@
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/ca.po b/po/ca.po
+index cca37b7..9bccab5 100644
+--- a/po/ca.po
++++ b/po/ca.po
+@@ -2,12 +2,13 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
--# Laurin  <lineak at fedoraproject.org>, 2011
--# Vinzenz Vietzke <vinz at fedoraproject.org>, 2011
--# Hendrik Richter <hendrikr at gnome.org>, 2011
-+# Laurin  <lineak at fedoraproject.org>, 2011.
-+# Vinzenz Vietzke <vinz at fedoraproject.org>, 2011.
-+# Fabian Affolter <fab at fedoraproject.org>, 2011.
-+# Hendrik Richter <hendrikr at gnome.org>, 2011.
++# Translators:
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
  "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-08-12 21:48+0000\n"
-+"Last-Translator: fab <fab at fedoraproject.org>\n"
- "Language-Team: German (http://www.transifex.net/projects/p/yum/team/de/)\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -747,7 +748,7 @@ msgstr " Beschreibung: %s"
- #: ../output.py:788
+@@ -16,122 +17,124 @@ msgstr ""
+ "Language: ca\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Actualitzant"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Suprimint"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instal·lant"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Obsolet"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Actualitzat"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Suprimit"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Instal·lat"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "No hi ha capçalera"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Reempaqueta"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
  #, python-format
- msgid " Language: %s"
--msgstr ""
-+msgstr "Sprache: %s"
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Error: estat de sortida invàlid: %s per a %s"
  
- #: ../output.py:790
- msgid " Mandatory Packages:"
-@@ -854,7 +855,7 @@ msgstr "Nicht installiert"
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Suprimit: %s"
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Nicht verfügbar"
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Suprimint"
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -983,7 +984,7 @@ msgstr "E"
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Neteja"
  
- #: ../output.py:1325
- msgid "R"
--msgstr ""
-+msgstr "R"
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "L'ordre «%s» ja està definida"
  
- #: ../output.py:1326
- msgid "D"
-@@ -1016,7 +1017,7 @@ msgstr "Schlechte Transaktions-IDs oder Paket(e) angegeben"
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Configurant repositoris"
  
- #: ../output.py:1484
- msgid "Command line"
--msgstr ""
-+msgstr "Kommandozeile"
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "S'estan llegint les metadades de repositoris des de fitxers locals"
  
- #: ../output.py:1486 ../output.py:1908
- msgid "Login user"
-@@ -1086,22 +1087,22 @@ msgstr "Anfang rpmdb    :"
- #: ../output.py:1749
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
  #, python-format
- msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u Sekunden)"
+ msgid "Config Error: %s"
+ msgstr "Error de configuració: %s"
  
- #: ../output.py:1751
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
  #, python-format
- msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u Minuten)"
+ msgid "Options Error: %s"
+ msgstr "Error d'opcions: %s"
  
- #: ../output.py:1753
+-#: ../cli.py:293
++#: ../cli.py:302
  #, python-format
- msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u Stunden)"
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Instal·lat: %s-%s a %s"
  
- #: ../output.py:1755
+-#: ../cli.py:295
++#: ../cli.py:304
  #, python-format
- msgid "(%u days)"
--msgstr ""
-+msgstr "(%u Tage)"
+ msgid "  Built    : %s at %s"
+ msgstr "  Muntat    : %s a %s"
  
- #: ../output.py:1756
- msgid "End time       :"
-diff --git a/po/el.po b/po/el.po
-index 8df34e7..9d6f6e4 100644
---- a/po/el.po
-+++ b/po/el.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Dimitris Glezos <glezos at indifex.com>, 2011
-+# Dimitris Glezos <glezos at indifex.com>, 2011.
- msgid ""
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Pujat: %s a %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Cal que doneu alguna ordre"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/en_GB.po b/po/en_GB.po
-index 0f3c750..3468601 100644
---- a/po/en_GB.po
-+++ b/po/en_GB.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Bruce Cowan <l10n at bcowan.fastmail.co.uk>, 2011
-+# Bruce Cowan <l10n at bcowan.fastmail.co.uk>, 2011.
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Requeriments de disc:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
  msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -139,62 +142,62 @@ msgstr ""
+ "Resum d'errors\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/es.po b/po/es.po
-index 2b1397d..7282656 100644
---- a/po/es.po
-+++ b/po/es.po
-@@ -2,15 +2,16 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# beckerde <domingobecker at gmail.com>, 2011
--# Claudio Rodrigo Pereyra Diaz <elsupergomez at gmail.com>, 2011
-+# Dennis Tobar <dennis.tobar at gmail.com>, 2011.
-+# beckerde <domingobecker at gmail.com>, 2011.
-+# Claudio Rodrigo Pereyra Diaz <elsupergomez at gmail.com>, 2011.
- msgid ""
+ "S'ha intentat executar la transacció però no hi ha cap tasca a fer. S'està "
+ "sortint."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "S'està sortint de l'ordre de l'usuari"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "S'estan baixant els següents paquets:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "S'ha produït un error baixant els següents paquets:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-06-07 21:22+0000\n"
-+"Last-Translator: dennistobar <dennis.tobar at gmail.com>\n"
- "Language-Team: Spanish (Castilian) <trans-es at lists.fedoraproject.org>\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -326,7 +327,7 @@ msgstr "No se ha encontrado ningún paquete para %s"
  
- #: ../cli.py:1184
- msgid "Cleaning repos: "
--msgstr "Limpiando repositorios:"
-+msgstr "Limpiando repositorios: "
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "S'ha produït un error. Necessiteu actualitzar el gestor rpm:"
  
- #: ../cli.py:1189
- msgid "Cleaning up Everything"
-@@ -510,7 +511,7 @@ msgstr "operación detallada"
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
  
- #: ../cli.py:1673
- msgid "answer yes for all questions"
--msgstr "responde \"si\" a todas las preguntas"
-+msgstr "responde \"sí\" a todas las preguntas"
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "Cal actualitzar l'RPM"
  
- #: ../cli.py:1675
- msgid "show Yum version and exit"
-@@ -721,7 +722,7 @@ msgstr "s"
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Siusplau, informeu d'aquest error a %s"
  
- #: ../output.py:684
- msgid "yes"
--msgstr "si"
-+msgstr "sí"
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "S'està executant la transacció de prova"
  
- #: ../output.py:685
- msgid "n"
-@@ -864,7 +865,7 @@ msgstr "No instalado"
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "S'ha produït un error en la transacció de prova:\n"
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "No disponible"
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "La transacció de prova ha acabat amb èxit"
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -968,7 +969,7 @@ msgid ""
- "to exit.\n"
- msgstr ""
- "\n"
--" Se ha cancelado la descarga actual, %sinterrumpa con (ctrl-c) nuevamente%s dentro de %s%s%s segundos\n"
-+"Se ha cancelado la descarga actual, %sinterrumpa con (ctrl-c) nuevamente%s dentro de %s%s%s segundos\n"
- "para finalizar.\n"
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "S'està executant la transacció"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -202,237 +205,260 @@ msgstr ""
+ "No s'importaran automàticament les claus en una execució desatesa.\n"
+ "Feu servir \"-y\" per a importar les claus."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Potser volíeu dir: "
  
- #: ../output.py:1282
-@@ -1569,7 +1570,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Problema del repositorio: %s"
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Paquets %s%s%s disponibles, però no instal·lats."
  
- #: ../yumcommands.py:80
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "El paquet %s%s%s no està disponible."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paquets a instal·lar"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Res a fer"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
  #, python-format
-@@ -1898,7 +1899,7 @@ msgstr "Repositorio excluído:"
+-msgid "%d packages marked for Update"
+-msgstr "%d paquets marcats per a actualitzar"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "No hi ha cap paquet marcat per a actualitzar"
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
-+msgstr "Nombre de archivo del repositorio: "
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/eu.po b/po/eu.po
-index f92862c..3e4b194 100644
---- a/po/eu.po
-+++ b/po/eu.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# assar <asiersar at yahoo.com>, 2011
-+# assar <asiersar at yahoo.com>, 2011.
- msgid ""
- msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/fi.po b/po/fi.po
-index 269bf15..4094182 100644
---- a/po/fi.po
-+++ b/po/fi.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Ville-Pekka Vainio <vpivaini at cs.helsinki.fi>, 2011
-+# Ville-Pekka Vainio <vpivaini at cs.helsinki.fi>, 2011.
- msgid ""
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/fr.po b/po/fr.po
-index 4636b15..c195152 100644
---- a/po/fr.po
-+++ b/po/fr.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Kévin Raymond <shaiton at fedoraproject.org>, 2011
-+# Kévin Raymond <shaiton at fedoraproject.org>, 2011.
- msgid ""
- msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-06-08 11:39+0000\n"
-+"Last-Translator: dominique <chepioq at gmail.com>\n"
- "Language-Team: French (http://www.transifex.net/projects/p/yum/team/fr/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -865,7 +865,7 @@ msgstr "Non installé"
- 
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Indisponible"
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1570,7 +1570,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../cli.py:885
++#: ../cli.py:965
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Problème avec le dépôt : %s"
- 
- #: ../yumcommands.py:80
+-msgid "%d packages marked for removal"
+-msgstr "%d paquets marcats per a suprimir"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "No hi ha cap paquet marcat per a suprimir"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paquets per a desactualitzar"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
  #, python-format
-@@ -1900,7 +1900,7 @@ msgstr "Exclus du dépôt : "
+ msgid " (from %s)"
+ msgstr " (des de %s)"
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Nom du dépôt : "
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "El paquet instal·lat %s%s%s%s no està disponible."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paquets a reinstal·lar"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "No s'ha proporcionat cap paquet"
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/gu.po b/po/gu.po
-index e9ad955..4273e7e 100644
---- a/po/gu.po
-+++ b/po/gu.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# sweta <swkothar at redhat.com>, 2011
-+# sweta <swkothar at redhat.com>, 2011.
- msgid ""
- msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/hu.po b/po/hu.po
-index db7c07f..584f0f9 100644
---- a/po/hu.po
-+++ b/po/hu.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# András Bögöly <ebogoly at gmail.com>, 2011
-+# András Bögöly <ebogoly at gmail.com>, 2011.
- msgid ""
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paquets a instal·lar"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-07-20 20:41+0000\n"
-+"Last-Translator: bogolyandras <ebogoly at gmail.com>\n"
- "Language-Team: Hungarian (http://www.transifex.net/projects/p/yum/team/hu/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -284,12 +284,16 @@ msgstr "N/S Megegyezett: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
-+"  A névből és a leírásból csak %s egyezik ezzel: %s, használja a \"search "
-+"all\" parancsot bárki kereséséhez."
  
- #: ../cli.py:1077
+-#: ../cli.py:1077
++#: ../cli.py:1211
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
-+"  A teljes névből és leírásból csak %s egyezik ezzel: %s, használja a "
-+"\"search all\" parancsot bárki kereséséhez."
  
- #: ../cli.py:1095
+-#: ../cli.py:1095
++#: ../cli.py:1229
  #, python-format
-@@ -300,6 +304,8 @@ msgstr "Találat: %s"
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
-+"  A névből és a leírásból többnyire %s egyezik meg ezzel: %s, használja a "
-+"\"search all\" parancsot bárki kereséséhez."
  
- #: ../cli.py:1106
- #, python-format
-@@ -448,7 +454,7 @@ msgstr "--Szín egyikét veszi fel: auto, mindig, soha"
- #: ../cli.py:1596
+-#: ../cli.py:1106
++#: ../cli.py:1240
  #, python-format
- msgid "--installroot must be an absolute path: %s"
--msgstr ""
-+msgstr "A(z) --instalroot -nak abszolút elérési útnak kell lennie: %s"
- 
- #: ../cli.py:1642
- msgid "show this help message and exit"
-@@ -851,7 +857,7 @@ msgstr "Nem telepítve"
- 
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Nem elérhető"
+ msgid "Warning: No matches found for: %s"
+ msgstr "Avís: no s'ha trobat cap coincidència per a: %s"
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1001,7 +1007,7 @@ msgstr "Rendszer"
- #: ../output.py:1411
- #, python-format
- msgid "Skipping merged transaction %d to %d, as it overlaps"
--msgstr ""
-+msgstr "Egyesített tranzakció kihagyása: %d, mivel fedi a %d tranzakciót."
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "No s'ha trobat cap coincidència"
  
- #: ../output.py:1421 ../output.py:1592
- msgid "No transactions"
-@@ -1549,7 +1555,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../cli.py:1174
++#: ../cli.py:1339
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Hibás tároló: %s"
+ msgid "No Package Found for %s"
+ msgstr "No s'ha trobat cap paquet per a %s"
  
- #: ../yumcommands.py:80
- #, python-format
-@@ -1877,7 +1883,7 @@ msgstr "Tároló-kizárt: "
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Tároló-fájlnév: "
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "S'està netejant tot"
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-@@ -1993,23 +1999,23 @@ msgstr "egy elmentett tranzakció betöltése fájlnév alapján"
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "S'estan netejant les capçaleres"
  
- #: ../yumcommands.py:1518
- msgid "No saved transaction file specified."
--msgstr ""
-+msgstr "Nincs meghatározva az elmentett tranzakció fájlja."
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "S'estan netejant els paquets"
  
- #: ../yumcommands.py:1522
- #, python-format
- msgid "loading transaction from %s"
--msgstr ""
-+msgstr "tranzakciók betöltések a következőből: %s"
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "S'estan netejant les metadades xml"
  
- #: ../yumcommands.py:1528
- #, python-format
- msgid "Transaction loaded from %s with %s members"
--msgstr ""
-+msgstr "Tranzakció betöltve innen: %s, %s taggal"
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "S'està netejant la memòria cau de la base de dades"
  
- #. This is mainly for PackageSackError from rpmdb.
- #: ../yummain.py:84
- #, python-format
- msgid " Yum checks failed: %s"
--msgstr ""
-+msgstr " Yum ellenőrzés meghiúsult: %s"
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "S'està netejant la memòria cau de metadades que han vençut"
  
- #: ../yummain.py:114
- msgid ""
-@@ -2020,7 +2026,7 @@ msgstr ""
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
  
- #: ../yummain.py:120
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Nem sikerült lezárni; kilépés..."
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "S'estan netejant els connectors"
  
- #. Depsolve stage
- #: ../yummain.py:167
-@@ -2031,6 +2037,8 @@ msgstr "Függőségek megállapítása"
+-#: ../cli.py:1247
++#: ../cli.py:1452
  #, python-format
- msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+ msgid "Warning: No groups match: %s"
  msgstr ""
-+"A tranzakció sikeresen mentve, újra futtatáshoz a következő parancsot "
-+"használjuk: yum load-transaction %s"
  
- #: ../yummain.py:288
- msgid ""
-@@ -2120,12 +2128,12 @@ msgstr "A(z) %s nevű csomag szolgáltatásának módja: %s"
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
- #, python-format
- msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "Kisérlet a(z) %s frissítésére a függőségek feloldásához"
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Grups instal·lats:"
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
- #, python-format
- msgid "No update paths found for %s. Failure!"
--msgstr ""
-+msgstr "Nem található frissítési útvonal a következőhöz: %s."
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
  
- #: ../yum/depsolve.py:416
- #, python-format
-@@ -2383,12 +2391,12 @@ msgstr ""
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Grups disponibles:"
  
- #: ../yum/__init__.py:983
- msgid "--> Finding unneeded leftover dependencies"
--msgstr ""
-+msgstr "--> Szükségtelen függőségek keresése"
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
  
- #: ../yum/__init__.py:1041
- #, python-format
- msgid "Protected multilib versions: %s != %s"
--msgstr ""
-+msgstr "Védett multilib verzió: %s != %s"
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Fet"
  
- #: ../yum/__init__.py:1096
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
  #, python-format
-@@ -2650,12 +2658,14 @@ msgstr "Nincs telepíthető csomag %s néven."
- #: ../yum/__init__.py:2941
- #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Figyelem: A(z) %s csoport nem tartalmaz egyetlen csomagot sem."
+ msgid "Warning: Group %s does not exist."
+ msgstr "Avís: El grup %s no existeix."
  
- #: ../yum/__init__.py:2943
- #, python-format
- msgid "Group %s does have %u conditional packages, which may get installed."
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
  msgstr ""
-+"A(z) %s csoportnak %u feltételes csomagja van, amelyek lehet, hogy "
-+"telepítésre kerülnek."
+ "No hi ha cap paquet disponible per a instal·lar o actualitzar en els grups "
+ "sol·licitats"
  
- #. This can happen due to excludes after .up has
- #. happened.
-@@ -2672,7 +2682,7 @@ msgstr "Az rpmdb nem tartalmaz csomagleírót a következőre: %s"
- #: ../yum/__init__.py:3079 ../yum/__init__.py:3129
+-#: ../cli.py:1326
++#: ../cli.py:1610
  #, python-format
- msgid "Invalid version flag from: %s"
--msgstr ""
-+msgstr "Érvénytelen verzió: %s"
- 
- #: ../yum/__init__.py:3096 ../yum/__init__.py:3101
+-msgid "%d Package(s) to Install"
+-msgstr "%d paquets a instal·lar"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
  #, python-format
-@@ -2840,6 +2850,8 @@ msgid ""
- "Package %s.%s not installed, cannot update it. Run yum install to install it"
- " instead."
- msgstr ""
-+"A következő csomag nincs telepítve: %s.%s, ezért nem lehet frissíteni. "
-+"Futtassa a \"yum install\" parancsot a telepítéshez."
+ msgid "No group named %s exists"
+ msgstr "No existeix cap grup anomenat %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "No hi ha cap paquet a suprimir dels grups"
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
+-#: ../cli.py:1344
++#: ../cli.py:1638
  #, python-format
-@@ -2903,7 +2915,7 @@ msgstr "Visszaállítás meghiúsult: %s"
- #: ../yum/__init__.py:4516
+-msgid "%d Package(s) to remove"
+-msgstr "%d paquets a suprimir"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
  #, python-format
- msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "GPG kulcs beszerzése a következőből: %s"
+ msgid "Package %s is already installed, skipping"
+ msgstr "El paquet %s ja està instal·lat, s'ometrà"
  
- #: ../yum/__init__.py:4534
- msgid "GPG key retrieval failed: "
-@@ -2914,11 +2926,11 @@ msgstr "GPG kulcs beszerzés meghiúsult: "
- #: ../yum/__init__.py:4557
+-#: ../cli.py:1397
++#: ../cli.py:1690
  #, python-format
- msgid "GPG key signature on key %s does not match CA Key for repo: %s"
--msgstr ""
-+msgstr "A(z) %s GPG kulcs aláírása nem egyezik a tároló CA kulcsával: %s"
- 
- #: ../yum/__init__.py:4559
- msgid "GPG key signature verified against CA Key(s)"
--msgstr ""
-+msgstr "A GPG kulcs sikeresen ellenőrizve lett a CA kulcsokkal"
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "S'està descartant el paquet no comparable %s.%s"
  
- #: ../yum/__init__.py:4567
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
  #, python-format
-@@ -2938,6 +2950,10 @@ msgid ""
- " Package: %s (%s)\n"
- " From   : %s"
+ msgid "No other %s installed, adding to list for potential install"
  msgstr ""
-+"%s GPG kulcs 0x%s importálása:\n"
-+"Felhasználó: %s\n"
-+"Csomag   : %s (%s)\n"
-+"Származás: %s"
+ "No hi ha cap altre %s instal·lat, s'afegeix a la llista per a una possible "
+ "instal·lació"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opcions del connector"
  
- #: ../yum/__init__.py:4600
+-#: ../cli.py:1451
++#: ../cli.py:1748
  #, python-format
-@@ -2946,6 +2962,9 @@ msgid ""
- " Userid: \"%s\"\n"
- " From  : %s"
- msgstr ""
-+"%s GPG kulcs 0x%s importálása:\n"
-+"Felhasználó: %s\n"
-+"Származás: %s"
+ msgid "Command line error: %s"
+ msgstr "Error en la línia d'ordres: %s"
  
- #: ../yum/__init__.py:4634
+-#: ../cli.py:1467
++#: ../cli.py:1770
  #, python-format
-@@ -2963,7 +2982,7 @@ msgstr "A kulcs importálása sikeres"
+ msgid ""
+ "\n"
+@@ -443,286 +469,290 @@ msgstr ""
+ "\n"
+ "%s: l'opció %s necessita un argument"
  
- #: ../yum/__init__.py:4676
- msgid "Didn't install any keys"
--msgstr ""
-+msgstr "Nem lett telepítve egyetlen kulcs sem"
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color pren un valor d'entre: auto, always, never"
  
- #: ../yum/__init__.py:4680
- #, python-format
-@@ -2990,7 +3009,7 @@ msgstr "A kulcs importálása meghiúsult"
- #: ../yum/__init__.py:4770
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
  #, python-format
- msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "Nem lett telepítve egyetlen kulcs sem a következő tárolóhoz: %s"
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
- #, python-format
-@@ -3026,55 +3045,59 @@ msgstr "Gyorsítótár-mappa beállítása meghiúsult: %s"
- #: ../yum/__init__.py:5148 ../yum/__init__.py:5150
- msgid "Dependencies not solved. Will not save unresolved transaction."
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "mostra el missatge d'ajuda i surt"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "sigues tolerant amb els errors"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
  msgstr ""
-+"A függőségek feloldása még nincs kész. Nem lehet a függőben lévő tranzakciót"
-+" menteni."
  
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
- #, python-format
- msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "A következő tranzakciófájl mentése meghiúsult: %s: %s"
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "ubicació del fitxer de configuració"
  
- #: ../yum/__init__.py:5195
- #, python-format
- msgid "Could not access/read saved transaction %s : %s"
--msgstr ""
-+msgstr "Az elmentett tranzakció beolvasása meghiúsult: %s: %s"
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "temps màxim d'espera d'ordres"
  
- #: ../yum/__init__.py:5214
- msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "Az rpmdb verziója nem egyezik a mentett tranzakció verziójával, "
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nivell de sortida de depuració"
  
- #: ../yum/__init__.py:5216
- msgid " ignoring, as requested."
--msgstr ""
-+msgstr " kihagyva, ahogy kértük."
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "mostra duplicats, en repositoris, en les ordres per llistar i cercar"
  
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
- msgid " aborting."
--msgstr ""
-+msgstr "megszakítás."
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "nivell de sortida d'error"
  
- #: ../yum/__init__.py:5228
- msgid "cannot find tsflags or tsflags not integer."
--msgstr ""
-+msgstr "Nem található a tsflags, vagy a tsflags nem egész szám."
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
  
- #: ../yum/__init__.py:5267
- #, python-format
- msgid "Found txmbr in unknown current state: %s"
--msgstr ""
-+msgstr "txmbr található a jelenleg ismeretlen állapotban: %s"
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "operació silenciosa"
  
- #: ../yum/__init__.py:5271
- #, python-format
- msgid "Could not find txmbr: %s in state %s"
--msgstr ""
-+msgstr "Nem található txmbr: %s állapotban %s"
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "operació descriptiva"
  
- #: ../yum/__init__.py:5307 ../yum/__init__.py:5324
- #, python-format
- msgid "Could not find txmbr: %s from origin: %s"
--msgstr ""
-+msgstr "Nem található txmbr: %s, innen: %s"
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "respon sí a totes les preguntes"
  
- #: ../yum/__init__.py:5349
- msgid "Transaction members, relations are missing or ts has been modified,"
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "mostra la versió del Yum i surt"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "estableix l'arrel de la instal·lació"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
-+"A tranzakció elemek, tranzakció-viszonyok hiányoznak, vagy a ts feltehetően "
-+"megváltozott,"
+ "habilita un o més repositoris (es permeten caràcters de reemplaçament)"
  
- #: ../yum/__init__.py:5351
- msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
-+msgstr " átugorva, ahogy kérte. Szükséges a redepsolve!"
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "deshabilita un o més repositoris (es permeten caràcters de reemplaçament)"
  
- #. Mostly copied from YumOutput._outKeyValFill()
- #: ../yum/plugins.py:209
-diff --git a/po/id_ID.po b/po/id_ID.po
-index 964c239..b2b1cba 100644
---- a/po/id_ID.po
-+++ b/po/id_ID.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Teguh Dwicaksana <dheche at songolimo.net>, 2011
-+# Teguh Dwicaksana <dheche at songolimo.net>, 2011.
- msgid ""
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "exclou els paquets per nom o expressió regular del glob"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "inhabilita l'exclusió des de l'inici, per a un repositori o per a tot"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "habilita el processament d'obsolets durant les actualitzacions"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "inhabilita els connectors de Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "inhabilita la comprobació de signatures gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "inhabilita els connectors pel seu nom"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "habilita els connectors pel seu nom"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "omet paquets amb problemes de resolució de dependències"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "controla sempre que s'usi color"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/it.po b/po/it.po
-index 44b6091..f117682 100644
---- a/po/it.po
-+++ b/po/it.po
-@@ -2,13 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
-+# Guido Grazioli <guido.grazioli at gmail.com>, 2011.
- msgid ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-08-20 12:03+0000\n"
-+"Last-Translator: guidograzioli <guido.grazioli at gmail.com>\n"
- "Language-Team: Italian (http://www.transifex.net/projects/p/yum/team/it/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -157,7 +158,7 @@ msgstr "Errore nel download dei pacchetti:\n"
  
- #: ../cli.py:525 ../yum/__init__.py:4967
- msgid "Running Transaction Check"
--msgstr ""
-+msgstr "Esecuzione del controllo di transazione"
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Gen"
  
- #: ../cli.py:534 ../yum/__init__.py:4976
- msgid "ERROR You need to update rpm to handle:"
-@@ -165,7 +166,7 @@ msgstr "ERRORE Occorre aggiornare rpm per gestire:"
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
  
- #: ../cli.py:536 ../yum/__init__.py:4979
- msgid "ERROR with transaction check vs depsolve:"
--msgstr ""
-+msgstr "ERRORE del controllo di transazione nei confronti di depsolve:"
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
  
- #: ../cli.py:542
- msgid "RPM needs to be updated"
-@@ -275,18 +276,22 @@ msgstr "Nessun pacchetto specificato"
- #: ../cli.py:1058
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Abr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mai"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Ago"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Set"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Oct"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Des"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "S'està intentant un altre servidor rèplica."
+ 
+-#: ../output.py:581
++#: ../output.py:798
  #, python-format
- msgid "N/S Matched: %s"
--msgstr ""
-+msgstr "N/D trovati: %s"
+ msgid "Name        : %s%s%s"
+ msgstr ""
  
- #: ../cli.py:1075
+-#: ../output.py:582
++#: ../output.py:799
  #, python-format
- msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgid "Arch        : %s"
  msgstr ""
-+"  Ricerca effettuata %ssolamente%s in nome e descrizione breve, usare "
-+"\"search all\" per cercare in tutti i campi."
  
- #: ../cli.py:1077
+-#: ../output.py:584
++#: ../output.py:801
  #, python-format
- msgid ""
- "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgid "Epoch       : %s"
  msgstr ""
-+"  Ricerca effettuata %ssolamente%s in nome completo e descrizione breve, "
-+"usare \"search all\" per cercare in tutti i campi."
  
- #: ../cli.py:1095
+-#: ../output.py:585
++#: ../output.py:802
  #, python-format
-@@ -297,6 +302,8 @@ msgstr "Trovato: %s"
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
  #, python-format
- msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgid "Release     : %s"
  msgstr ""
-+"  Ricerca effettuata %sper lo più%s in nome e descrizione breve, usare "
-+"\"search all\" per cercare in tutti i campi."
  
- #: ../cli.py:1106
+-#: ../output.py:587
++#: ../output.py:804
  #, python-format
-@@ -351,7 +358,7 @@ msgstr "Pulizia plugin"
- #: ../cli.py:1247
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
  #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Attenzione: nessun gruppo trovato per: %s"
+ msgid "Repo        : %s"
+ msgstr "Repo        : %s"
  
- #: ../cli.py:1264
- msgid "Installed Groups:"
-@@ -359,7 +366,7 @@ msgstr "Gruppi installati:"
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
  
- #: ../cli.py:1270
- msgid "Installed Language Groups:"
--msgstr ""
-+msgstr "Gruppi lingua installati:"
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
  
- #: ../cli.py:1276
- msgid "Available Groups:"
-@@ -367,7 +374,7 @@ msgstr "Gruppi disponibili:"
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
  
- #: ../cli.py:1282
- msgid "Available Language Groups:"
--msgstr ""
-+msgstr "Gruppi lingua disponibili:"
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
  
- #: ../cli.py:1285
- msgid "Done"
-@@ -449,7 +456,7 @@ msgstr "--color deve specificare uno tra: auto, always, never"
- #: ../cli.py:1596
+-#: ../output.py:596
++#: ../output.py:813
  #, python-format
- msgid "--installroot must be an absolute path: %s"
--msgstr ""
-+msgstr "--installroot deve essere un percorso assoluto: %s"
+ msgid "Install time: %s"
+ msgstr ""
  
- #: ../cli.py:1642
- msgid "show this help message and exit"
-@@ -549,7 +556,7 @@ msgstr "ignora pacchetti con problemi di risoluzione dipendenze"
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
  
- #: ../cli.py:1706
- msgid "control whether color is used"
--msgstr "controlla se il colore è usato"
-+msgstr "imposta l'uso del colore"
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
  
- #: ../cli.py:1708
- msgid "set value of $releasever in yum config and repo files"
-@@ -740,7 +747,7 @@ msgstr " Descrizione: %s"
- #: ../output.py:788
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
  #, python-format
- msgid " Language: %s"
--msgstr ""
-+msgstr " Lingua: %s"
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
  
- #: ../output.py:790
- msgid " Mandatory Packages:"
-@@ -850,7 +857,7 @@ msgstr "Non installato"
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Non disponibile"
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Descripció  : "
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1000,11 +1007,11 @@ msgstr "Sistema"
- #: ../output.py:1411
- #, python-format
- msgid "Skipping merged transaction %d to %d, as it overlaps"
--msgstr ""
-+msgstr "Ignoro la transazione importata %d a %d, perchè genera conflitti"
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "s"
  
- #: ../output.py:1421 ../output.py:1592
- msgid "No transactions"
--msgstr ""
-+msgstr "Nessuna transazione"
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "sí"
  
- #: ../output.py:1446 ../output.py:2013
- msgid "Bad transaction IDs, or package(s), given"
-@@ -1012,7 +1019,7 @@ msgstr "L'ID transazione, o il pacchetto specificato, non è corretto"
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
  
- #: ../output.py:1484
- msgid "Command line"
--msgstr ""
-+msgstr "Linea di comando"
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
  
- #: ../output.py:1486 ../output.py:1908
- msgid "Login user"
-@@ -1082,22 +1089,22 @@ msgstr "rpmdb iniziale :"
- #: ../output.py:1749
- #, python-format
- msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u secondi)"
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "És correcte [s/N]: "
  
- #: ../output.py:1751
+-#: ../output.py:777
++#: ../output.py:1046
  #, python-format
- msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u minuti)"
+ msgid ""
+ "\n"
+@@ -731,154 +761,156 @@ msgstr ""
+ "\n"
+ "Grup: %s"
  
- #: ../output.py:1753
+-#: ../output.py:781
++#: ../output.py:1050
  #, python-format
- msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u ore)"
+ msgid " Group-Id: %s"
+ msgstr " Id de Grup: %s"
  
- #: ../output.py:1755
+-#: ../output.py:786
++#: ../output.py:1055
  #, python-format
- msgid "(%u days)"
--msgstr ""
-+msgstr "(%u giorni)"
+ msgid " Description: %s"
+ msgstr " Descripció: %s"
  
- #: ../output.py:1756
- msgid "End time       :"
-@@ -1122,7 +1129,7 @@ msgstr "Interrotto"
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
  
- #: ../output.py:1773
- msgid "Failures:"
--msgstr ""
-+msgstr "Operazioni fallite:"
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Paquets obligatoris:"
  
- #: ../output.py:1777
- msgid "Failure:"
-@@ -1251,7 +1258,7 @@ msgstr "installato"
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Paquets per defecte:"
  
- #: ../output.py:2107
- msgid "an update"
--msgstr ""
-+msgstr "un aggiornamento"
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Paquets opcionals:"
  
- #: ../output.py:2108
- msgid "erased"
-@@ -1263,11 +1270,11 @@ msgstr "reinstallato"
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Paquets condicionals:"
  
- #: ../output.py:2110
- msgid "a downgrade"
--msgstr ""
-+msgstr "un downgrade"
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paquet: %s"
  
- #: ../output.py:2111
- msgid "obsoleting"
--msgstr ""
-+msgstr "reso obsoleto"
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  No hi ha dependències per a aquest paquet"
  
- #: ../output.py:2112
- msgid "updated"
-@@ -1280,7 +1287,7 @@ msgstr "reso obsoleto"
- #: ../output.py:2117
+-#: ../output.py:821
++#: ../output.py:1093
  #, python-format
- msgid "---> Package %s.%s %s:%s-%s will be %s"
--msgstr ""
-+msgstr "---&gt; Pacchetto %s.%s %s:%s-%s settato per essere %s"
+ msgid "  dependency: %s"
+ msgstr "  dependència: %s"
  
- #: ../output.py:2124
- msgid "--> Running transaction check"
-@@ -1512,7 +1519,7 @@ msgstr "Completo!"
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Dependència insatisfeta"
  
- #: ../yumcommands.py:42
- msgid " Mini usage:\n"
--msgstr ""
-+msgstr " Uso comune:\n"
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Coincidències amb:"
  
- #: ../yumcommands.py:52
- msgid "You need to be root to perform this command."
-@@ -1551,7 +1558,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../output.py:916
++#: ../output.py:1217
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Repository del problema: %s"
+ msgid "License     : %s"
+ msgstr "Llicència   : %s"
  
- #: ../yumcommands.py:80
+-#: ../output.py:919
++#: ../output.py:1220
  #, python-format
-@@ -1728,7 +1735,7 @@ msgstr "Elimina i dati nella cache"
+ msgid "Filename    : %s"
+ msgstr "Fitxer      : %s"
  
- #: ../yumcommands.py:613
- msgid "Find what package provides the given value"
--msgstr "Determina il pacchetto che fornisce il valore dato"
-+msgstr "Determina quale pacchetto fornisce un dato valore"
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Altre       : "
  
- #: ../yumcommands.py:633
- msgid "Check for available package updates"
-@@ -1879,7 +1886,7 @@ msgstr "Repo-excluded: "
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "S'ha produït un error en calcular la mida total de la descàrrega"
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Repo-filename: "
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Mida total: %s"
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-@@ -1991,27 +1998,27 @@ msgstr "Identifica gli errori nell'rpmdb"
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Mida total de la descàrrega: %s"
  
- #: ../yumcommands.py:1514
- msgid "load a saved transaction from filename"
--msgstr ""
-+msgstr "carica una transazione salvata da un file"
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
  
- #: ../yumcommands.py:1518
- msgid "No saved transaction file specified."
--msgstr ""
-+msgstr "Nessun file specificato per la transazione salvata."
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
  
- #: ../yumcommands.py:1522
- #, python-format
- msgid "loading transaction from %s"
--msgstr ""
-+msgstr "caricamento transazione da %s"
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Tornant a instal·lar"
  
- #: ../yumcommands.py:1528
- #, python-format
- msgid "Transaction loaded from %s with %s members"
--msgstr ""
-+msgstr "Transazione caricata da %s con %s membri"
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Desfent l'actualització"
  
- #. This is mainly for PackageSackError from rpmdb.
- #: ../yummain.py:84
- #, python-format
- msgid " Yum checks failed: %s"
--msgstr ""
-+msgstr " Controlli Yum falliti: %s"
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "S'està instal·lant per dependències"
  
- #: ../yummain.py:114
- msgid ""
-@@ -2022,7 +2029,7 @@ msgstr ""
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "S'està actualitzant degut a les dependències"
  
- #: ../yummain.py:120
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Impossibile creare il file di lock; uscita"
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "S'està suprimint degut a les dependències"
  
- #. Depsolve stage
- #: ../yummain.py:167
-@@ -2033,6 +2040,8 @@ msgstr "Risoluzione dipendenze"
- #, python-format
- msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Ignorat degut a problemes de dependències:"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
  msgstr ""
-+"La transazione è stata salvata; per eseguirla nuovamente: yum load-"
-+"transaction %s"
  
- #: ../yummain.py:288
- msgid ""
-@@ -2060,7 +2069,7 @@ msgstr "tsflag non valido nel file di configurazione: %s"
- #: ../yum/depsolve.py:164
- #, python-format
- msgid "Searching pkgSack for dep: %s"
--msgstr "Ricerca di pkgSack per dip: %s"
-+msgstr "Ricerca nel pkgSack per dip: %s"
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
  
- #: ../yum/depsolve.py:207
- #, python-format
-@@ -2122,12 +2131,13 @@ msgstr "Modalità per il pacchetto che fornisce %s: %s"
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paquet"
++msgid_plural "Packages"
++msgstr[0] "Paquet"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arq"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versió"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repositori"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Mida"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
  #, python-format
- msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "Tentativo di aggiornare %s per risolvere una dipendenza"
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
+-#: ../output.py:1098
++#: ../output.py:1416
  #, python-format
- msgid "No update paths found for %s. Failure!"
+ msgid ""
+ "\n"
+@@ -889,57 +921,52 @@ msgstr ""
+ "Resum de la transacció\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
  msgstr ""
-+"Nessun percorso di aggiornamento trovato per %s. Aggiornamento fallito!"
  
- #: ../yum/depsolve.py:416
- #, python-format
-@@ -2387,12 +2397,12 @@ msgstr ""
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
  
- #: ../yum/__init__.py:983
- msgid "--> Finding unneeded leftover dependencies"
--msgstr ""
-+msgstr "--&gt; Ricerca di dipendenze non necessarie"
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
  
- #: ../yum/__init__.py:1041
- #, python-format
- msgid "Protected multilib versions: %s != %s"
--msgstr ""
-+msgstr "Versioni multilib protette: %s != %s"
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
  
- #: ../yum/__init__.py:1096
- #, python-format
-@@ -2649,12 +2659,14 @@ msgstr "Nessun pacchetto con nome %s disponibile per l'installazione"
- #: ../yum/__init__.py:2941
- #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Attenzione: il gruppo %s non contiene alcun pacchetto."
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Suprimit"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dependència suprimida"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dependència instal·lada"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dependència actualitzada"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Reemplaçat"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Ha fallat"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dos"
  
- #: ../yum/__init__.py:2943
+@@ -947,7 +974,7 @@ msgstr "dos"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
  #, python-format
- msgid "Group %s does have %u conditional packages, which may get installed."
+ msgid ""
+ "\n"
+@@ -958,475 +985,527 @@ msgstr ""
+ " S'ha cancel·lat la descàrrega actual, %sinterromp (crtl-c) de nou%s en %s%s%s segons\n"
+ "per a sortir.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "interrupció de l'usuari"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Total"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
  msgstr ""
-+"Il gruppo %s contiene %u pacchetti facoltativi, che potrebbero essere "
-+"installati."
  
- #. This can happen due to excludes after .up has
- #. happened.
-@@ -2671,7 +2683,7 @@ msgstr "Il pacchetto con tupla %s non è stato trovato nel rpmdb"
- #: ../yum/__init__.py:3079 ../yum/__init__.py:3129
- #, python-format
- msgid "Invalid version flag from: %s"
--msgstr ""
-+msgstr "Flag di versione non valido da: %s"
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
  
- #: ../yum/__init__.py:3096 ../yum/__init__.py:3101
- #, python-format
-@@ -2833,6 +2845,8 @@ msgid ""
- "Package %s.%s not installed, cannot update it. Run yum install to install it"
- " instead."
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
  msgstr ""
-+"Il pacchetto %s.%s non è installato, non è quindi possibile aggiornarlo. "
-+"Eseguire yum install se si desidera installarlo."
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
- #, python-format
-@@ -2899,7 +2913,7 @@ msgstr "Downgrade fallito: %s"
- #: ../yum/__init__.py:4516
- #, python-format
- msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "Recupero chiave da %s"
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
  
- #: ../yum/__init__.py:4534
- msgid "GPG key retrieval failed: "
-@@ -2911,10 +2925,12 @@ msgstr "Recupero chiave GPG fallito: "
- #, python-format
- msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
  msgstr ""
-+"La firma della chiave GPG %s non corrisponde alla chiave della CA per il "
-+"repository: %s"
  
- #: ../yum/__init__.py:4559
- msgid "GPG key signature verified against CA Key(s)"
--msgstr ""
-+msgstr "Verifica della firma della chiave GPG con la chiave della CA fallita "
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
  
- #: ../yum/__init__.py:4567
- #, python-format
-@@ -2934,6 +2950,10 @@ msgid ""
- " Package: %s (%s)\n"
- " From   : %s"
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
  msgstr ""
-+"Importazione chiave %s 0x%s:\n"
-+" Userid  : %s\n"
-+" Pacchetto: %s (%s)\n"
-+" Da       : %s"
  
- #: ../yum/__init__.py:4600
- #, python-format
-@@ -2942,6 +2962,9 @@ msgid ""
- " Userid: \"%s\"\n"
- " From  : %s"
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
  msgstr ""
-+"Importazione chiave %s 0x%s:\n"
-+" Userid: %s\n"
-+" Da    : %s"
  
- #: ../yum/__init__.py:4634
+-#: ../output.py:1411
++#: ../output.py:1726
  #, python-format
-@@ -2959,7 +2982,7 @@ msgstr "Chiave importata correttamente"
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
  
- #: ../yum/__init__.py:4676
- msgid "Didn't install any keys"
--msgstr ""
-+msgstr "Non è stata installata alcuna chiave"
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
  
- #: ../yum/__init__.py:4680
- #, python-format
-@@ -2986,7 +3009,7 @@ msgstr "Importazione chiave fallita"
- #: ../yum/__init__.py:4770
- #, python-format
- msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "Non è stata installata alcuna chiave per il repository %s"
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
- #, python-format
-@@ -3022,55 +3045,62 @@ msgstr "Impossibile impostare la cachedir: %s"
- #: ../yum/__init__.py:5148 ../yum/__init__.py:5150
- msgid "Dependencies not solved. Will not save unresolved transaction."
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
  msgstr ""
-+"Dipendenze non risolte. La transazione con dipendenze non risolte non verrà "
-+"salvata."
  
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
- #, python-format
- msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "Impossibile salvare il file di transazione %s: %s"
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
  
- #: ../yum/__init__.py:5195
- #, python-format
- msgid "Could not access/read saved transaction %s : %s"
--msgstr ""
-+msgstr "Impossibile accedere/leggere la transazione salvata %s: %s"
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
  
- #: ../yum/__init__.py:5214
- msgid "rpmdb ver mismatched saved transaction version, "
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
  msgstr ""
-+"la versione di rpmdb non corrisponde alla versione della transazione "
-+"salvata, "
  
- #: ../yum/__init__.py:5216
- msgid " ignoring, as requested."
--msgstr ""
-+msgstr " ignorato, come richiesto."
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
  
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
- msgid " aborting."
--msgstr ""
-+msgstr " esecuzione annullata."
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
  
- #: ../yum/__init__.py:5228
- msgid "cannot find tsflags or tsflags not integer."
--msgstr ""
-+msgstr "impossibile trovare tsflags o tsflags non intero."
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
  
- #: ../yum/__init__.py:5267
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
  #, python-format
- msgid "Found txmbr in unknown current state: %s"
--msgstr ""
-+msgstr "Membro di transazione trovato in stato attuale sconosciuto: %s"
+ msgid "(%u seconds)"
+ msgstr ""
  
- #: ../yum/__init__.py:5271
+-#: ../output.py:1751
++#: ../output.py:2088
  #, python-format
- msgid "Could not find txmbr: %s in state %s"
--msgstr ""
-+msgstr "Impossibile trovare il membro di transazione: %s in stato %s"
+ msgid "(%u minutes)"
+ msgstr ""
  
- #: ../yum/__init__.py:5307 ../yum/__init__.py:5324
+-#: ../output.py:1753
++#: ../output.py:2090
  #, python-format
- msgid "Could not find txmbr: %s from origin: %s"
--msgstr ""
-+msgstr "Impossibile trovare il membro di transazione: %s dall'origine: %s"
+ msgid "(%u hours)"
+ msgstr ""
  
- #: ../yum/__init__.py:5349
- msgid "Transaction members, relations are missing or ts has been modified,"
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
  msgstr ""
-+"Membri della transazione, ci sono relazioni mancanti oppure ts è stata "
-+"modificata,"
  
- #: ../yum/__init__.py:5351
- msgid " ignoring, as requested. You must redepsolve!"
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
  msgstr ""
-+" ignorati, come richiesto. E' necessario eseguire nuovamente depsolve."
  
- #. Mostly copied from YumOutput._outKeyValFill()
- #: ../yum/plugins.py:209
-diff --git a/po/ja.po b/po/ja.po
-index a232b0c..1145ed8 100644
---- a/po/ja.po
-+++ b/po/ja.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Hajime Taira <htaira at redhat.com>, 2011
-+# Hajime Taira <htaira at redhat.com>, 2011.
- msgid ""
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/lt_LT.po b/po/lt_LT.po
-index 4a1d933..db2a2ce 100644
---- a/po/lt_LT.po
-+++ b/po/lt_LT.po
-@@ -2,14 +2,15 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# aurisc4 <aurisc4 at gmail.com>, 2011
-+#   <aurisc4 at gmail.com>, 2011.
-+# aurisc4 <aurisc4 at gmail.com>, 2011.
- msgid ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-07-15 21:31+0000\n"
-+"Last-Translator: aurisc4 <aurisc4 at gmail.com>\n"
- "Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/yum/team/lt_LT/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -851,7 +852,7 @@ msgstr "Neįdiegtas"
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Neprieinama"
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1550,7 +1551,7 @@ msgstr ""
- #: ../yumcommands.py:74
- #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Problemų saugykla: %s"
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
  
- #: ../yumcommands.py:80
- #, python-format
-@@ -1878,7 +1879,7 @@ msgstr "Saugykloje išskirta: "
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Saugyklos failas: "
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/pa.po b/po/pa.po
-index e714500..9c5f07b 100644
---- a/po/pa.po
-+++ b/po/pa.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# A S Alam <apreet.alam at gmail.com>, 2011
-+# A S Alam <apreet.alam at gmail.com>, 2011.
- msgid ""
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-08-18 01:40+0000\n"
-+"Last-Translator: aalam <apreet.alam at gmail.com>\n"
- "Language-Team: Panjabi (Punjabi) <punjabi-users at lists.sf.net>\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -160,7 +160,7 @@ msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲ
  
- #: ../cli.py:525 ../yum/__init__.py:4967
- msgid "Running Transaction Check"
--msgstr ""
-+msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਚੱਲ ਰਿਹਾ ਹੈ"
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
  
- #: ../cli.py:534 ../yum/__init__.py:4976
- msgid "ERROR You need to update rpm to handle:"
-@@ -352,7 +352,7 @@ msgstr "ਪਲੱਗਇਨ ਸਾਫ਼ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆ
- #: ../cli.py:1247
+-#: ../output.py:1795
++#: ../output.py:2132
  #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "ਸਾਵਧਾਨ: ਕੋਈ ਮਿਲਦਾ ਗਰੁੱਪ ਨਹੀਂ: %s"
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
  
- #: ../cli.py:1264
- msgid "Installed Groups:"
-@@ -360,7 +360,7 @@ msgstr "ਇੰਸਟਾਲ ਹੋਏ ਗਰੁੱਪ:"
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
  
- #: ../cli.py:1270
- msgid "Installed Language Groups:"
--msgstr ""
-+msgstr "ਇੰਸਟਾਲ ਹੋਏ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
  
- #: ../cli.py:1276
- msgid "Available Groups:"
-@@ -368,7 +368,7 @@ msgstr "ਉਪਲੱਬਧ ਗਰੁੱਪ:"
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
  
- #: ../cli.py:1282
- msgid "Available Language Groups:"
--msgstr ""
-+msgstr "ਉਪਲੱਬਧ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
  
- #: ../cli.py:1285
- msgid "Done"
-@@ -737,7 +737,7 @@ msgstr " ਵੇਰਵਾ: %s"
- #: ../output.py:788
- #, python-format
- msgid " Language: %s"
--msgstr ""
-+msgstr " ਭਾਸ਼ਾ: %s"
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
  
- #: ../output.py:790
- msgid " Mandatory Packages:"
-@@ -844,7 +844,7 @@ msgstr "ਇੰਸਟਾਲ ਨਹੀਂ"
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
  
- #: ../output.py:1053
- msgid "Not available"
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
 -msgstr ""
-+msgstr "ਉਪਲੱਬਧ ਨਹੀਂ"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -998,7 +998,7 @@ msgstr ""
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
  
- #: ../output.py:1421 ../output.py:1592
- msgid "No transactions"
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
 -msgstr ""
-+msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨਹੀਂ"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
  
- #: ../output.py:1446 ../output.py:2013
- msgid "Bad transaction IDs, or package(s), given"
-@@ -1006,7 +1006,7 @@ msgstr "ਖ਼ਰਾਬ ਟਰਾਂਸੈਕਸ਼ਨ ID, ਜਾਂ ਪੈਕ
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
  
- #: ../output.py:1484
- msgid "Command line"
--msgstr ""
-+msgstr "ਕਮਾਂਡ ਲਾਈਨ"
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
  
- #: ../output.py:1486 ../output.py:1908
- msgid "Login user"
-@@ -1076,22 +1076,22 @@ msgstr "rpmdb ਸ਼ੁਰੂ    :"
- #: ../output.py:1749
- #, python-format
- msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u ਸਕਿੰਟ)"
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
  
- #: ../output.py:1751
- #, python-format
- msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u ਮਿੰਟ)"
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
  
- #: ../output.py:1753
- #, python-format
- msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u ਘੰਟੇ)"
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
  
- #: ../output.py:1755
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
  #, python-format
- msgid "(%u days)"
--msgstr ""
-+msgstr "(%u ਦਿਨ)"
+ msgid "No Transaction %s found"
+ msgstr ""
  
- #: ../output.py:1756
- msgid "End time       :"
-@@ -1116,7 +1116,7 @@ msgstr "ਅਧੂਰਾ ਛੱਡਿਆ"
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
  
- #: ../output.py:1773
- msgid "Failures:"
--msgstr ""
-+msgstr "ਫੇਲ੍ਹ:"
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
  
- #: ../output.py:1777
- msgid "Failure:"
-@@ -1245,7 +1245,7 @@ msgstr "ਇੰਸਟਾਲ ਕੀਤੇ"
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "instal·lat"
  
- #: ../output.py:2107
+-#: ../output.py:2107
++#: ../output.py:2567
  msgid "an update"
--msgstr ""
-+msgstr "ਇੱਕ ਅੱਪਡੇਟ"
+ msgstr ""
  
- #: ../output.py:2108
+-#: ../output.py:2108
++#: ../output.py:2568
  msgid "erased"
-@@ -1257,11 +1257,11 @@ msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤੇ"
+ msgstr "suprimit"
  
- #: ../output.py:2110
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
  msgid "a downgrade"
--msgstr ""
-+msgstr "ਡਾਊਨਗਰੇਡ"
+ msgstr ""
  
- #: ../output.py:2111
+-#: ../output.py:2111
++#: ../output.py:2571
  msgid "obsoleting"
--msgstr ""
-+msgstr "ਬਰਤਰਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ msgstr ""
  
- #: ../output.py:2112
+-#: ../output.py:2112
++#: ../output.py:2572
  msgid "updated"
-@@ -1274,7 +1274,7 @@ msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
- #: ../output.py:2117
+ msgstr "actualitzat"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "obsolet"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
--msgstr ""
-+msgstr "---> ਪੈਕੇਜ %s.%s %s:%s-%s ਹੋਵੇਗਾ %s"
+ msgstr ""
  
- #: ../output.py:2124
+-#: ../output.py:2124
++#: ../output.py:2588
  msgid "--> Running transaction check"
-@@ -1505,7 +1505,7 @@ msgstr "ਮੁਕੰਮਲ!"
+ msgstr "--> S'està executant la transacció de prova"
  
- #: ../yumcommands.py:42
- msgid " Mini usage:\n"
--msgstr ""
-+msgstr " ਮਿੰਨੀ ਵਰਤੋਂ:\n"
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Tornant a calcular la resolució de dependències amb els nous canvis."
  
- #: ../yumcommands.py:52
- msgid "You need to be root to perform this command."
-@@ -1531,7 +1531,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Ha finalitzat la resolució de dependències"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸਮੱਸਿਆ: %s"
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> S'està processant la dependència %s per al paquet: %s"
  
- #: ../yumcommands.py:80
+-#: ../output.py:2149
++#: ../output.py:2639
  #, python-format
-@@ -1831,7 +1831,7 @@ msgstr "ਕਦੇ ਨਹੀਂ (ਆਖਰੀ: %s)"
- #: ../yumcommands.py:1002
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
  #, python-format
- msgid "Instant (last: %s)"
--msgstr ""
-+msgstr "ਮੌਕਾ (ਪਿਛਲਾ: %s)"
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Dependència no resolta: %s"
  
- #: ../yumcommands.py:1005
+-#: ../output.py:2163
++#: ../output.py:2665
  #, python-format
-@@ -1977,7 +1977,7 @@ msgstr ""
- #: ../yumcommands.py:1522
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
  #, python-format
- msgid "loading transaction from %s"
--msgstr ""
-+msgstr "%s ਤੋਂ ਟਰਾਂਸੈਕਸ਼ਨ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> S'està processant el conflicte: %s té un conflicte amb %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> S'està poblant la transacció amb els paquets sel·leccionats. Si us plau,"
+ " espereu."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> S'està baixant la capçalera per a %s per a empaquetar dins de la "
+ "transacció de prova."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "S'està executant"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Està dormint"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Traçat/aturat"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Desconegut"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  L'altre aplicatiu és: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  L'altre aplicatiu és: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memòria : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Iniciat: fa %s-%s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Estat  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1436,7 +1515,7 @@ msgstr ""
+ "\n"
+ "S'està sortint per la cancel·lació de l'usuari"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1446,7 +1525,7 @@ msgstr ""
+ "\n"
+ "S'està sortint en trobar la canonada trencada"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1457,41 +1536,41 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Error: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Hauríeu de provar utilitzant --skip-broken per evitar el problema"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Errors desconeguts: Codi de sortida: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1499,7 +1578,7 @@ msgstr ""
+ "\n"
+ "Dependències resoltes"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Completat!"
+ 
+@@ -1511,7 +1590,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Heu de ser root per a executar aquesta ordre."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1541,362 +1620,355 @@ msgstr ""
+ "\n"
+ "Per a més informació contacteu el vostre distribuïdor o proveïdor de paquets.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Error: es necessita passar una llista de paquets a %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Error: es necessita algun element per comparar"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Error: es necessita un grup o una llista de grups"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Error: la neteja requereix una opció: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Error: argument invàlid per a la neteja: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "No hi ha arguments per a l'intèrpret d'ordres"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nom del fitxer passat a l'intèrpret d'ordres: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "El fitxer %s donat com a argument a l'intèrpret d'ordres no existeix."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Error: s'ha donat més d'un fitxer com a argument per a l'intèrpret d'ordres."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAQUET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instal·la un o més paquets al vostre sistema"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "S'està preparant el procés d'instal·lació"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAQUET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "S'ha actualitzat un o més paquets al vostre sistema"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "S'està preparant el procés d'actualització"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Mostra detalls sobre un paquet o un grup de paquets"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Paquets instal·lats"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Paquets disponibles"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Paquets extra"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Paquets actualitzats"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Paquets obsolets"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Paquets recentment afegits"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "No hi ha paquets coincidents per llistar"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Llista un paquet o un grup de paquets"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Suprimeix un o més paquets del vostre sistema"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "S'està preparant el procés de supressió"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "S'està preparant el procés de grup"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "No hi ha cap grup on executar l'ordre"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Llista els grups de paquets disponibles"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instal·la els paquets en un grup en el vostre sistema"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Suprimeix els paquets en un grup en el vostre sistema"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Mostra detalls sobre un grup de paquets"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Genera les metadades de la memòria cau"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ "S'estan fent els fitxers de memòria cau per a tots els fitxers de metadades."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Això pot trigar una estona depenent de la velocitat d'aquest ordinador"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "S'han creat les metadades per a la memòria cau"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "S'han suprimit les dades de la memòria cau"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Troba quin paquet proporciona el valor donat"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Comprova si hi ha actualitzacions de paquets disponibles"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Busca detalls del paquet per la cadena donada"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "S'estan buscant paquets: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Actualitza paquets tenint en compte els obsolets"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "S'està preparant el procés d'actualització"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instal·la un RPM local"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "S'està configurant el procés local de paquets"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Determina quin paquet satisfà la dependència donada"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "S'estan buscant paquets per a la dependència:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Executa un intèrpret d'ordres interactiu de yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "S'està preparant l'intèrpret d'ordres de yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Llista les dependències d'un paquet"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "S'estan trobant dependències: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Mostra els repositoris de programari configurats"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "habilitat"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "deshabilitat"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Id-repo           : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Nom-repo          : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Estat-repo        : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-revisió      : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-etiquetes    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-etiq-dist    : "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo-actualitzat  : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Paquets-repo      : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Mida-repo         : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "URL-base-repo     : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metaenllaç   : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Actualitzat     : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Miralls-repo      : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Mai (últim: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Temps d'instal·lació (últim: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s segons (últim: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Venç-repo   : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-exclou : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-inclou : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "id repo"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "estat"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nom repo"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Mostra un missatge d'ajuda d'ús"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "No hi ha ajuda disponible per a %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1906,7 +1978,7 @@ msgstr ""
+ "\n"
+ "àlies: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1916,85 +1988,125 @@ msgstr ""
+ "\n"
+ "àlies: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "S'està preparant el procés de reinstal·lació"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "reinstal·la un paquet"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "S'està preparant el procés de desactualització"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "desactualitza un paquet"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Mostra una versió per a la màquina i/o repositoris disponibles"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Instal·lat:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Disponible:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -2005,28 +2117,34 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Alguna altra aplicació té el bloqueig del yum; s'està esperant a que "
+ "surti..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "S'estan resolent dependències"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2036,77 +2154,77 @@ msgstr ""
+ "\n"
+ "S'està sortint de l'ordre de l'usuari."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ "S'està configurant TransactionSets abans que la classe de configuració "
+ "estigui iniciada"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Tsflag invàlid en el fitxer de configuració: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "S'està buscant pkgSack per a la dependència: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Membre: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s convertits per a instal·lar"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "S'està afegint el paquet %s en mode %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "S'està suprimint el paquet %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s requereix: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ "El requeriment necessari ja s'ha buscat anteriorment, s'estan fent trampes"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "El requeriment necessari no és un nom de paquet. S'està buscant: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Proveïdor potencial: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "El mode és %s per al proveïdor de %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Mode per al paquet que proporciona %s: %s"
+@@ -2114,120 +2232,120 @@ msgstr "Mode per al paquet que proporciona %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: el paquet %s requereix %s marcat per a suprimir"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: S'està marcant com a obsolet %s amb %s per resoldre dependències."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: S'està actualitzant %s per a resoldre dependències."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "No es pot trobar un camí d'actualització de dependències per a: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "La coincidència %s es requereix per a %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s es troba en els paquets proporcionats però ja es troba instal·lat, s'està"
+ " suprimint."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "El paquet potencial que resol dependències %s té una instància nova a ts"
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "El paquet potencial que resol dependències %s té una nova instància "
+ "insta·lada."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s ja es troba en ts, s'està ometent"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: S'està marcant %s com a actualització per a %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: S'està marcant %s com a instal·lació per a %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Èxit - transacció buida"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "S'està recomençant el bucle"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Està acabant el procés de dependències"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Èxit - dependències resoltes"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "S'estan comprobant les dependències per a %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "s'està buscant %s com a requeriment de %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "S'està executant compare_providers() per a %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "millor arq en el po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s fa obsolet %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2236,142 +2354,142 @@ msgstr ""
+ "archdist ha comparat %s amb %s a %s\n"
+ "  Ha guanyat: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "rpm font comú %s i %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "prefix comú de %s entre %s i %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Millor ordre: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigsetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Falta el nom del repositori %r en la configuració, s'utilitzarà l'id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "els connectors ja estan inicialitzats"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "S'està llegint un RPMDB local"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() desapareixerà en una versió futura de Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "S'estan configurant els sacs de paquets"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "l'objecte repositori per al repositori %s no té un mètode _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "Aquest repositori no es pot reiniciar.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "S'està construint l'objecte d'actualitzacions"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() desapareixerà en una futura versió de Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "S'estan obtenint les metadades del grup"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "S'està afegint el fitxer del grup des del repositori: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "No s'ha pogut afegir el fitxer dels grups des del repositori: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "No hi ha cap grup disponible en cap repositori"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "S'està important informació adicional de la llista de fitxers"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "El programa %s%s%s es troba en el paquet yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2379,21 +2497,21 @@ msgstr ""
+ "Encara hi ha transaccions sense acabar. Hauríeu de considerar executar yum-"
+ "complete-transaction abans per acabar-les."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2401,130 +2519,122 @@ msgstr ""
+ "\n"
+ "Paquets omesos degut a problemes de dependències:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s des de %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Avís: ha fallat l'scriptlet o s'han produït altre tipus d'errors no fatals "
+ "durant la transacció."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "No s'ha pogut suprimir el fitxer de transaccions %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "S'havia d'instal·lar %s però no s'ha realitzat!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "S'havia de suprimir %s però no s'ha realitzat!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "No s'ha pogut comprovar si el PID %s es troba actiu"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Bloqueig existent %s: una altra còpia s'està executant amb pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "No s'ha pogut realitzar la suma de verificació"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "No coincideix la suma de verificació del paquet"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "la suma de verificació del paquet falla però l'ús de memòria cau està "
+ "habilitat per a %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "s'està utilitzant la còpia local de %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"No hi ha espai suficient al directori de descàrregues %s\n"
+-"    * lliure    %s\n"
+-"    * necessari %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "La capçalera no està completa."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2532,62 +2642,64 @@ msgstr ""
+ "La capçalera no es troba en la memòria cau local i està habilitat el mode de"
+ " només memòria cau. No es pot baixar %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "La clau pública per a %s no està instal·lada"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Hi ha hagut un problema obrint el paquet %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "La clau pública per a %s no és de confiança"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "El paquet %s no està signat"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "No es pot suprimir %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "S'ha suprimit %s"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "No es pot suprimir %s fitxer %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s fitxer %s suprimit"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s fitxers suprimits"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Hi ha més d'una coincidència idèntica en el sac per a %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "No hi ha coincidències %s.%s-%s:%s-%s de l'actualització"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2595,143 +2707,145 @@ msgstr ""
+ "searchPackages() desapareixerà en una futura versió de Yum."
+ "                      Useu searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "S'estan buscant %d paquets"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "s'està buscant el paquet %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "s'està buscant en les entrades de fitxers"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "s'està buscant en les entrades proporcionades"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ "No hi ha dades de grup disponibles en cap dels repositoris configurats"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "No existeix cap grup anomenat %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "el paquet %s no estava marcat en el grup %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "S'està afegint el paquet %s del grup %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "No hi ha cap paquet anomenat %s disponible per a ser instal·lat"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "No s'ha pogut trobar la tupla de paquets %s al sac de paquets"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "No s'ha trobat cap paquet per a %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "L'objecte paquet no era una instància d'objecte paquet"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "No hi ha res especificat per a instal·lar"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ "S'està verificant si hi ha un proveïdor virtual o un fitxer proveïdor per a "
+ "%s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "No hi ha cap coincidència per a l'argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "El paquet %s es troba instal·lat però no és disponible"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "No hi ha cap paquet disponible per a instal·lar"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "El paquet: %s  - ja està en la transacció"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "El paquet %s és obsolet degut a %s, que ja està instal·lat"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "El paquet %s és obsolet degut a %s, es provarà d'instal·lar %s en el seu "
+ "lloc"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "El paquet %s ja es troba instal·lat i en l'última versió."
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+@@ -2739,66 +2853,72 @@ msgstr ""
+ "actualització."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "S'està actualitzant tot"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "No s'actualitzarà el paquet obsolet: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "El paquet és obsolet: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "No s'actualitzarà el paquet obsolet: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "No s'actualitzarà el paquet actualitzat: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "No hi ha cap paquet coincident per a suprimir"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "S'està examinant %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2806,12 +2926,12 @@ msgstr ""
+ "No s'ha pogut afegir el paquet %s a la transacció. No és una arquitectura "
+ "compatible: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2820,105 +2940,110 @@ msgstr ""
+ "El paquet %s no està instal·lat; no es pot actualitzar. Executeu «yum "
+ "install» per a instal·lar-lo."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "S'està excloent %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "S'està marcant %s per a ser instal·lat"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "S'està marcant %s com a actualització de %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s no actualitza el paquet instal·lat."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "No es pot obrir el fitxer %s. S'ometrà."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Hi ha un problema en reinstal·lar: no hi ha cap paquet marcat per a suprimir"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Hi ha un problema en reinstal·lar: no hi ha cap paquet %s marcat per a "
+ "instal·lar"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "No hi ha cap paquet disponible per a desactualitzar"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "El paquet %s permet múltiples instal·lacions, s'està ometent"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "No hi ha cap paquet disponible que coincideixi: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Només hi ha una actualització disponible per al paquet: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "La recuperació de la clau GPG ha fallat: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "L'ànalisi de la clau GPG ha fallat: la clau no té el valor %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2927,7 +3052,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2935,25 +3060,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "La clau GPG de %s (0x%s) ja està instal·lada"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "La importació de la clau ha fallat (codi %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "La clau s'ha importat amb èxit"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2962,184 +3087,208 @@ msgstr ""
+ "Les claus GPG llistades per al repositori \"%s\" ja estan instal·lades però no són correctes per a aquest paquet.\n"
+ "Comproveu que les URL de claus correctes estan configurades per a aquest repositori."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "La importació de claus no ha ajudat, eren claus incorrectes?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "La clau GPG a %s (0x%s) ja ha estat importada"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Ha fallat la importació de la clau"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "No s'ha pogut trobar un servidor rèplica vàlid."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "S'han trobat errors baixant paquets."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Siusplau, informeu d'aquest error al %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Errors en la transacció de prova: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Connectors carregats: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "No hi ha cap connector que coincideixi amb: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "No s'està carregant el connector \"%s\", ja que està deshabilitat"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "No s'ha pogut importar el connector \"%s\""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "El connector \"%s\" no especifica la versió de l'API requerida."
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "El connector \"%s\" requereix l'API %s. L'API disponible és %s"
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "S'està carregant el connector \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Existeixen dos o més connectors amb el mateix nom \"%s\" en el camí de cerca"
+ " de connectors"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "No s'ha trobat el fitxer de configuració %s"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "No s'ha pogut trobar un fitxer de configuració per al connector %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "l'enregistrament d'ordres no està suportat"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3148,6 +3297,17 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr "Reempaquetant"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"No hi ha espai suficient al directori de descàrregues %s\n"
++"    * lliure    %s\n"
++"    * necessari %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/cs.po b/po/cs.po
+index 622394b..c8a5a90 100644
+--- a/po/cs.po
++++ b/po/cs.po
+@@ -2,14 +2,16 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Adam  Pribyl <covex at lowlevel.cz>, 2011
++# Translators:
++# Adam  Pribyl <covex at lowlevel.cz>, 2011.
++#   <zpavlas at redhat.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-09-23 14:26+0000\n"
++"Last-Translator: covex <covex at lowlevel.cz>\n"
+ "Language-Team: Czech (http://www.transifex.net/projects/p/yum/team/cs/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +19,125 @@ msgstr ""
+ "Language: cs\n"
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+-msgstr "Aktualizuje se"
++msgstr "Aktualizace"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+-msgstr "Maže se"
++msgstr "Odstranění"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+-msgstr "Instaluje se"
++msgstr "Instalování"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+-msgstr "Zastaralé"
++msgstr "Zastaralo"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Aktualizováno"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Smazáno"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Nainstalováno"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Bez hlavičky???"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Přebalit"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Chyba: neplatný výstupní stav: %s pro %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Smazáno: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Odstraňuje se"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+-msgstr "Čistí se"
++msgstr "Vymazání"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Příkaz „%s“ již definován"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+-msgstr "Nastavují se repozitáře"
++msgstr "Příprava repozitářů"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+-msgstr "Načítají se metadata repozitářů z lokálních souborů"
++msgstr "Načítání metadat repozitářů z lokálních souborů"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Chyba konfigurace: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Chybná volba: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Nainstalováno: %s-%s na %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Sestaveno    : %s na %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Odesláno     : %s na %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+-msgstr "Musíte zadat nějaký příkaz"
++msgstr "Musít být zadán nějaký příkaz"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Neexistující příkaz: %s. Použijte %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Diskové požadavky:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Je potřeba alespoň o %dMB více místa na souborovém systému %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Je potřeba alespoň o %dMB více místa na souborovém systému %s.\n"
++msgstr[1] ""
++msgstr[2] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +145,60 @@ msgstr ""
+ "Přehled chyb\n"
+ "------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Pokus o spuštění transakce, ale není co dělat. Ukončeno."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Ukončeno na příkaz uživatele"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+-msgstr "Stahují se balíčky:"
++msgstr "Stahování balíčků:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+-msgstr "Chyba stahování balíčků:\n"
++msgstr "Chyba při stahování balíčků:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+-msgstr ""
++msgstr "Spuštěna kontrola transakce"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "CHYBA Je potřeba aktualizovat rpm k provedení:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+-msgstr ""
++msgstr "CHYBA při kontrole transakce a řešení závislostí:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+-msgstr "Je potřeba aktualizovat RPM"
++msgstr "Je nutné aktualizovat RPM"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+-msgstr "Oznamte prosím tuto chybu v %s"
++msgstr "Oznamte prosím tuto chybu na adrese %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+-msgstr "Spouští se test transakcí"
++msgstr "Spuštěn test transakce"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+-msgstr "Chyba při kontrole transakcí:\n"
++msgstr "Chyba při kontrole transakce:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+-msgstr "Test transakcí uspěl"
++msgstr "Test transakce v pořádku"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+-msgstr "Spouští se transakce"
++msgstr "Transakce spuštěna"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,234 +206,269 @@ msgstr ""
+ "Nelze automaticky importovat klíče při spuštění bez obsluhy.\n"
+ "Použijte \"-y\" k potlačení."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+-msgstr "  * Možná jste myslel: "
++msgstr "  * Možná bylo míněno: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Balíček(y) %s%s%s dostupný/é, ale nenainstalovaný/é."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Balíček %s%s%s není dostupný."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Balíček(y) k instalaci"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d balíček k instalaci"
++msgstr[1] "%d balíčky k instalaci"
++msgstr[2] "%d balíčků k instalaci"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Není co dělat"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d balíčků označeno k aktualizaci"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d balíček označen k aktualizaci"
++msgstr[1] "%d balíčky označeny k aktualizaci"
++msgstr[2] "%d balíčků označeno k aktualizaci"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+-msgstr "Žádné balíčky označené k aktualizaci"
++msgstr "Nejsou dostupné žádné balíčky s aktualizacemi"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d balíčků označených k synchronizaci distribuce"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d balíček označen k synchronizaci distribuce"
++msgstr[1] "%d balíčky označeny k synchronizaci distribuce"
++msgstr[2] "%d balíčků označeno k synchronizaci distribuce"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+-msgstr "K synchronizaci distribuce nebyly označeny žádné balíčky"
++msgstr "K synchronizaci distribuce nebyly určeny žádné balíčky"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d balíčků označeno ke smazání"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d balíček označen k odstranění"
++msgstr[1] "%d balíčky označeny k odstranění"
++msgstr[2] "%d balíčků označeno k odstranění"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+-msgstr "Žádné balíčky označené k odstranění"
++msgstr "Žádné balíčky ke smazání"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Balíček(y) ke snížení verze"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d balíček ke snížení verze"
++msgstr[1] "%d balíčky ke snížení verze"
++msgstr[2] "%d balíčků ke snížení verze"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (z %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+-msgstr "Instalované balíčky  %s%s%s%s nejsou dostupné"
++msgstr "Instalované balíčky %s%s%s%s nejsou dostupné"
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Balíček(y) k reinstalaci"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d balíček k reinstalaci"
++msgstr[1] "%d balíčky k reinstalaci"
++msgstr[2] "%d balíčků k reinstalaci"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+-msgstr "Žádný balíček neposkytuje"
++msgstr "Neposkytnuty žádné balíčky"
++
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Balíček(y) k instalaci"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+-msgstr ""
++msgstr "Jméno/Souhrn odpovídá: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  Vyhledáno %spouze%s podle jména a souhrnu, použijte \"search all\" pro "
++"úplné hledání."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  Vyhledáno %spouze%s podle plného jména a souhrnu, použijte \"search all\" "
++"pro úplné hledání."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Shoda: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  Vyhledáno %shlavně%s, použijte \"search all\" pro úplné hledání."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+-msgstr "Varování: Žádný balíček odpovídající: %s"
++msgstr "Varování: Žádná shoda pro: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nebyla nalezena shoda"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nebyly nalezeny balíčky pro %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+-msgstr "Čištění repozitářů:"
++msgstr "Vyčištění repozitářů:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+-msgstr "Čistí se vše"
++msgstr "Vymazání celého obsahu cache"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+-msgstr "Čistí se hlavičky"
++msgstr "Vymazání hlaviček"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+-msgstr "Čistí se balíčky"
++msgstr "Vymazání balíčků"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+-msgstr "Čistí se XML metadata"
++msgstr "Vymazání XML metadat"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+-msgstr "Čistí se skladiště databáze"
++msgstr "Vymazání databázové cache"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+-msgstr "Ze skladiště se odstraňují zastaralá metadata"
++msgstr "Vymazání zastaralých metadat"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+-msgstr "Čistí se skladiště rpmdb dat"
++msgstr "Vymazání rpmdb cache"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+-msgstr "Čistí se zásuvné moduly"
++msgstr "Vymazání modulů"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "Varování: Žádná shoda skupiny pro: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Nainstalované skupiny:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "Nainstalované jazykové skupiny:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Dostupné skupiny:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "Dostupné jazykové skupiny:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Dokončeno"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Varování: skupina %s neexistuje."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "V žádné z požadovaných skupin nejsou balíčky k instalaci nebo aktualizaci"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d balíček(ů) k instalaci"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d balíček k instalaci"
++msgstr[1] "%d balíčky k instalaci"
++msgstr[2] "%d balíčků k instalaci"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Neexistuje skupina se jménem %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Žádné balíčky k odstranění ve skupině"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d balíček(ů) k odstranění"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d balíček k odstranění"
++msgstr[1] "%d balíčky k odstranění"
++msgstr[2] "%d balíčků k odstranění"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Balíček %s je již nainstalován, přeskakuje se"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+-msgstr "Skartuje se neporovnatelný balíček %s.%s"
++msgstr "Zahození neporovnatelného balíčku %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "Žádný jiný %s nainstalován, přidán do seznamu k potenciální instalaci"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+-msgstr "Možnosti zásuvného modulu"
++msgstr "Volby zásuvného modulu"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+-msgstr "Chyba příkazové řádky: %s"
++msgstr "Chyba na příkazovém řádku: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -439,284 +479,288 @@ msgstr ""
+ "\n"
+ "%s: %s volba vyžaduje argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+-msgstr "--color přijímá jeden z: auto, always, never"
++msgstr "--color může být jen: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "--installroot musí být absolutní cesta: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "ukázat tuto nápovědu a skončit"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "tolerovat chyby"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+-msgstr "spustit vše ze systémového skladiště, bez jeho aktualizace"
++msgstr "spustit vše ze systémové cache, bez její aktualizace"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "umístění konfiguračního souboru"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maximální čas čekání na příkaz"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+-msgstr "úroveň výstupních ladících informací"
++msgstr "úroveň výpisu ladících informací"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "ukázat duplikáty v repozitářích, v list/search příkazech"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+-msgstr "úroveň výstupu chyb"
++msgstr "úroveň výpisu chyb"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+-msgstr "úroveň výstupních ladících informací pro rpm"
++msgstr "úroveň výpisu ladících informací pro rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+-msgstr "tichý chod"
++msgstr "tichý běh"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+-msgstr "užvaněný chod"
++msgstr "užvaněný běh"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+-msgstr "odpovědět ano na všechny otázky"
++msgstr "odpovědět na všechny otázky ano"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "odpověď je ne na všechny otázky"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "ukázat verzi yumu a skončit"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "nastavit kořen instalace "
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "povolit jeden nebo více repozitářů (zástupné znaky povoleny)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "zakázat jeden nebo více repozitářů (zástupné znaky povoleny)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+-msgstr "vyřadit balíček(y) podle jména nebo globálně"
++msgstr "vyřadit balíček(y) podle jména nebo výrazu"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "zakázat vyřazení z hlavní části, pro repozitář nebo pro vše"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "povolit zpracování zastaralých během aktualizací"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "zakázat zásuvné moduly yumu"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "zakázat kontrolu GPG podpisů"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "zakázat zásuvné moduly podle jména"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "povolit zásuvné moduly podle jména"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "přeskočit balíčky s problémy v závislostech"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontrola zda jsou použity barvy"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+-msgstr "nastavte hodnotu $releasever v konfiguraci yumu a repo souborech"
++msgstr "nastavit hodnotu $releasever pro yum a repo soubory"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "nastavit doplňkové konfigurace a možnosti repozitáře "
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+-msgstr "Led"
++msgstr "led"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+-msgstr "Úno"
++msgstr "úno"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+-msgstr "Bře"
++msgstr "bře"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+-msgstr "Dub"
++msgstr "dub"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+-msgstr "Kvě"
++msgstr "kvě"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+-msgstr "Čer"
++msgstr "čer"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+-msgstr "Čec"
++msgstr "čec"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+-msgstr "Srp"
++msgstr "srp"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+-msgstr "Zář"
++msgstr "zář"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+-msgstr "Říj"
++msgstr "říj"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+-msgstr "Lis"
++msgstr "lis"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+-msgstr "Pro"
++msgstr "pro"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+-msgstr "Zkouší se jiné zrcadlo"
++msgstr "Zkusí se jiné zrcadlo..."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+-msgstr "Jméno       : %s%s%s"
++msgstr "Jméno        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+-msgstr "Arch        : %s"
++msgstr "Platforma    : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+-msgstr "Epocha      : %s"
++msgstr "Epocha       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+-msgstr "Verze       : %s"
++msgstr "Verze        : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+-msgstr "Vydání      : %s"
++msgstr "Vydání       : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+-msgstr "Velikost    : %s"
++msgstr "Velikost     : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+-msgstr "Repo        : %s"
++msgstr "Repozitář    : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+-msgstr "Z repozitáře: %s"
++msgstr "Z repozitáře : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+-msgstr "Odesilatel  : %s"
++msgstr "Odesilatel   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+-msgstr "Čas odeslání: %s"
++msgstr "Čas odeslání : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+-msgstr "Čas sestavení: %s"
++msgstr "Čas vytvoření: %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Čas instalace: %s "
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+-msgstr "Nainstaloval: %s "
++msgstr "Nainstaloval : %s "
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+-msgstr "Změnil      : %s"
++msgstr "Změnil       : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+-msgstr "Souhrn      : "
++msgstr "Souhrn       : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+-msgstr "URL         : %s"
++msgstr "URL          : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+-msgstr "Licence     : "
++msgstr "Licence      : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+-msgstr "Popis       : "
++msgstr "Popis        : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "a"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ano"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ne"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "V pořádku [a/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -725,154 +769,157 @@ msgstr ""
+ "\n"
+ "Skupina: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " ID skupiny: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Popis: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " Jazyk: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Povinné balíčky:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Výchozí balíčky:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Volitelné balíčky:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Podmínečné balíčky:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+-msgstr "balíčky: %s"
++msgstr "balíček: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+-msgstr "  Pro tento balíček nejsou žádné závislosti"
++msgstr "  Pro balíček nejsou žádné závislosti"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+-msgstr "  závislosti: %s"
++msgstr "  závislost: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+-msgstr "   Neuspokojené závislosti"
++msgstr "   Nevyřešené závislosti"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Shoda s:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licence     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Soubor      : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Další       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+-msgstr "Při výpočtu celkové velikosti stahování nastala chyba"
++msgstr "Při výpočtu celkové velikosti ke stahování nastala chyba"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Celková velikost: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+-msgstr "Celková velikost stahování: %s"
++msgstr "Celková velikost ke stahování: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Nainstalovaná velikost: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+-msgstr "Při počítání velikosti instalace došlo k chybě"
++msgstr "Při výpočtu velikosti po instalaci došlo k chybě"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+-msgstr "Přeinstalovává se"
++msgstr "Reinstalace"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+-msgstr "Snižuje se verze"
++msgstr "Snížení verze"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+-msgstr "Instaluje se kvůli závislostem"
++msgstr "Instalace kvůli závislostem"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+-msgstr "Aktualizuje se kvůli závislostem"
++msgstr "Aktualizace se kvůli závislostem"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+-msgstr "Odstraňuje se kvůli závislostem"
++msgstr "Odstranění kvůli závislostem"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Přeskočeno (problémy se závislostmi)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Nenainstalováno"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Nedostupný"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Balíček"
++msgid_plural "Packages"
++msgstr[0] "Balíček"
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arch"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Verze"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repozitář"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Vel."
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     nahrazuje se  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -883,65 +930,60 @@ msgstr ""
+ "Shrnutí transakce\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Instalace    %5.5s balíčků\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instalovat"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Aktualizace  %5.5s balíčků\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Aktualizace"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Odstranění   %5.5s  balíčků\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Odstranění"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Reinstalace  %5.5s balíčků\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Přeinstalovat"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Snížení verze %5.5s balíčků\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Snížit verzi"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Odstraněno"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Odstraněné závislosti"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Nainstalované závislosti"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Aktualizované závislosti"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Nahrazeno"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Selhalo"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+-msgstr "dvě"
++msgstr "dvou"
+ 
+ #. For translators: This is output like:
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -952,364 +994,416 @@ msgstr ""
+ "Aktuální stahování zrušeno, běh lze ukončit %sopakovaným přerušením (ctrl-c)%s\n"
+ "během %s%s%s sekund.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "Přerušeno uživatelem"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Celkem"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<nenastaveno>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Systém"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+-msgstr ""
++msgstr "Vynechání sloučené transakce %d až %d, protože jsou v překryvu"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "Žádné transakce"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Zadáno špatné ID transakce nebo balíčku/ů"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "Příkazový řádek"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+-msgstr "Přihlášení uživatele"
++msgstr "Přihlášen uživatel"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Datum a čas"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Akce"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Pozměněno"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Nezadáno ID transakce"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Špatné ID transakce"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Zadané ID transakce nenalezeno"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Nalezeno více než jedno ID transakce!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Nebylo zadáno ID transakce nebo balíčku/ů"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Snížena verze"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Starší"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Novější"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ID transakce:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Počáteční čas  :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Začátek rpmdb  :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u sekund)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u minut)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u hodin)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u dnů)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+-msgstr "Konečný čas    :"
++msgstr "Čas ukončení    :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Konec rpmdb    :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Uživatel       :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Návratový kód  :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Přerušeno"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "Selhání:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Selhalo:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+-msgstr "Úspěch"
++msgstr "Úspěšné"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+-msgstr "Příkazová řádka:"
++msgstr "Příkazový řádek:"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Uložená přídavná nestandardní informace: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transakce proběhla s:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Pozměněné balíčky:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Přeskočené balíčky:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problémy rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Výstup skriptletu:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Chyby:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instalovat"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Instalovat závislosti"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Zastaralé"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Smazat"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Přeinstalovat"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Snížit verzi"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Aktualizovat"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Čas"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Poslední den"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Poslední týden"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Poslední 2 týdny"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Poslední 3 měsíce"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Posledních 6 měsíců"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Poslední rok"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Více než rok"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Nenalezena transakce %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "ID transakce:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Další dostupná informace z historie:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Nenalezena další data toho jména"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Balíček        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Stav           :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Velikost       :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Sestaveno na   :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Čas sestavení  :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Autor balíčku  :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Distributor    :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licence        :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "Zdrojové RPM   :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Čas odeslání  :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Odesilatel     :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Důvod          :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Z repa         :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Nainstaloval   :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Změnil         :"
++
++#: ../output.py:2566
+ msgid "installed"
+-msgstr "instalaci"
++msgstr "instalován"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+-msgstr ""
++msgstr "novou aktualizací"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+-msgstr "smazání"
++msgstr "smazán"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+-msgstr "reinstalaci"
++msgstr "reinstalován"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+-msgstr ""
++msgstr "ponížen"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+-msgstr ""
++msgstr "nahrazen"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+-msgstr "aktualizaci"
++msgstr "aktualizován"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+-msgstr "zastarání"
++msgstr "zastaralý"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+-msgstr ""
++msgstr "---> Balíček %s.%s %s:%s-%s bude %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+-msgstr "--> Spouští se kontrola transakce"
++msgstr "--> Kontrola transakce spuštěna"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+-msgstr "--> Restartuje se řešení závislostí s novými změnami."
++msgstr "--> Restartování řešení závislostí s novými změnami."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Řešení závislostí dokončeno"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+-msgstr "--> Zpracování závislosti: %s pro balíček: %s"
++msgstr "--> Zpracování závislostí: %s pro balíček: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+-msgstr "---> Ponechají se balíčky: %s"
++msgstr "---> Ponechíní balíčku: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+-msgstr "--> Nevyřešená závislost: %s"
++msgstr "--> Nevyřešené závislosti: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Balíček: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1318,7 +1412,7 @@ msgstr ""
+ "\n"
+ "    Vyžaduje: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1327,7 +1421,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1336,7 +1430,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1345,85 +1439,85 @@ msgstr ""
+ "        Nenalezeno"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+-msgstr "Aktualizoval"
++msgstr "Aktualizací balíčku"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Snížil verzi"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+-msgstr "Zastaral"
++msgstr "Zastaralán"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Dostupné"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Zpracování konfliktu: %s je v konfliktu s %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+-msgstr "--> Do transakční sady se přidávají vybrané balíčky. Čekejte prosím."
++msgstr "--> Do transakce jsou přidávány vybrané balíčky. Čekejte prosím."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+-msgstr "---> Stahují se hlavičky %s pro přidání do transakce."
++msgstr "---> Stahování hlaviček %s pro přidání do transakce."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Běží"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Spí"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Nepřerušitelné"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Trasován/Zastaven"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Neznámý"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Další aplikace je: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Další aplikace je: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Paměť  : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+-msgstr "    Spuštěn: %s - %s nazpět"
++msgstr "    Spuštěn: %s - před %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Stav   : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1431,9 +1525,9 @@ msgid ""
+ msgstr ""
+ "\n"
+ "\n"
+-"Ukončeno na základě pokynu uživatele"
++"Ukončeno na příkaz uživatele"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1441,9 +1535,9 @@ msgid ""
+ msgstr ""
+ "\n"
+ "\n"
+-"Ukončeno kvůli nefunkční rouře"
++"Ukončeno přerušením roury"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1454,63 +1548,63 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+-"Zámek aplikace yum je uzamčen jinou aplikací; ukončeno dle konfigurace "
++"Zámek pro yum nyní blokuje jiná aplikace; ukončení kvůli nastavenému "
+ "exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Chyba PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Chyba Yumu: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Chyba: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+-msgstr " Můžete zkusit volbu --skip-broken k překonání tohoto problému"
++msgstr " Pro obejití problému můžete zkusit volbu --skip-broken"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Můžete zkusit spustit: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Neznámá chyba/y: Výstupní kód: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ "\n"
+-"Závislosti vyřešeny"
++"Závislosti vyřešeny."
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Hotovo!"
+ 
+ #: ../yumcommands.py:42
+ msgid " Mini usage:\n"
+-msgstr ""
++msgstr " Mini použití:\n"
+ 
+ #: ../yumcommands.py:52
+ msgid "You need to be root to perform this command."
+-msgstr "Pro spuštění tohoto příkazu potřebujete být root."
++msgstr "Tento příkaz může spustit jen root."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1527,9 +1621,9 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ "\n"
+-"Povolili jste kontrolu balíčků pomocí GPG klíčů, což je dobrá věc.\n"
+-"Bohužel nemáte ale nainstalován žádný veřejný GPG klíč. Musíte stáhnout klíč\n"
+-"pro balíček, který si přejete nainstalovat a přidat jej příkazem\n"
++"Je povolena kontrola balíčků pomocí GPG klíčů, což je dobrá věc.\n"
++"Není však nainstalován žádný veřejný GPG klíč. Musíte stáhnout\n"
++"klíč pro balíček, který si přejete nainstalovat a přidat jej příkazem\n"
+ "    rpm --import public.gpg.key\n"
+ "\n"
+ "\n"
+@@ -1539,362 +1633,355 @@ msgstr ""
+ "\n"
+ "Více informací získáte u svého distributora nebo správce balíčku.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problém v repozitáři: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Chyba: Je potřeba předat seznam balíčků do %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+-msgstr "Chyba: K nalezení shody je potřeba předmět"
++msgstr "Chyba: K nalezení shody je potřeba položka"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Chyba: Je potřeba skupina nebo seznam skupin"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Chyba: clean vyžaduje volbu: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Chyba: Neplatný argument pro clean: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+-msgstr "Shell nemá žádný argument"
++msgstr "Žádný argument pro shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Jméno souboru předané shellu: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Soubor %s předaný jako argument shellu neexistuje."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Chyba: Více než jeden soubor předán shellu jako argument."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+-"Neexistují žádné povolené repozitáře.\n"
+-" Abyste viděli povolené repozitáře spusťte \"yum repolist all\".\n"
+-" Povolit repozitáře můžete pomocí \"yum-config-manager --enable <repo>\""
++"K dispozici nejsou žádné povolené repozitáře.\n"
++" Pro zobrazení repozitářů spusťte \"yum repolist all\".\n"
++" Repozitáře můžete povolit pomocí \"yum-config-manager --enable <repo>\""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "Balíček..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instalovat balíček nebo balíčky do vašeho systému"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+-msgstr "Uspořádává se průběh instalace"
++msgstr "Příprava průběhu instalace"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[Balíček...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+-msgstr "Aktualizovat balíček nebo balíčky na vašem systému"
++msgstr "Aktualizovat balíček nebo balíčky v systému"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+-msgstr "Uspořádává se průběh aktualizace"
++msgstr "Příprava průběhu aktualizace"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Synchronizovat nainstalované balíčky na poslední dostupnou verzi"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+-msgstr "Uspořádává se proces synchronizace distribuce"
++msgstr "Příprava procesu synchronizace distribuce"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Zobrazit detaily o balíčku nebo skupině balíčků"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+-msgstr "Nainstalované balíčky"
++msgstr "Nainstalované balíčky:"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+-msgstr "Dostupné balíčky"
++msgstr "Dostupné balíčky:"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+-msgstr "Dodatečné balíčky"
++msgstr "Dodatečné balíčky:"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+-msgstr "Aktualizované balíčky"
++msgstr "Aktualizované balíčky:"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+-msgstr "Zastaralé balíčky"
++msgstr "Zastaralé balíčky:"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+-msgstr "Nově přidané balíčky"
++msgstr "Nedávno přidané balíčky:"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+-msgstr "Nenalezeny shodné balíčky"
++msgstr "Nenalezeny odpovídající balíčky"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Vypsat balíček nebo skupiny balíčků"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Odstranit balíček nebo balíčky ze systému"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+-msgstr "Uspořádává se průběh odstranění"
++msgstr "Příprava průběhu odstranění"
++
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Zobrazit nebo použít informace o skupinách"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+-msgstr "Uspořádává se zpracování skupiny"
++msgstr "Příprava zpracování skupiny"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Nenalezeny skupiny, na které by šlo příkaz aplikovat"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Vypsat dostupné skupiny balíčků"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instalovat balíčky ze skupiny do systému"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Odstranit balíčky ze skupiny ze systému"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Zobrazit detaily o skupině balíčků"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Neplatný příkaz podskupiny, použijte: %s"
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+-msgstr "Vygenerovat skladiště metadat"
++msgstr "Vygenerovat cache s metadaty"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+-msgstr "Vytváří se skladištní soubory pro všechna metadata "
++msgstr "Vytváření cache souborů pro všechna metadata."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+-msgstr "Může to chvíli trvat v závislosti na rychlosti tohoto počítače"
++msgstr "Může to chvíli trvat v závislosti na rychlosti počítače"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+-msgstr "Skladiště metadat vytvořeno"
++msgstr "Cache s metadaty vytvořena."
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+-msgstr "Odstranit data ze skladiště"
++msgstr "Odstranit data z cache"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Nalézt balíček, který poskytuje danou hodnotu"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+-msgstr "Zkontrolovat dostupné aktualizace balíčků"
++msgstr "Zkontrolovat dostupnost aktualizací pro balíčky"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+-msgstr "Nalézt detaily balíčku pro daný řetězec"
++msgstr "Vyhledat detaily balíčku pro zadaný řetězec"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+-msgstr "Prohledávají se balíčky: "
++msgstr "Prohledávání balíčků: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Aktualizovat balíčky a brát v úvahu zastaralé"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+-msgstr "Uspořádává se průběh aktualizace"
++msgstr "Příprava průběhu upgrade"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instalovat lokální RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+-msgstr "Uspořádává se zpracování lokálního balíčku"
++msgstr "Příprava zpracování lokálního balíčku"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+-msgstr "Určit který balíček poskytuje danou závislost"
++msgstr "Zjistit, který balíček poskytuje danou závislost"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+-msgstr "Prohledávají se balíčky kvůli závislostem:"
++msgstr "Prohledávání balíčků pro vyřešení závislostí:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Spustit interaktivní shell yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+-msgstr "Nastavuje se yum shell"
++msgstr "Příprava yum shellu"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+-msgstr "Zobrazit závislosti balíčku"
++msgstr "Vypsat závislosti balíčku"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+-msgstr "Hledají se závislosti: "
++msgstr "Hledání závislostí: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Zobrazit nastavené repozitáře softwaru"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "povoleno"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "zakázáno"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+-msgstr "Repo-id      : "
++msgstr "Repo-ID      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+-msgstr "Repo-jméno   : "
++msgstr "Repo-název   : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Repo-status  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-revize  : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tagy    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tagy: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+-msgstr "Repo-aktuální: "
++msgstr "Repo-aktual. : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+-msgstr "Repo-bal.    : "
++msgstr "Repo-balíčků : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Repo-velikost: "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+-msgstr "  Aktualizováno: "
++msgstr "Aktualizováno: "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-zrcadla : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Nikdy (poslední: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Okamžitě (naposledy: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekund (naposledy: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Repo-vyprší  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-vyřazeno: "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-zahrnuto: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repo-vyřazeno: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Repo-konfig  : "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+-msgstr "repo id"
++msgstr "ID repozitáře:"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+-msgstr "status"
++msgstr "Stav:"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+-msgstr "jméno repa"
++msgstr "Název repozitáře:"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Zobrazit užitečnou nápovědu"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+-msgstr "Není dostupná nápověda pro %s"
++msgstr "Pro %s není dostupná nápověda"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1904,7 +1991,7 @@ msgstr ""
+ "\n"
+ "aliasy: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1914,115 +2001,163 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+-msgstr "Uspořádává se průběh reinstalace"
++msgstr "Příprava průběhu reinstalace"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Reinstalace balíčku"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+-msgstr "Uspořádává se průběh snížení verze"
++msgstr "Příprava snížení verze"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Snížení verze balíčku"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+-msgstr "Zobrazit verzi pro tento počítač a/nebo dostupné repozitáře."
++msgstr "Zobrazit verzi pro počítač a/nebo dostupné repozitáře."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Verze yum skupin:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Skupina :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Balíčky :"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Nainstalováno:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Nainstalované skupiny:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Dostupné:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Dostupné skupiny:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+-msgstr "Zobrazit nebo používat transakční historii"
++msgstr "Zobrazit nebo používat historii transakcí"
++
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transakce:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Čas startu  :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Čas konce   :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Počet       :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+-msgstr "Neplatný pod-příkaz historie, použijte: %s."
++msgstr "Neplatný subpříkaz historie, použijte: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Nemáte přístup k databázi s historií."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Zkontrolovat problémy v rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "Načíst transakci uloženou v souboru"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "Nebyla zadána žádná uložená transakce."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "načítání transakce z %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+-msgstr ""
++msgstr "Transakce načtena z %s s %s položkami"
+ 
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
+-msgstr ""
++msgstr " Selhaly kontroly Yumu: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "Zámek yumu je obsazen jinou aplikací; čeká se na její ukončení..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr "V aktuálním adresáři není povolen zápis ani čtení, přesouvám se do /"
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+-msgstr ""
++msgstr "Nelze vytvořit soubor se zámkem; končím"
++
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr "Zámek yumu drží jiná aplikace; čeká se na její ukončení..."
+ 
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+-msgstr "Řeší se závislosti"
++msgstr "Řešení závislostí..."
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
++"Transakce byla uložena, znovu-spuštění:\n"
++"yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2032,448 +2167,451 @@ msgstr ""
+ "\n"
+ "Ukončeno na pokyn uživatele."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() bude v následujících verzích yumu odstraněno.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+-msgstr ""
+-"Uspořádává se TransactionSet před tím než bude připravena třída config"
++msgstr "Příprava TransactionSet před tím než bude připravena třída config"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Neplatný tsflag v konfiguračním souboru: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+-msgstr "Hledá se pkgSack pro závislost: %s"
++msgstr "Hledání pkgSack pro závislost: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+-msgstr "Prvek: %s"
++msgstr "Člen: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+-msgstr "%s zkonvertován na instalaci"
++msgstr "%s zkonvertován pro instalaci"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+-msgstr "Přidává se balíček %s v módu %s"
++msgstr "Přidání balíčeku %s v režimu %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+-msgstr "Odstraňuje se balíček %s"
++msgstr "Odstranění balíčku %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s vyžaduje: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s vyžaduje %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+-msgstr "Závazné požadavky již byly prohledány, švindluje se"
++msgstr "Potřebné Require již bylo vyhledáno, švindluje se"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+-msgstr "Závazný požadavek není jméno balíčku. Hledá se: %s"
++msgstr "Potřebné Require není jméno balíčku. Hledání: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Možný poskytovatel: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+-msgstr "Mód je %s pro poskytovatele %s: %s"
++msgstr "Režim %s pro poskytovatele %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+-msgstr "Mód pro bal. poskytující %s: %s"
++msgstr "Režim pro bal. poskytující %s: %s"
+ 
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "Pro vyřešení závislostí se zkouší aktualizace %s"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+-msgstr ""
++msgstr "Není cesta pro aktualizaci %s. Selhání!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+-msgstr "TSINFO: %s balíček požaduje %s označený ke smazání"
++msgstr "TSINFO: balíček %s požaduje %s, který je určen ke smazání"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+-msgstr "TSINFO: Zastarává se %s s %s k vyřešení závislostí."
++msgstr ""
++"TSINFO: Balíček %s je označen za zastaralý balíčkem %s pro vyřešení "
++"závislostí."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+-msgstr "TSINFO: Aktualizuji %s k vyřešení závislostí."
++msgstr "TSINFO: Aktualizace %s pro vyřešení závislostí."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+-msgstr "Nelze nalézt cestu aktualizací pro závislost pro: %s"
++msgstr "Nelze nalézt cestu aktualizací pro závislosti pro: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+-msgstr "Rychlá shoda %s vyžadovaného pro %s"
++msgstr "Rychlá shoda %s vyžadována pro %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s je v poskytujících balíčcích, ale je již nainstalován, odstraňuje se."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+-msgstr "Balíček %s, který může být řešení, má v ts novější verzi."
++msgstr "Balíček %s, který může být řešením, má v transakci novější verzi."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+-msgstr "Balíček %s, který může být řešení, je nainstalován v novější verzi."
++msgstr "Balíček %s, který může být řešením, je nainstalován v novější verzi."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+-msgstr "%s je již v ts, vynechává se"
++msgstr "%s je již v transakci, vynechává se"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+-msgstr "TSINFO: Označuji %s jako aktualizaci %s"
++msgstr "TSINFO: Označení %s jako aktualizaci pro %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+-msgstr "TSINFO: Označuji %s jako instalaci %s"
++msgstr "TSINFO: Označení %s jako instalaci pro %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Úspěch - prázdná transakce"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+-msgstr "Restartuje se smyčka"
++msgstr "Restartování smyčky"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+-msgstr "Proces zpracování závislostí končí"
++msgstr "Proces zpracování závislostí skončil"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Úspěch - závislosti vyřešeny"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+-msgstr "Kontroluji závislosti pro %s"
++msgstr "Kontrola závislostí pro %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+-msgstr "hledá se %s jako požadavek od %s"
++msgstr "hledá se %s jako požadavek pro %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+-msgstr "Spouští se compare_providers() pro %s"
++msgstr "Spuštěno compare_providers() pro %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "lepší architektura v po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s zastarává %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+-"archdist porovnán pro %s k %s na %s\n"
++"archdist porovnal %s vůči %s na %s\n"
+ "  Vítěz: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "společné zdrojové rpm %s a %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "základní balíček %s je nainstalován pro %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "společný prefix %s mezi %s a %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "vyžaduje minimálně: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Vítěz:  %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+-msgstr " Poražený (kým %d): %s"
++msgstr " Poražený (%d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+-msgstr "Nejlepší pořádek: %s"
++msgstr "Nejlepší pořadí: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+-msgstr "Repozitář  %r: Chyba při zpracování konfigurace:  %s"
++msgstr "Repozitář  %r: Chyba při parsování konfigurace:  %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+-msgstr "Repozitáři %r chybí jméno v konfiguraci, používá se id"
++msgstr "Repozitáři %r chybí v konfiguraci jméno, použito id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+-msgstr "zásuvný modul je již inicializován"
++msgstr "zásuvné moduly jsou již inicializovány"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+-msgstr "Načítá se lokální RPMDB"
++msgstr "Načítání lokální RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+-msgstr "Připravuje se pytel balíčků"
++msgstr "Příprava souhrnu balíčků"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+-msgstr "objekt repozitáře pro repo %s postrádá metodu _resetSack\n"
++msgstr "repo objekt pro repozitář %s postrádá metodu _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+-msgstr "proto nemůže toto repo být resetováno.\n"
++msgstr "proto nemůže být tento repozitář resetován.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+-msgstr "Sestavuje se objekt aktualizací"
++msgstr "Sestavování objektů aktualizací"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() bude odstraněn v příští verzi Yumu.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+-msgstr "Získávají se metadata skupin"
++msgstr "Získávání metadata skupin"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+-msgstr "Přidává se skupinový soubor pro repozitář: %s"
++msgstr "Přidání souboru se skupinou pro repozitář: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+-msgstr "Selhalo přidání skupinového souboru pro repozitář: %s - %s"
++msgstr "Selhalo přidání souboru se skupinou pro repozitář: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "V žádném repozitáři nejsou dostupné skupiny"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+-msgstr "Získávají se pkgtags metadata"
++msgstr "Získávání metadat pkgtags"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+-msgstr "Přidávají se tagy z repozitáře: %s"
++msgstr "Přidávání tagů z repozitáře: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Selhalo přidání Pkg Tagů pro repozitář: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+-msgstr "Importuji informace z dodatečného seznamu souborů"
++msgstr "Importování informací z dodatečných seznamů souborů"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Program %s%s%s byl nalezen v balíčku yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+-"Existují nedokončené transakce. Měli byste zvážit možnost nejdříve spustit "
+-"yum-complete-transaction k jejich dokončení."
++"Existují nedokončené transakce. Pro jejich dokončení raději nejprve spusťte "
++"yum-complete-transaction."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+-msgstr ""
++msgstr "--> Hledání nepotřebných závislostí"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+-msgstr ""
++msgstr "Chráněné verze multilib-u: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+-msgstr "Zkuste odstranit \"%s\", který je chráněný"
++msgstr "Pokus o odstranění \"%s\", který je chráněn"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ "\n"
+-"Balíček přeskočen kvůli problémům se závislostmi:"
++"Balíčky přeskočené kvůli problémům se závislostmi:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s z %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+-"** Nalezeny %d pre-existující problémy rpmdb, následuje výstup \"yum "
+-"check\":"
++"** Nalezeny %d existující problémy v rpmdb, následuje výstup \"yum check\":"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Varování: RPMDB byla změněna mimo yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+-msgstr "chybějící požadavek"
++msgstr "chybějící requires"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+-msgstr "konflikt nainstalovaného"
++msgstr "instalační konflikt"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Varování: Během transakce došlo k chybě skriptletu nebo jiné nefatální "
+ "chybě."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transakce nemůže začít:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Nelze spustit transakci."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Selhalo odstranění transakčního souboru %s."
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+-msgstr "%s mělo být nainstalováno, ale není!"
++msgstr "%s by mělo být nainstalováno, ale není!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+-msgstr "%s mělo být odstraněno, ale není!"
++msgstr "%s by mělo být odstraněno, ale není!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Nelze otevřít zámek  %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+-msgstr "Nedá se zkontrolovat, zda je PID %s aktivní."
++msgstr "Nelze zkontrolovat, zda je PID %s aktivní."
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Existující zámek %s: jiná kopie běží s pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Nelze vytvořit zámek na %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2482,103 +2620,95 @@ msgstr ""
+ "Balíček neodpovídá zamýšlenému stahování. Zkuste spustit: yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Nelze zkontrolovat kontrolní součet"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+-msgstr "Balíček neodpovídá kontrolnímu součtu"
++msgstr "Kontrolní součet balíčku nesouhlasí"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+-msgstr "balíček neprošel kontrolním součtem ale skladiště je povoleno pro %s"
++msgstr "kontrolní součet balíčku nesouhlasím, avšak pro %s je povolena cache"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+-msgstr "používá se lokální kopie %s"
++msgstr "použití lokální kopie %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Nedostatek diskového prostoru ve stahovacím adresáři %s\n"
+-"    * volno   %s\n"
+-"    * potřeba %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Hlavička není kompletní."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+-"Hlavička není v lokálním skladišti, ale je povoleno používat pouze "
+-"skladiště. Nemohu stáhnout %s"
++"Hlavička není v lokální cache, avšak nic jiného nelze použít. Nelze stáhnout"
++" %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Veřejný klíč %s není nainstalován"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problém s otevřením balíčku %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Veřejný klíč %s není důvěryhodný"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Balíček %s není podepsán"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+-msgstr "Nemohu odstranit %s"
++msgstr "Nelze odstranit %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s odstraněn"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+-msgstr "Nemohu odstranit %s soubor %s"
++msgstr "Nelze odstranit %s soubor %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s soubor %s odstraněn"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s soubor odstraněn"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s soubor odstraněn"
++msgstr[1] "%d %s soubory odstraněny"
++msgstr[2] "%d %s souborů odstraněno"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+-msgstr "Více než jedna identická shoda v pytli pro %s"
++msgstr "Více než jedna identická shoda v souhrnu pro %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+-msgstr "Nic se neshoduje s %s.%s %s:%s-%s z aktualizace"
++msgstr "Z aktualizace se nic neshoduje s %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2586,320 +2716,340 @@ msgstr ""
+ "searchPackages() bude odstraněn v příští verzi Yumu.                      "
+ "Používejte místo něj searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Prohledává se %d balíčků"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Prohledán %d balíček"
++msgstr[1] "Prohledány %d balíčky"
++msgstr[2] "Prohledáno %d balíčků"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+-msgstr "prohledává se balíček %s"
++msgstr "vyhledávání balíčku %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+-msgstr "hledá se v souborových položkách"
++msgstr "vyhledávání v názvech souborů"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+-msgstr "hledá se v položkách poskytovatelů"
++msgstr "vyhledávání v položkách poskytuje"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+-msgstr "Pro nastavený repozitář nejsou žádná dostupná skupinová data"
++msgstr "Pro aktivní repozitáře nejsou k dispozici žádná data o skupinách"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+-msgstr "Neexistuje skupina pojmenovaná %s"
++msgstr "Neexistuje skupina %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "balíček %s nebyl označen ve skupině %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+-msgstr "Přidává se balíček %s pro skupinu %s"
++msgstr "Přidání balíčku %s ze skupiny %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+-msgstr "Žádný balíček pojmenovaný %s není dostupný pro instalaci"
++msgstr "Pro instalaci není k dispozici žádný balíček s názvem %s"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "Varování: Skupina %s neobsahuje žádné balíčky."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+-msgstr ""
++msgstr "Skupina %s má %u volitelných balíčků, které mohou být nainstalovány."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+-msgstr "Uspořádaný seznam balíčků %s nenalezen v pytli balíčků"
++msgstr "Položka balíčku %s nenalezena v souhrnu balíčků"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+-msgstr "Uspořádaný seznam balíčků %s nenalezen v rpmdb"
++msgstr "Položka balíčku %s nenalezena v rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+-msgstr ""
++msgstr "Neplatný příznak verze z: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+-msgstr "Nebyl nalezen balíček pro %s"
++msgstr "Pro %s nebyl nalezen žádný balíček"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Objekt balíčku nebyl instancí balíčkového objektu"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+-msgstr "Nebylo určeno nic k instalaci"
++msgstr "K instalaci nebylo nic určeno"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+-msgstr "Hledá se virtuální poskytovatel nebo soubor poskytující %s"
++msgstr "Zjišťování virtuálního provide nebo file-provide pro %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+-msgstr "Nenalezena shoda pro argument: %s"
++msgstr "Pro argument nenalezena shoda: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Balíček %s je nainstalován, ale není dostupný"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+-msgstr "Žádné balíčky dostupné pro instalaci"
++msgstr "K instalaci nejsou dostupné žádné balíčky"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Balíček: %s - již je v transakční sadě"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+-msgstr "Balíček %s je zastaralý balíčkem %s, který je již nainstalován"
++msgstr ""
++"Balíček %s je označen za zastaralý balíčkem %s, který je již nainstalován"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+-"Balíček %s je zastaralý balíčkem %s, ale nový balíček nesplňuje závislosti"
++"Balíček %s je označen za zastaralý balíčkem %s, ale není poskytnut pro "
++"vyřešení závislostí"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+-"Balíček %s je zastaralý balíčkem %s, zkouší se místo něj instalovat %s"
++"Balíček %s je označen za zastaralý balíčkem %s, zkouší se místo něj "
++"instalovat %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Balíček %s je již nainstalován a v poslední verzi"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+-msgstr "Balíček odpovídající %s je již nainstalován. Hledají se aktualizace."
++msgstr "Balíček odpovídající %s je již nainstalován. Vyhledání aktualizací."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+-msgstr "Aktualizuje se vše"
++msgstr "Aktualizace všeho"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Neaktualizuje se balíček, který je již zastaralý: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Žádný balíček nevyhovuje aktualizaci: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Balíček je již zastaralý: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Neaktualizuje se balíček, který je zastaralý: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Neaktualizuje se balíček, který jej již aktuální: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nenalezen žádný shodný balíček pro odstranění"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Žádný balíček nevyhovuje odstranění: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+-msgstr "Přeskakuji aktuálně používané jádro: %s"
++msgstr "Aktuálně používané jádro bylo přeskočeno: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+-msgstr "Odstraňuji %s z transakce"
++msgstr "Odstranění %s z transakce"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Nelze otevřít: %s. Přeskakuje se."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+-msgstr "Zkoumá se %s: %s"
++msgstr "Zkoumání %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+-msgstr "Nelze lokálně instalovat deltarpm: %s. Přeskakuje se."
++msgstr "Nelze lokálně nainstalovat deltarpm: %s. Přeskakuje se."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+-msgstr "Nelze přidat balíček %s do transakce. Nekompatibilní architektura: %s"
++msgstr "Do transakce nelze přidat balíček %s. Nekompatibilní architektura: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+-msgstr "Nelze instalovat balíček %s. Je zastaralý nainstalovaným balíčkem  %s"
++msgstr ""
++"Nelze nainstalovat balíček %s. Je zastaralý nainstalovaným balíčkem %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+-"Balíček %s není nainstalován, nelze jej aktualizovat. Spusťte místo toho yum"
+-" install a nainstalujte jej."
++"Balíček %s není nainstalován, nelze jej aktualizovat. Nainstalujte jen "
++"příkazem yum install."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
++"Balíček %s.%s není nainstalován, nelze jej aktualizovat. Nainstalujte jen "
++"příkazem yum install."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+-msgstr "Vynechává se %s"
++msgstr "Vynechání %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+-msgstr "Označuje se %s k instalaci"
++msgstr "Označení %s k instalaci"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+-msgstr "Označuje se %s jako aktualizace %s"
++msgstr "Označení %s jako aktualizace %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+-msgstr "%s: není aktualizací instalovaného balíčku."
++msgstr "%s: není aktualizací nainstalovaného balíčku."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Nelze otevřít soubor: %s. Přeskakuje se."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problém při reinstalaci: žádný shodný balíček k odstranění"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problém při reinstalaci: žádný shodný balíček %s k instalaci"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+-msgstr "Žádné balíčky dostupné ke snížení verze"
++msgstr "Pro snížení verze není dostupný žádný balíček"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Balíček %s má dovoleno vícero instalací, přeskakuje se"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Neexistuje shoda pro dostupný balíček: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+-msgstr "Pouze aktualizace dostupná pro balíček: %s"
++msgstr "Pouze aktualizace je dostupná pro balíček: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Nepodařilo se snížit verzi: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Nezdařila se aktualizace: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+-msgstr ""
++msgstr "Získávání klíče z %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Získání GPG klíče selhalo: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+-msgstr ""
++msgstr "GPG podpis klíčem %s neodpovídá klíči CA pro repozitář: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+-msgstr ""
++msgstr "GPG podpis byl ověřen oproti CA klíči (klíčům)."
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Neplatný GPG klíč pro %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+-msgstr "Zpracování GPG klíče selhalo: klíč nemá žádnou hodnotu %s"
++msgstr "Parsování GPG klíče selhalo: klíč nemá žádnou hodnotu %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2907,61 +3057,68 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"Načtení %s klíče 0x%s:\n"
++" Userid : %s\n"
++" Balíček: %s (%s)\n"
++" Z      : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"Načtení %s klíče 0x%s:\n"
++" Userid: \"%s\"\n"
++" Z     : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG klíč %s (0x%s) je již nainstalován"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Import klíče selhal (kód %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Import klíče proběhl úspěšně"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "Nebyly instalovány žádné klíče"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+-"GPG klíč určený pro repozitář „%s“ je již nainstalován, ale není správný pro tento balíček.\n"
+-"Zkontrolujte, že URL klíče jsou pro repozitář správně nastavena."
++"GPG klíče určené pro repozitář „%s“ jsou již nainstalovány, avšak pro tento balíček nejsou správné.\n"
++"Zkontrolujte, zda URL klíčů jsou pro tento repozitář správně nastaveny."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Import klíče/ů nepomohl, špatný klíč(e)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG klíč %s (0x%s) je již naimportován"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Import klíče selhal"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "Nebyly nainstalovány žádné klíče pro repozitář %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2970,164 +3127,199 @@ msgstr ""
+ "GPG klíče pro repozitář \"%s\" jsou již nainstalovány, ale nejsou správné.\n"
+ "Zkontrolujte že pro repozitář je správně nastaveno URL klíče."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+-msgstr "Nemohu nalézt vhodné zrcadlo"
++msgstr "Nelze nalézt vhodné zrcadlo"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Při stahování balíčků došlo k chybě."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+-msgstr "Oznamte prosím tuto chybu na %s"
++msgstr "Oznamte tuto chybu na %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Chyby testu transakce: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+-msgstr "Nelze vytvořit skladiště: %s "
++msgstr "Nelze nastavit adresář pro cache: %s "
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+-msgstr ""
++msgstr "Závislosti nebyly vyřešeny.  Nevyřešená transakce nebude uložena."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "Nelze uložit transakční soubor %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
++msgstr "Nelze načíst uloženou transakci %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
++msgstr "rpmdb obsahuje jinou verzi než je v uložené transakci, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr " ignorováno, jak bylo žádáno."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr " přerušeno."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+-msgstr ""
++msgstr "nelze nalézt tsflags nebo tsflags není celé číslo."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+-msgstr ""
++msgstr "Nalezen txmbr v neznámém stavu: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+-msgstr ""
++msgstr "Nelze nalézt txmbr: %s ve stavu %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+-msgstr ""
++msgstr "Nelze nalézt txmbr: %s z: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+-msgstr ""
++msgstr "Transakční položky nebo vztahy chybí nebo byla transakce změněna,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+-msgstr ""
++msgstr " ignorováno. Musíte spustit redepsolve!"
++
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s byl již navštíven a nelze jej odstranit."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Zjišťují se závislosti %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s má závislosti %s které byly nainstalovány uživatelem."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s nemá žádné uživatelem nainstalované závislosti."
+ 
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+-msgstr "Zavedeny zásuvné moduly: "
++msgstr "Zavedené moduly: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+-msgstr "Neexistuje zásuvný modul pro: %s"
++msgstr "Neexistuje shoda modulu pro: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+-msgstr "Nezavádí se „%s“ modul, protože je zakázán"
++msgstr "Nezaveden modul „%s“, protože je zakázán"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Modul „%s“ nemůže být importován"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Modul „%s“ neuvádí požadovanou verzi API"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Modul „%s“ požaduje API %s. Podporované API je %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+-msgstr "Zavádí se zásuvný modul „%s“"
++msgstr "Zaveden modul „%s“"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "V prohledávaných cestách jsou dva nebo více modulů se jménem „%s“"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigurační soubor %s nenalezen"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Nelze nalézt konfigurační soubor pro modul %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registrace příkazů není podporována"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+-msgstr "má chybějící požadavky"
++msgstr "má chybějící requires"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "má konflikty v instalaci"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s je duplicitní s %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+-msgstr "%s je zastaralé novějším %s"
++msgstr "%s je označeno za zastaralé balíčkem %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+-msgstr "%s poskytuje %s, ale to nelze nalézt"
++msgstr "%s poskytuje %s, avšak nelze to nalézt"
+ 
+ #: ../yum/rpmtrans.py:80
+ msgid "Repackaging"
+-msgstr "Přebaluje se"
++msgstr "Přebalení"
++
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Nedostatek místa v cílovém adresáři pro stahování: %s\n"
++"    * volné místo %s\n"
++"    * je potřeba %s"
+ 
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+@@ -3141,11 +3333,11 @@ msgstr "Pro RPM %s selhala kontrola md5"
+ 
+ #: ../rpmUtils/oldUtils.py:151
+ msgid "Could not open RPM database for reading. Perhaps it is already in use?"
+-msgstr "Nelze otevřít databázi RPM pro čtení. Možná je již používána?"
++msgstr "Nelze otevřít RPM databázi pro čtení. Možná je právě používána?"
+ 
+ #: ../rpmUtils/oldUtils.py:183
+ msgid "Got an empty Header, something has gone wrong"
+-msgstr "Vrátila se prázdná hlavička. Něco se stalo špatně."
++msgstr "Získána prázdná hlavička. Něco je špatně."
+ 
+ #: ../rpmUtils/oldUtils.py:253 ../rpmUtils/oldUtils.py:260
+ #: ../rpmUtils/oldUtils.py:263 ../rpmUtils/oldUtils.py:266
+diff --git a/po/da.po b/po/da.po
+index a7202e2..d02f3e5 100644
+--- a/po/da.po
++++ b/po/da.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Kris Thomsen <lakristho at gmail.com>, 2011
++# Translators:
++# Kris Thomsen <lakristho at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Danish (http://www.transifex.net/projects/p/yum/team/da/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: da\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Opdaterer"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Sletter"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installerer"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Overflødiggjort"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Opdateret"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Slettet"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installeret"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Ingen header - meget mystisk"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Genpakning"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Error: ugyldig uddatastatus: %s for %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Slettet: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Fjerner"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Oprydning af"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Kommandoen \"%s\" er allerede defineret"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Indstiller pakkearkiver"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Læser pakkearkiv for metadata fra lokale filer"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Konfigurationsfejl: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Fejl i indstilling: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installeret: %s-%s på %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Bygget    : %s på %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Indsendt: %s på %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Du skal angive en kommando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Ingen sådan kommando: %s. Brug %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Behov for diskplads:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Mindst %dMB mere plads er krævet på filsystemet %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Mindst %dMB mere plads er krævet på filsystemet %s.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +143,60 @@ msgstr ""
+ "Fejlopsummering\n"
+ "---------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Forsøger at udføre overførslen, men der intet at udføre. Afslutter."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Afslutter efter brugerens ønske"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Henter pakker:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Fejl ved hentning af pakker:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "FEJL Du skal opdatere RPM for at håndtere:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM skal opdateres"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Rapportér venligst denne fejl i %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Kører overførselstest"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Fejl i overførselskontrol:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Overførselstest afsluttet uden fejl"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Kører overførsel"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,236 +204,259 @@ msgstr ""
+ "Afviser automatisk importering af nøgler ved baggrundskørsel.\n"
+ "Brug \"-y\" til at overskrive."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Du mente måske: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Pakke(r) %s%s%s tilgængelig(e), men ikke installeret."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Pakken %s%s%s er ikke tilgængelig."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Pakke(r) til installation"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Intet at udføre"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pakker markeret til opdatering"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Ingen pakker markeret til opdatering"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pakker er markeret til distributionssynkronisering"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Ingen pakker er markeret til distributionssynkronisering"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pakker markeret til fjernelse"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Ingen pakker markeret til fjernelse"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Pakke(r) til nedgradering"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (fra %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Installeret pakke %s%s%s%s er ikke tilgængelig."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Pakke(r) til geninstallation"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Ingen pakker angivet"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Pakke(r) til installation"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Matchede: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Advarsel: Ingen match blev fundet for: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Ingen match fundet"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Ingen pakke fundet for %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Oprydder pakkearkiver: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Oprydning af alt"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Oprydning af headerfiler"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Oprydning af pakker"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Oprydning af xml-metadata"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Oprydning af mellemlager til database"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Oprydning af udløbet mellemlager til metadata"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Rydder mellemlagret rpmdb-data op"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Oprydning af udvidelsesmoduler"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Installerede grupper:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Tilgængelige grupper:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Afsluttet"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Advarsel: Gruppen %s findes ikke."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Ingen pakke i nogen de efterspurgte grupper, er tilgængelige til "
+ "installation eller opdatering"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakke(r) til installation"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Gruppen %s findes ikke"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Ingen pakker at fjerne fra grupper"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pakke(r) til fjernelse"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Pakken %s er allerede installeret, springer over"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Ser bort fra ikke-kompatibel pakke %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Ingen andre %s er installeret, tilføjer til liste til mulig installation"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Indstillinger til udvidelsesmodul"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Kommandoliniefejl: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -441,285 +467,289 @@ msgstr ""
+ "\n"
+ "%s: %s indstilling kræver et argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color tager en af: auto, altid, aldrig"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "vis denne hjælpemeddelse og afslut"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "vær fejltolerant"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "kør udelukkende fra systemmellemlager, opdatér ikke mellemlager"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "placering af konfigurationsfil"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maksimal ventetid på kommando"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "debug-visningsniveau"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "vis gengangere, i pakkearkiver, i list/search-kommandoer"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "fejlvisningsniveau"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "outputniveau for fejlsøgning af rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "stille operation"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "uddybende operation"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "svar ja til alle spørgsmål"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "vis Yum-version og afslut"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "sæt installationsroden"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "aktivér en eller flere pakkearkiver (wildcards er tilladt)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "deaktivér en eller flere pakkearkiver (wildcards er tilladt)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "ekskludér pakke(r) med navn eller klump"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "deaktivér ekskludering fra main, for et pakkearkiv eller for alt"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "aktivér overflødiggørelse under behandling af opdateringer"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "deaktivér Yum-udvidelsesmoduler"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "deaktivér kontrol af gpg-signaturer"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "deaktivér udvidelsesmoduler ved navn"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "aktivér udvidelsesmoduler ved navn"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "spring pakker med afhængighedsproblemer over"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontrollér om farve er brugt"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "indstil værdi for $releaseever i yum-konfiguration og pakkearkivsfiler"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "indstil arbitrærkonfiguration og indstillinger for pakkearkiv"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Maj"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Aug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dec"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Prøver et andet filspejl."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Navn        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arkitektur        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Version     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Udgivelse     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Størrelse        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Kilde       : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Fra pakkearkiv   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Tilføjer   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Tilføjelsestidspunkt  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Bygningstidspunkt   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Installationstid: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installeret af: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Ændret af  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Beskrivelse     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licens     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Beskrivelse : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "j"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ja"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nej"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Er dette o.k? [j/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -728,154 +758,156 @@ msgstr ""
+ "\n"
+ "Gruppe: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Gruppeid: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Beskrivelse: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Tvungne pakker:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Standardpakker:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Valgfrie pakker:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Afhængige pakker:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "pakke: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Ingen afhængigheder for denne pakke"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  afhængighed: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Ufuldendt afhængighed"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Matchet af:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licens      : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Filnavn     : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Andre       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Der opstod en fejl i beregning af den totale nedhentningsstørrelse"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Total størrelse: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Total nedhentningsstørrelse: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Installationsstørrelse: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Der opstod en fejl ved udregning af installeret størrelse"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Geninstallerer"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Nedgraderer"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Installerer til afhængigheder"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Opdaterer til afhængigheder"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Fjerner for afhængigheder"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Sprunget over (afhængighedsproblemer)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Ikke installeret"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Pakke"
++msgid_plural "Packages"
++msgstr[0] "Pakke"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arkitektur"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Version"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Pakkearkiv"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Størrelse"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     erstatter  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -886,57 +918,52 @@ msgstr ""
+ "Overførselsopsummering\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Installér   %5.5s pakke(r)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Installér"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Opgradér   %5.5s pakke(r)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Fjern    %5.5s pakke(r)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Geninstallér %5.5s pakke(r)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Geninstallér"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Nedgradér %5.5s pakke(r)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Nedgradér"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Fjernet"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Afhængighed fjernet"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Afhængighed installeret"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Afhængighed opdateret"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Erstattet"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Fejlede"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "to"
+ 
+@@ -944,7 +971,7 @@ msgstr "to"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -955,364 +982,416 @@ msgstr ""
+ " Nuværende hentning afbrudt, %safbryd (ctrl-c) igen%s indenfor %s%s%s sekunder\n"
+ "for at afslutte.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "afsluttet af bruger"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Ialt"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<ikke angivet>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "System"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Dårlige overførsels-id'er eller pakker givet"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Log bruger ind"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Dato og tid"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Handling(er)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Ændret"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Intet overførsels-id givet"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Dårlig overførsels-id givet"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Det angivne overførsels-id ikke fundet"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Fandt mere end ét overførsels-id!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Intet overførsels-id eller pakke givet"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Nedgraderet"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Ældre"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Nyere"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Overførsels-id:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Starttidspunkt     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Start rpmdb    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Sluttidspunkt       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Slut rpmdb      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Bruger           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Returkode    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Afbrudt"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Fejl:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Succes"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Kommandolinje   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Yderligere ikke-standard information gemt: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Overførsel udført med"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Pakker ændret:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Pakker sprunget over:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problemer med rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptletoutput:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Fejl:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Installér"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Installér afhængigheder"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Forælder"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Slet"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Geninstallér"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Nedgradér"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Opdatér"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Tid"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Sidste dag"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Sidste uge"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Seneste to uger"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Seneste tre måneder"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Seneste seks måneder"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Sidste år"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Over et år siden"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Ingen overførsel %s fundet"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Overførsels-id:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Yderligere historikinformation tilgængelig:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Intet yderligere data fundet med dette navn"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installeret"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "slettet"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "geninstalleret"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "opdateret"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "overflødiggjort"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Kører overførselskontrol"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Genstarter afhængighedssøgning med nye ændringer."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Afsluttede afhængighedssøgningen"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Behandler afhængighed: %s for pakken: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Beholder pakke: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Ikke fundet afhængighed: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Pakke: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1321,7 +1400,7 @@ msgstr ""
+ "\n"
+ "    Kræver: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1330,7 +1409,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1339,7 +1418,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1348,85 +1427,85 @@ msgstr ""
+ "        Ikke fundet"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Opdateret af"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Nedgraderet af"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Forældet af"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Tilgængelig"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Behandler konflikt: %s konflikter med %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Udfylder overførselssættet med valgte pakker. Vent venligst."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Henter headerfil for %s til at indsætte i overførselssættet."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Kører"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Sover"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Ikke forstyrbar"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Fundet/stoppet"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Ukendt"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Det andet program er: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Det andet program er: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Hukommelse : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Startede: %s - %s siden"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Status  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1436,7 +1515,7 @@ msgstr ""
+ "\n"
+ "Afslutter efter brugerens ønske"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1446,7 +1525,7 @@ msgstr ""
+ "\n"
+ "Afslutter på ødelagt tunnel"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1457,7 +1536,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1465,36 +1544,36 @@ msgstr ""
+ "Et andet program holder i øjeblikket yum-låsen; afslutter som konfigureret "
+ "af exit_on_llock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Fejl med PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum-fejl: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Fejl: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Du kunne prøve at bruge --skip-broken til at arbejde udenom problemet"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Du kan prøve at køre: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Ukendt(e) fejl: Returkode: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1502,7 +1581,7 @@ msgstr ""
+ "\n"
+ "Afhængigheder løst"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Afsluttet!"
+ 
+@@ -1514,7 +1593,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Du skal være root for at udføre denne kommando."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1544,53 +1623,53 @@ msgstr ""
+ "\n"
+ "For mere information, kan du kontakte din distribution eller pakkeudbyder.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Fejl: En liste med pakker behøves af %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Fejl: Behøver noget at matche med"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Fejl: Behøver en gruppe eller liste af grupper"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Fejl: clean behøver en indstilling: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Fejl: ugyldigt clean-argument: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Ingen argumenter til skal"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Filnavn tilpasset skal: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Filen %s givet som argument til skal findes ikke."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Fejl: mere end en fil angivet som argument til skal."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1600,307 +1679,300 @@ msgstr ""
+ " Kør \"yum repolist all\" for at se de pakkearkiver du har.\n"
+ " Du kan aktivere pakkearkiver med yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKKE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Installerer en eller flere pakker på systemet"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Opsætning af installationsprocessen"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKKE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Opdaterer en eller flere pakker på systemet"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Opsætning af opdateringsprocessen"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Synkronisér installerede pakker til de senest tilgængelige versioner"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Indstiller distributionssynkroniseringsproces"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Vis detaljer om en pakke eller en gruppe af pakker"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Installerede pakker"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Tilgængelige pakker"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Ekstra pakker"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Opdaterede pakker"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Overflødiggør pakker"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Pakker som er tilføjet for nyligt"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Ingen matchende pakker til liste"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Viser en pakke eller en gruppe af pakker"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Fjern en eller flere pakker fra dit system"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Opsætning af fjerningsprocessen"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Opsætning af gruppeprocessen"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Ingen grupper, på hvilke der køres en kommando"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Vis tilgængelige pakkegrupper"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Installér alle pakkerne i en gruppe på dit system"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Fjerner alle pakkerne i en gruppe fra dit system"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Vis informationer om en pakkegruppe"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Opretter mellemlager for metadata"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Opretter mellemlagerfiler til alle metadatafiler."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Dette kan tage et stykke tid, afhængigt af hastigheden op denne computer"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Mellemlager for metadata oprettet"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Sletter data fra cachen"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Finder pakker som leverer en given værdi"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Kontrol af tilgængelige pakkeopdateringer"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Søger efter en given streng i pakkeinformationerne"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Søger i pakkerne: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Opdaterer pakker, tager hensyn til overflødiggjorte pakker"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Opsætning af opgraderingsprocessen"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Installer en lokal RPM-fil"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Opsætning af lokalpakkeprocessen"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Bestem hvilken pakke som leverer en bestemt afhængighed"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Søger efter afhængighed i pakkerne:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Kør en interaktiv Yum-skal"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Opsætning af Yum-skal"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Viser en pakkes afhængigheder"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Finder afhængigheder: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Viser de konfigurerede pakkearkiver"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "aktiveret"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "deaktiveret"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Pakkearkivs-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Pakkearkivnavn    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Pakkearkivstatus  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Pakkearkivsversion: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Pakkearkivflag    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Kildedistroflag: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Pakkearkiv opdateret : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Pakkearkivpakker    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Pakkearkivstørrelse    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Pakkearkivbaseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Pakkearkivsmetahenvisning: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Opdateret    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Pakkearkivspejle: "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Aldrig (senest: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Med det samme (senest: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekund(er) (senest: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Pakkearkiv udløber  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Pakkearkiv ekskluderer : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Pakkearkiv inkluderer : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Pakkearkiv ekskluderet: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "kildeid"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "kildenavn"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Viser hjælp om brugen af en kommando"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Ingen tilgængelig hjælp til %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1910,7 +1982,7 @@ msgstr ""
+ "\n"
+ "aliaser: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1920,85 +1992,125 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Opsætning af geninstallationsprocessen"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "geninstallér en pakke"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Opsætning af nedgraderingsprocessen"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "nedgradér en pakke"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Vis en version for maskinen og/eller tilgængelige pakkearkiver."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum versiongrupper:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Gruppe   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Pakker:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installeret:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Gruppe-Installeret"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Tilgængelige:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Gruppe-Tilgængelig:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Vis eller brug overførselshistorik"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Ugyldig underkommando for historik, brug: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Du har ikke adgang til historikdatabasen."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Kontrollér for problemer i rpmdb'en"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -2009,26 +2121,32 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "Yum er låst af et andet program, venter på at den afslutter..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr "Yum er låst af et andet program, venter på at den afslutter..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Løser afhængigheder"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2038,74 +2156,74 @@ msgstr ""
+ "\n"
+ "Afslutter efter brugerens ønske."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() vil blive fjernet i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Opsætning af TransactionSets før config-klassen er sat op"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Invalid tsflag i konfigurationsfilen: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Søger i pkgSack for afhængigheden: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Medlem: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s konverteret til installation"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Tilføjer pakke %s i mode %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Fjerner pakke %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s behøver: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s kræver %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Afhængighed fundet tidligere, snyder"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Afhængighed er ikke et pakkenavn. Søger efter: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Mulig udbyder: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Tilstand er %s for udbyder af %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Tilstand for pakke som leverer %s: %s"
+@@ -2113,114 +2231,114 @@ msgstr "Tilstand for pakke som leverer %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s pakker som behøver %s markeret til sletning"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Overflødiggør %s med %s for at finde afhængighed."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Opdaterer %s for at opfylde afhængighed."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Kan ikke finde en opdateringsvej for afhængigheden for: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Hurtigmatchede %s som afhængighed for %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s er i udbudte pakker, men er allerede installeret, fjerner."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Mulig løsningspakke %s har en nyere udgave i ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Mulig løsningspakke %s har en nyere udgave installeret."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s er allerede i ts, springer den over"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Markerer %s som en opdatering for %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Markerer %s til installerer for %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Succes -- tom overførsel"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Genstarter løkke"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Afhængighedsproces afslutter"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Succes - afhængigheder løst"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Kontrollerer afhængigheder for %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "søger efter %s som afhængighed for %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Kører compare_providers() for %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "bedre arkitektur i po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s overflødigør %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2229,142 +2347,142 @@ msgstr ""
+ "arkitekturdistribution sammenligner %s med %s på %s\n"
+ "  Vinder: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "normal kilde-RPM %s og %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "basepakke %s er installeret for %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "normal præfiks af %s mellem %s og %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "kræver minimalt: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Vinder: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Taber(med %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Bedste orden: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Pakkearkiv %r: Fejl under læsning af konfiguration: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Pakkearkiv %r mangler navn i konfigurationen, bruger id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "udvidelsesmoduler er allerede initieret"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Læser lokal RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Opsætning af pakkelister"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "kildeobjekt for kilde %s mangler en _resetSack-metode\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "derfor kan dette pakkearkiv ikke blive nulstillet.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Bygger opdateringsobjekt"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() vil forsvinde i en fremtidig version af Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Henter gruppemetadata"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Tilfører gruppefil fra pakkearkiv: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Tilføjelse af gruppefil fejlede for følgende pakkearkiv: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Ingen tilgængelige grupper i noget pakkearkiv"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Henter metadata for pakkemærker"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Tilføjer mærker fra pakkearkiv: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Kunne ikke tilføje pakkemærker for pakkearkiv: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importerer yderligere information om filliste"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Programmet %s%s%s er fundet i yum-utils-pakken."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2372,21 +2490,21 @@ msgstr ""
+ "Der er uafsluttede overførsler tilbage. Du bør overveje at køre yum-"
+ "complete-transaction først for at afslutte dem."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Prøver at fjerne \"%s\" som er beskyttet"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2394,89 +2512,92 @@ msgstr ""
+ "\n"
+ "Pakker sprunget over på grund af problemer med afhængigheder:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s fra %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Fandt %d før-eksisterende rpmdb-problem(er), \"yum check\" giver "
+ "følgende:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Advarsel: RPMDB er ændret udenfor yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "manglende afhængigheder"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "installeret konflikt"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Advarsel: skriptlet eller andre ikke-fatale fejl opstod under overførslen."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Overførsel kunne ikke starte:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Kunne ikke køre overførsel."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Kunne ikke slette transaktionsfilen %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s skulle være blevet installeret, men det blev den ikke!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s skulle være blevet fjernet, men det blev den ikke!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Kunne ikke åbne lås %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Kunne ikke kontrollere om PID %s er aktiv"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Lås fundet %s: en anden kopi kører som PID %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Kunne ikke oprette lås på %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2485,40 +2606,29 @@ msgstr ""
+ "Pakke matcher ikke den tænkte nedhentning. Forslag: kør yum --enablerepo=%s "
+ "clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Kunne ikke udføre checksum"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Pakken matcher ikke checksum"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "pakken fejlede checksum, men mellemlagring er aktiveret for %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "bruger lokal kopi af %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Ikke plads nok i nedhentningskataloget %s\n"
+-"    * fri     %s\n"
+-"    * behøvet %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Headerfil er ikke komplet."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2526,62 +2636,64 @@ msgstr ""
+ "Headerfil er ikke i lokal cache og kun-caching-tilstand er aktiveret. Kan "
+ "ikke hente %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Offentlig nøgle for %s er ikke installeret"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Kunne ikke åbne pakke %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Offentlig nøgle for %s er ikke sikker"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Pakken %s er ikke signeret"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Kan ikke fjerne %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s fjernet"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Kan ikke slette %s filen %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s filen %s er slettet"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s filer slettet"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Mere end et identisk match i liste for %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ingen opdateringer matcher %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2589,121 +2701,123 @@ msgstr ""
+ "searchPackages() vil forsvinde i en fremtidig version af Yum."
+ "                      Brug searchGenerator() istedet. \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Genemsøger %d pakker"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "gennemsøger pakke %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "gennemsøger filopslag"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "søger efter afhængigheder"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Ingen tilgængelige gruppedata i konfigurerede pakkearkiver"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Gruppen %s findes ikke"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "pakken %s var ikke markeret i gruppen %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Tilføjer pakken %s fra gruppen %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Pakken %s er ikke tilgængelig til installation"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Pakken %s kunne ikke findes i pakkeliste"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Pakkepar %s kunne ikke findes i rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Ingen pakke fundet for %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Pakkeobjektet er ikke en pakkeobjektinstans"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Der er intet angivet til installation"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Kontrollerer for virtueludbyder eller filudbyder for %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Ingen match for argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Pakken %s installeret og ikke tilgængelig"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Ingen pakke(r) er tilgængelig(e) til installation"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Pakken: %s  - allerede i overførselssættet"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Pakke %s er overflødiggjort af %s, som allerede er installeret"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2711,97 +2825,103 @@ msgid ""
+ msgstr ""
+ "Pakke %s er forældret af %s, men forældet pakke tilbyder ikke afhængigheder"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Pakke %s er overflødiggjort af %s, prøver at installere %s istedet"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Pakke %s er allerede installeret i den nyeste version"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Pakken som matcher %s er allerede installeret. Søger efter opdatering."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Opdaterer alt"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ "Ingen opdatering af pakke som allerede er overflødiggjort: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Pakke er allerede overflødiggjort: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Opdaterer ikke pakke som er blevet overflødiggjort: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "Ingen opdatering af pakke som allerede er overflødiggjort: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Ingen pakker fundet til fjernelse"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Lader være med at køre kerne: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Fjerner %s fra overførslen"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Kan ikke åbne: %s. Springer over."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Undersøger %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Kan ikke lokalinstallere deltarpm: %s. Springer over."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Kan ikke tilføje pakke %s til overførsel. Ikke en kompatibel arkitektur: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "Kan ikke installere pakke %s. Den er forældet af installeret pakke %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2810,102 +2930,107 @@ msgstr ""
+ "Pakken %s er ikke installeret, så den kan ikke opdateres. Kør yum install "
+ "for at installere den istedet."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Ekskluderer %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Markerer %s til installation"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Markerer %s som en opdatering til %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s kan ikke opdatere installeret pakke."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Kan ikke åbne fil: %s. Springer over."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problem med geninstallation, ingen pakke fundet til at blive fjernet"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problem med geninstallation: ingen pakke %s fundet til at installere"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Ingen pakke(r) er tilgængelig(e) til nedgradering"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Pakke %s er tilladt at have flere installationer, springer over"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ingen match for tilgængelig pakke: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Opgradér kun tilgængelig på pakke: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Kunne ikke opgradere: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Hentning af GPG-nøglen mislykkedes: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Ugyldig GPG-nøgle fra %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Tolkning af GPG-nøgle mislykkedes: nøgle har ikke nogen værdi %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2914,7 +3039,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2922,25 +3047,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG-nøgle på %s (0x%s) er allerede installeret"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Importering af nøgle mislykkedes (kode %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Nøglen blev importet med succes"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2949,25 +3074,25 @@ msgstr ""
+ "GPG-nøglen er vist for \"%s\" pakkearkivet er allerede installeret, men den er ikke korrekt for denne pakke.\n"
+ "Kontrollér at konfigurationen af nøgle-URL'er er korrekt for denne kilde."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Importering af nøgle(r) hjalp ikke, forkerte nøgle(r)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG-nøgle på %s (0x%s) er allerede importeret"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Importering af nøgle mislykkedes"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2976,159 +3101,183 @@ msgstr ""
+ "GPG-nøglen listet for pakkearkivet \"%s\" er allerede installeret, men de er ikke korrekte.\n"
+ "Kontrollér at de korrekte nøgle-url'er er konfigureret for dette pakkearkiv."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Kunne ikke finde et passende filspejl."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Fejl blev fundet under hentning af pakker."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Rapportér venligst denne fejl på %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Fejl i testoverførslen: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Kunne ikke sætte mellemlagermappe: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Indlæste udvidelsesmoduler: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Intet udvidelsesmodul til: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Indlæser ikke \"%s\" udvidelsesmodul, fordi det er deaktiveret"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Udvidelsesmodul \"%s\" kan ikke importeres"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Udvidelsesmodul \"%s\" angiver ikke hvilken API-version der er påkrævet"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Udvidelsesmodul \"%s\" krævet API %s. Understøttet API er %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Indlæser \"%s\" udvidelsesmodul"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "To eller flere udvidelsesmoduler med navnet \"%s\" er fundet i søgestien for"
+ " udvidelsesmoduler"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigurationsfilen %s er ikke fundet"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Kunne ikke finde konfigurationsfilen til udvidelsesmodul: %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registrering af komandoer er ikke understøttet"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "har manglende afhængigheder af"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "har installerede konflikter"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s er en dublet af %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s er forældet af %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s giver %s men kan ikke findes"
+@@ -3137,6 +3286,17 @@ msgstr "%s giver %s men kan ikke findes"
+ msgid "Repackaging"
+ msgstr "Genpakning"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Ikke plads nok i nedhentningskataloget %s\n"
++"    * fri     %s\n"
++"    * behøvet %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/de.po b/po/de.po
+index fa39cb0..5eb1c85 100644
+--- a/po/de.po
++++ b/po/de.po
+@@ -2,15 +2,17 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Laurin  <lineak at fedoraproject.org>, 2011
+-# Vinzenz Vietzke <vinz at fedoraproject.org>, 2011
+-# Hendrik Richter <hendrikr at gnome.org>, 2011
++# Translators:
++# Fabian Affolter <fab at fedoraproject.org>, 2011.
++# Hendrik Richter <hendrikr at gnome.org>, 2011.
++# Laurin  <lineak at fedoraproject.org>, 2011.
++# Vinzenz Vietzke <vinz at fedoraproject.org>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: German (http://www.transifex.net/projects/p/yum/team/de/)\n"
+ "MIME-Version: 1.0\n"
+@@ -19,124 +21,126 @@ msgstr ""
+ "Language: de\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Aktualisieren"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Löschen"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installieren"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Veraltet"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Aktualisiert"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Gelöscht"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installiert"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Kein Header - huh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Neu verpacken"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Fehler: Ungültiger Ausgabe-Zustand: %s für %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Gelöscht: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Entfernen"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Aufräumen"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Befehl \"%s\" ist bereits definiert"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Repositories werden eingerichtet"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Lese Repository-Metadaten aus lokalen Dateien ein"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Konfigurationsfehler: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Optionenfehler: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installiert: %s-%s am %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Gebaut    : %s am %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Übermittelt: %s am %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Sie müssen irgendeinen Befehl eingeben"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Kein solcher Befehl: %s. Bitte %s --help verwenden."
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Festplattenplatz-Anforderungen:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
+ "  Mindestens %dMB zusätzlicher Speicherplatz wird auf dem Dateisystem %s "
+ "benötigt.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -144,61 +148,61 @@ msgstr ""
+ "Fehler-Zusammenfassung\n"
+ "----------------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Versuche Transaktion auszuführen, aber es ist nichts zu tun. Beende."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Beende nach Befehl des Benutzers"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Lade Pakete herunter:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Fehler beim Herunterladen der Pakete:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ "FEHLER Sie müssen RPM aktualisieren, damit es mit Folgendem umgehen kann:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM muss aktualisiert werden"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Bitte melden Sie diesen Fehler unter %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Führe Verarbeitungstest durch"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Prüffehler bei Verarbeitung:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Verarbeitungstest erfolgreich"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Führe Verarbeitung durch"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -206,237 +210,260 @@ msgstr ""
+ "Verweigere automatischen Import der Schlüssel, wenn unbeaufsichtigt ausgeführt.\n"
+ "Benutze \"-y\" zum Überschreiben."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Meinten Sie vielleicht:"
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Paket(e) %s%s%s verfügbar, aber nicht installiert."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Kein Paket %s%s%s verfügbar."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paket(e) zum Installieren"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nichts zu tun"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d Pakete zur Aktualisierung markiert"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Keine Pakete für die Aktualisierung markiert"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d Pakete für die Entfernung markiert"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Keine Pakete für die Entfernung markiert"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paket(e) zum Downgrade"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (von %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Installiertes Paket %s%s%s%s nicht verfügbar."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paket(e) zum Neuinstallieren"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Keine Pakete bereitgestellt"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paket(e) zum Installieren"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Treffer: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Warnung: Keine Übereinstimmung gefunden für: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Keine Übereinstimmungen gefunden"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Kein Paket gefunden für %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Räume Repos auf:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Räume alles auf"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Räume Header auf"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Räume Pakete auf"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Räume XML-Metadaten auf"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Räume Datenbank-Speicher auf"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Räume Metadaten für abgelaufene Caches auf"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Räume Plugins auf"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Installierte Gruppen:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Verfügbare Gruppen:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Fertig"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Warnung: Gruppe %s existiert nicht."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Keine Pakete in irgendeiner Gruppe verfügbar zum Installieren oder "
+ "Aktualisieren"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Paket(e) zum Installieren"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Es existiert keine Gruppe mit dem Namen %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Keine Pakete zum Entfernen aus dem Gruppen gefunden"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d Paket(e) zum Entfernen"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paket %s ist bereits installiert, überspringen"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Verwerfe nicht vergleichbare Pakete %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Kein anderes %s installiert, füge es zur Liste für eine potentielle "
+ "Installation hinzu"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Plugin-Optionen"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Kommandozeilen-Fehler: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -447,285 +474,289 @@ msgstr ""
+ "\n"
+ "%s: %s Option benötigt ein Argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color kann einen der folgenden Werte haben: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "Hilfeinformation anzeigen und beenden"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "fehlertolerant sein"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ "laufe komplett aus dem Zwischenspeicher, aktualisiere Zwischenspeicher nicht"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "Ort der Konfigurationsdatei"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maximale Befehlswartezeit"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "Debugging-Ausgabe-Stufe"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "Duplikate, in Repos und in Listen/Suchen-Befehlen, anzeigen"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "Fehler-Ausgabe-Stufe"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "Stufe der Debugging-Ausgabe für rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "Stiller Betrieb"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "Wortreicher Betrieb"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "Beantwortet alle Fragen mit 'ja'"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "Yum-Version anzeigen und Programm beenden"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "Wurzel-Installationsverzeichnis setzen"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "aktiviere ein oder mehrere Repositories (Wildcards erlaubt)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "deaktiviere ein oder mehrere Repositories (Wildcards erlaubt)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "schliesse Paket(e) nach Namen oder global aus"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "deaktiviere Ausschluss von 'main', einem Repository oder allem"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "aktiviere veraltetes Verarbeiten während Aktualisierung"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "deaktiviere Yum-Plugins"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "deaktiviere GPG-Signatur-Prüfung"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "deaktiviere Plugins nach Namen"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "aktiviere Plugins nach Namen"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "überspringe Pakete mit Abhängigkeitsauflösungsproblemen"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontrolliert, ob Farbe benutzt wird"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mär"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mai"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Aug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dez"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Versuche anderen Spiegel-Server."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Name       : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Architektur : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Version    : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Ausgabe    : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Größe : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repo        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Aus repo    : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Übermittler  : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Übermittlungszeit  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Build-Zeit  : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Installationszeit: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installiert von: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Verändert von  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Zusammenfassung     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL        : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Lizenz     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Beschreibung : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "j"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ja"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nein"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Ist dies in Ordnung? [j/N] :"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -734,154 +765,156 @@ msgstr ""
+ "\n"
+ "Gruppe: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Gruppen-ID: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Beschreibung: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr "Sprache: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Obligatorische Pakete:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Standard-Pakete:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Optionale Pakete:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Zwangsbedingte Pakete:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "Paket: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Keine Abhängigkeiten für dieses Paket"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  Abhängigkeit: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Nicht erfüllte Abhängigkeit"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Übereinstimmung von:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Lizenz     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Dateiname     : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Andere     : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Fehler beim Berechnen der Gesamtgröße der Downloads"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Gesamtgröße: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Gesamte Downloadgröße: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Installationsgröße: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Fehler beim Berechnen der Installationsgröße"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Neuinstallieren"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Downgrading"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Als Abhängigkeiten installiert"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Aktualisiert für Abhängigkeiten"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Entfernt für Abhängigkeiten"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Übersprungen (Abhängigkeitsprobleme)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Nicht installiert"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Nicht verfügbar"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paket"
++msgid_plural "Packages"
++msgstr[0] "Paket"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arch"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Version"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repository"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Größe"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     ersetzt  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -892,57 +925,52 @@ msgstr ""
+ "Vorgangsübersicht\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "%5.5s Paket(e) installieren\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Installieren"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "%5.5s Paket(e) aktualisieren\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "%5.5s Paket(e) entfernen\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "%5.5s Paket(e) reinstallieren\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Entfernt"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Abhängigkeiten entfernt"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Abhängigkeit installiert"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Abhängigkeit aktualisiert"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Ersetzt       "
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Fehlgeschlagen"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "zwei"
+ 
+@@ -950,7 +978,7 @@ msgstr "zwei"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -961,364 +989,416 @@ msgstr ""
+ " Aktueller Download abgebrochen, %s unterbrechen Sie (Ctrl-c) erneut %s innerhalb %s%s%s Sekunden\n"
+ "zum Beenden.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "Benutzer-Unterbrechung"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Gesamt"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+-msgstr ""
++msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "System"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Schlechte Transaktions-IDs oder Paket(e) angegeben"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "Kommandozeile"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Angemeldeter Benutzer"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Datum und Zeit"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Aktion(en)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Verändert"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Keine Transaktions-ID angegeben"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Schlechte Transaktions-ID angegeben"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Angebene Transaktions-ID nicht gefunden"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Mehr als eine Transaktions-ID gefunden!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Keine Transaktions-ID oder Paket angegeben"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Älter"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Neuer"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transaktions-ID :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Anfangszeit :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Anfang rpmdb    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u Sekunden)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u Minuten)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u Stunden)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u Tage)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Endzeit :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Ende rpmdb      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Benutzer :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Rückgabe-Code    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Erfolg"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Veränderte Pakete:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Übersprungene Pakete:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Fehler:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Installieren"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Löschen"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Zeit"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Gestern"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Letzte Woche"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "In den letzten 2 Wochen"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "In den letzten 3 Monaten"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "In den letzten 6 Monaten"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Letztes Jahr"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Vor über einem Jahr"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Keine Transaktion %s gefunden"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transaktions-ID"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Verfügbare zusätzliche Verlaufsinformationen"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Keine zusätzlichen Daten zu diesem Namen gefunden"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installiert"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "gelöscht"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "reinstalliert"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "aktualisiert"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "veraltet"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Paket %s.%s %s:%s-%s markiert, um %s zu werden"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Führe Transaktionsprüfung aus"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Starte Abhängigkeitsauflösung mit den neuen Änderungen neu."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Abhängigkeitsauflösung beendet"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Verarbeite Abhängigkeiten: %s für Paket: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Behalte Paket: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Nicht aufgelöste Abhängigkeit: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paket: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1327,7 +1407,7 @@ msgstr ""
+ "\n"
+ "    Benötigt: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1336,7 +1416,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1345,7 +1425,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1354,85 +1434,85 @@ msgstr ""
+ "        Nicht gefunden"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Aktualisiert durch"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Überholt durch"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Verfügbar"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Verarbeite Konflikt: %s kollidiert mit %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Fülle Verarbeitungsset mit ausgewählten Paketen. Bitte warten."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Lade Header für %s herunter, um ins Verarbeitungsset zu packen."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Läuft"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Schläft"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Nicht unterbrechbar"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Verfolgt/Gestoppt"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Unbekannt"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Die andere Anwendung ist: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Die andere Anwendung ist: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Speicher : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "  Gestartet: %s - vor %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Status  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1442,7 +1522,7 @@ msgstr ""
+ "\n"
+ "Beende nach Abbruch durch den Benutzer"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1452,7 +1532,7 @@ msgstr ""
+ "\n"
+ "Beende wegen defekter Pipe"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1463,41 +1543,41 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit Fehler: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum Fehler: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Fehler: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Sie können versuchen mit --skip-broken das Problem zu umgehen."
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Unbekannte(r) Fehler: Exit Code: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1505,7 +1585,7 @@ msgstr ""
+ "\n"
+ "Abhängigkeiten aufgelöst"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Komplett!"
+ 
+@@ -1517,7 +1597,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Sie müssen root sein, um diesen Befehl ausführen zu können."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1547,53 +1627,53 @@ msgstr ""
+ "\n"
+ "Für weitere Informationen kontaktieren Sie Ihren Distributions- oder Paket-Anbieter.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Fehler: Muss eine Liste von Paketen an %s übergeben"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Fehler: Brauche einen Begriff, der passt"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Fehler: Brauche eine Gruppe oder eine Liste von Gruppen"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Fehler: Aufräumen benötigt eine Option: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Fehler: Ungültiges Argument für Aufräumen: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Kein Argument für Shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Dateinamen an Shell übergeben: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Datei %s, angegeben als Argument für Shell, existiert nicht."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Fehler: mehr als eine Datei als Argument an die Shell übergeben."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1603,309 +1683,302 @@ msgstr ""
+ "Führen sie \"yum repolist all\" aus, um zu sehen, welche repos sie haben.\n"
+ "Sie können repos mit yum-config-manager --enable <repo> aktivieren"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Installiere ein Paket oder Pakete auf Ihrem System"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Einrichten des Installationsprozess"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Aktualisiere ein Paket oder Pakete auf Ihrem System"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Einrichten des Aktualisierungsprozess"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Installierte Pakete auf die neuesten verfügbaren Versionen synchronisieren"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Zeige Details über ein Paket oder einer Gruppe von Pakete an"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Installierte Pakete"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Verfügbare Pakete"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Extra-Pakete"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Aktualisierte Pakete"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Veraltete Pakete"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Kürzlich hinzugefügte Pakete"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Keine übereinstimmenden Pakete zum Auflisten"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Liste von Paketen oder Gruppen von Paketen"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Entferne ein Paket oder Pakete auf Ihrem System"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Einrichten des Entfernungsprozess"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Einrichten des Gruppenprozess"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Keine Gruppe, auf welcher der Befehl ausgeführt werden kann"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Verfügbare Gruppen anzeigen"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Installiere die Pakete in einer Gruppe auf Ihrem System"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Entferne die Pakete in einer Gruppe von Ihrem System"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Zeigt Details über eine Paket-Gruppe an"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Generiere den Metadaten-Zwischenspeicher"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Erstelle Zwischenspeicherungsdatei für alle Metadaten-Dateien."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Dies kann eine Weile dauern, abhängig von der Geschwindigkeit dieses "
+ "Computers"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metadaten-Zwischenspeicher erstellt"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Entferne gespeicherte Daten"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Suche ein Paket, das den gegebenen Wert bereitstellt"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Überprüfe auf verfügbare Paket-Aktualisierungen"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Suche nach Paket-Details für die gegebene Zeichenkette"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Suche Pakete:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Aktualisiere Pakete, berücksichtige veraltete"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Einrichten des Upgradeprozesses"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Installiere ein lokales RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Einrichten der lokalen Paketverarbeitung"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Bestimme, welche Pakete die gegebenen Abhängigkeiten bereitstellen"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Suche Pakete für Abhängigkeit:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Führe eine interaktive Yum-Shell aus"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Einrichten der Yum-Shell"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Liste von Paket-Abhängigkeiten"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Suche Abhängigkeiten:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Zeige die konfigurierten Software-Repositories an"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "aktiviert"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "deaktiviert"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Repo-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Repo-name    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Repo-status  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-Revision: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tags    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-Distro-Tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo aktualisiert : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Repo-pkgs    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Repo-Größe    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-Metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Aktualisiert    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-Spiegel : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Nie (zuletzt: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s Sekunde(n) (zuletzt: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-ausgeschlossen : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-eingeschlossen : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repo-ausgeschlossen: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "Repo-ID"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "Status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "Repo-Name:"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Zeigt eine kurze Verwendungsinformation"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Keine Hilfe für %s vorhanden"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1915,7 +1988,7 @@ msgstr ""
+ "\n"
+ "Aliase: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1925,86 +1998,126 @@ msgstr ""
+ "\n"
+ "Alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Einrichten des Neuinstallationsprozess"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Installiere Paket neu"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Einrichten des Downgrade-Prozesses"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Downgrade eines Pakets"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ "Eine Version für das System und/oder die verfügbaren Repositories anzeigen."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Gruppe   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Pakete:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installiert:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Gruppe-installiert:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Verfügbar:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Gruppe-verfügbar:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Übertragungsverlauf anzeigen oder verwenden"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -2015,28 +2128,34 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Eine andere Anwendung blockiert momentan yum. Warte, dass sie beendet wird "
+ "..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Löse Abhängigkeiten auf"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2046,75 +2165,75 @@ msgstr ""
+ "\n"
+ "Verlasse nach Abbruch durch den Benutzer."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ "Konfiguriere TransactionSets, bevor die Konfigurationsklasse gestartet ist"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Ungültiges tsflag in Konfigurationsdatei: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Suche pkgSack für Abhängigkeiten: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Mitglied: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s konvertiert zum Installieren"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Füge Paket %s hinzu in Modus %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Entferne Paket %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s benötigt: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s benötigt %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Benötigte Anforderung wurde bereits nachgeschlagen, betrüge"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Benötigte Anforderung ist kein Paket-Name. Schlage nach: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potentieller Anbieter: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Modus ist %s für Anbieter von %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Modus für pkg-Bereitstellung %s: %s"
+@@ -2122,115 +2241,115 @@ msgstr "Modus für pkg-Bereitstellung %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s Paket benötigt %s, welches als gelöscht markiert ist"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Ersetze %s durch %s zum Auflösen der Abhängigkeit."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Aktualisiere %s zum Auflösen der Abhängigkeit."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Kann keinen Aktualisierungspfad finden für Abhängigkeit für: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Übereinstimmung von %s, welche gebraucht wird für %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s ist in einem bereitgestellten Paket, aber bereits installiert, entferne."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Potentielles aufgelöstes Paket %s hat eine neuere Instanz in ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Potentielles aufgelöste Paket %s hat eine neuere Instanz installiert."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s bereits in ts, überspringe dieses"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Markiere %s als Aktualisierung für %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Markiere %s als Installation für %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Erfolg - Leere Transaktion"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Starte Schleife neu"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Abhängigkeitsverarbeitung beendet"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Erfolg - Abhängigkeiten aufgelöst"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Prüfe Abhängigkeiten für %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "Suche nach %s als eine Anforderung von %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Führe compare_providers() aus für %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "bessere Architektur in po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s ersetzt %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2239,142 +2358,142 @@ msgstr ""
+ "archdist verglichen %s zu %s auf %s\n"
+ "  Gewinner: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "Gemeinsames Quellen-RPM %s und %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "Gemeinsamer Prefix von %s zwischen %s und %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Beste Bestellung: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Bei Repository %r fehlt der Name in der Konfiguration, benutze id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "Plugins bereits initialisiert"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Lese lokale RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() wird in zukünftigen Versionen von Yum verschwinden \n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Einrichten des Paket-Behälters"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "Repository-Objekt für Repository %s fehlt eine _resetSack-Methode\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "deshalb kann dieses Repository nicht zurückgesetzt werden.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Baue Aktualisierungsobjekt"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() wird in zukünftigen Versionen von Yum verschwinden .\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Beziehe Gruppen-Metadaten"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Füge Gruppen-Datei von Repository hinzu: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Hinzufügen von Gruppen-Datei für Repository fehlgeschlagen: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Keine Gruppen in irgendeinem Repository verfügbar"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Füge Tags aus dem Repository hinzug: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Konnte Pkg Tags für das Repository nicht hinzufügen: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importiere zusätzlichen Dateilisten-Informationen"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Das Programm %s%s%s wurde in im yum-utils-Paket gefunden."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2383,21 +2502,21 @@ msgstr ""
+ "ziehen, zuerst yum-complete-transaction auszuführen, um diese "
+ "abzuschliessen."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Versuche \"%s\" zu entfernen, welches geschützt ist"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2405,90 +2524,93 @@ msgstr ""
+ "\n"
+ "Pakete übersprungen wegen Abhängigkeitsproblemen:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s von %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** %d bereits bestehende(s) rpmdb Problem(e) gefunden, 'yum check' gibt "
+ "Folgendes aus: "
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Warnung: RPMDB wurde außerhalb von yum verändert."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "Benötigtes fehlt"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "installierter Konflikt"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Warnung: Es sind Scriptlet- oder andere nicht-fatale Fehler bei der "
+ "Verarbeitung aufgetreten."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transaktion konnte nicht starten:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Konnte Transaktion nicht durchführen."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Entfernen der Verarbeitungsdatei %s fehlgeschlagen"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s hätte installiert werden sollen, wurde aber nicht!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s hätte entfernt werden sollen, wurde aber nicht!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Konnte Sperrung %s nicht aufheben: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Unfähig zu prüfen, ob PID %s ist aktiv"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Existierende Blockierung %s: eine andere Kopie läuft mit PID %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Konnte keine Sperrung bei %s erstellen: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2497,42 +2619,31 @@ msgstr ""
+ "Paket stimmt nicht mit dem beabsichtigten Download überein. Vorschlag: "
+ "starten sie yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Konnte Prüfsumme nicht bilden"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paket stimmt nicht mit der Prüfsumme überein"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "Paket bei Prüfsummen-Prüfung durchgefallen, aber Zwischenspeicherung ist "
+ "aktiviert für %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "benutze lokale Kopie von %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Nicht genügend Platz im Download-Verzeichnis %s vorhanden\n"
+-"    * frei     %s\n"
+-"    * benötigt %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Header ist nicht vollständig."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2540,62 +2651,64 @@ msgstr ""
+ "Header ist nicht im lokalen Zwischenspeicher und Nur-Zwischenspeicher-Modus "
+ "aktiviert. Kann %s nicht herunterladen"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Öffentlicher Schlüssel für %s ist nicht installiert"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problem beim Öffnen des Paketes %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Öffentlicher Schlüssel für %s ist nicht vertrauenswürdig"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Paket %s ist nicht unterschrieben"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Kann %s nicht entfernen"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s entfernt"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Kann %s Datei nicht entfernen %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s Datei %s entfernt"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s Dateien entfernt"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Mehr als eine identische Übereinstimmung im Behälter für %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Keine Übereinstimmungen mit  %s.%s %s:%s-%s bei der Aktualisierung"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2603,140 +2716,142 @@ msgstr ""
+ "searchPackages() wird in zukünftigen Versionen von Yum verschwinden."
+ "                      Benutze stattdessen searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Suche %d Pakete"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "Suche Paket %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "Suche in Datei-Einträgen"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "suche in bereitgestellten Einträgen"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Keine Gruppendaten für konfigurierte Repositories verfügbar"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Kein Gruppe mit dem Namen %s vorhanden"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "Paket %s war nicht markiert in Gruppe %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Füge Paket %s aus Gruppe %s hinzu"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Kein Paket mit Namen %s verfügbar zum Installieren"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Paket-Tupel %s kann nicht gefunden werden im Paket-Behälter"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Kein Paket gefunden für %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Paketobjekt war keine Paketobjektinstanz"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nichts angegeben zum Installieren"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ "Überprüfe nach virtueller Bereitstellung oder Datei-Bereitstellung für %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Kein Übereinstimmung für Argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Paket %s installiert und nicht verfügbar"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Kein(e) Paket(e) zum Installieren verfügbar."
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paket: %s - bereits im Transaktionsset"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Paket %s wurde ersetzt durch %s, welches bereits installiert ist"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "Paket %s wurde ersetzt durch %s, versuche stattdessen %s zu installieren."
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Paket %s ist bereits in der neusten Version installiert."
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+@@ -2744,67 +2859,73 @@ msgstr ""
+ "Aktualisierung."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Aktualisiere alles"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Aktualisiere Paket nicht, da es bereits veraltet ist: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paket ist bereits veraltet: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Aktualisiere Paket nicht, da es bereits veraltet ist: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "Aktualisiere Paket nicht, da es bereits aktualisiert ist:  %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Kein Paket stimmt zum Entfernen überein"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Überspringe den laufenden Kernel: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Entferne %s aus der Transaktion."
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Konnte nicht öffnen: %s. Überspringe."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Untersuche %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Konnte deltarpm nicht lokal installieren: %s. Überspringe."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2812,14 +2933,14 @@ msgstr ""
+ "Kann Paket %s nicht zur Transaktion hinzufügen. Keine kompatible "
+ "Architektur: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Konnte Paket %s nicht installieren. Es ist vom installierten Paket %s "
+ "überholt"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2828,104 +2949,109 @@ msgstr ""
+ "Paket %s nicht installiert, kann es nicht aktualisieren. Führen Sie "
+ "stattdessen yum install aus, um es zu installieren."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Schliesse %s aus"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Markiere %s zum Installieren"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Markiere %s als eine Aktualisierung für %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: aktualisiert installierte Pakete nicht."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Kann Datei nicht öffnen: %s. Überspringe."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Probleme beim Neuinstallieren: kein Paket stimmt zum Entfernen überein"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Probleme beim Neuinstallieren: kein Paket %s stimmt zum Installieren überein"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Kein(e) Paket(e) zum Downgrade verfügbar"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Paket %s darf mehrfach installiert sein, überspringe"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Keine Übereinstimmung der verfügbare Pakete: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Nur verfügbare Paket aktualisieren: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG-Schlüssel-Abruf fehlgeschlagen:"
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Ungültiger GPG-Schlüssel von %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG-Schlüssel-Analyse fehlgeschlagen: Schlüssel hat keinen Wert %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2934,7 +3060,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2942,25 +3068,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG-Schlüssel unter %s (0x%s) ist bereits installiert"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Schlüssel-Import fehlgeschlagen (Code %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Schlüssel erfolgreich importiert"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2969,25 +3095,25 @@ msgstr ""
+ "Die aufgelisteten GPG-Schlüssel für das \"%s\"-Repository sind bereits installiert, aber sie sind nicht korrekt für dieses Paket.\n"
+ "Stellen Sie sicher, dass die korrekten Schlüssel-URLs für dieses Repository konfiguriert sind."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Importieren der Schlüssel hat nicht geholfen, falsche Schlüssel?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG-Schlüssel unter %s (0x%s) ist bereits importiert"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Schlüssel-Import fehlgeschlagen"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2997,157 +3123,181 @@ msgstr ""
+ "installiert, aber nicht korrekt. Überprüfen sie, ob die korrekten Schlüssel-"
+ "URLs für dieses Repository konfiguriert sind."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Es kann kein geeigneten Spiegelserver gefunden werden."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Beim Herunterladen der Pakete sind Fehler aufgetreten."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Bitte melden Sie diesen Fehler unter %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Test-Transaktionsfehler: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Konnte Verzeichnis für Zwischenspeicher nicht festlegen: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Geladene Plugins: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Kein Plugin für Argument: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "\"%s\"-Plugin ist deaktiviert"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Plugin \"%s\" kann nicht importiert werden"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Plugin \"%s\" gibt keine benötigte API-Version an"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Plugin \"%s\" benötigt API %s. Unterstützte API ist %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Lade \"%s\"-Plugin"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "Zwei oder mehr Plugins mit dem Namen \"%s\" existieren im Plugin-Suchpfad"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigurationsdatei %s nicht gefunden"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Kann Konfigurationsdatei für Plugin %s nicht finden"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "Registrierung von Befehlen nicht unterstützt"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "benötigt"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "hat installierte Konflikte"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s ist ein Duplikat von %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s ersetzt %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s stellt %s bereit, aber es konnte nicht gefunden werden"
+@@ -3156,6 +3306,17 @@ msgstr "%s stellt %s bereit, aber es konnte nicht gefunden werden"
+ msgid "Repackaging"
+ msgstr "Packe neu"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Nicht genügend Platz im Download-Verzeichnis %s vorhanden\n"
++"    * frei     %s\n"
++"    * benötigt %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/el.po b/po/el.po
+index 8df34e7..0e34593 100644
+--- a/po/el.po
++++ b/po/el.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Dimitris Glezos <glezos at indifex.com>, 2011
++# Translators:
++# Dimitris Glezos <glezos at indifex.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Greek (http://www.transifex.net/projects/p/yum/team/el/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,413 +18,438 @@ msgstr ""
+ "Language: el\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Ενημέρωση"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Διαγραφή"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Εγκατάσταση"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Ενημερώθηκε"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Διαγράφηκε"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Εγκαταστάθηκε"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Διαγράφηκε:%s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Γίνεται αφαίρεση"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -431,438 +457,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -870,57 +902,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -928,7 +955,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -936,484 +963,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1421,47 +1500,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1473,7 +1552,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1490,451 +1569,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1945,100 +2057,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2046,774 +2164,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2822,7 +2950,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2830,207 +2958,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3039,6 +3191,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/en_GB.po b/po/en_GB.po
+index 0f3c750..f42b3bd 100644
+--- a/po/en_GB.po
++++ b/po/en_GB.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Bruce Cowan <l10n at bcowan.fastmail.co.uk>, 2011
++# Translators:
++# Bruce Cowan <l10n at bcowan.fastmail.co.uk>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: English (United Kingdom) (http://www.transifex.net/projects/p/yum/team/en_GB/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: en_GB\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Updating"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Erasing"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installing"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Obsoleted"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Updated"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Erased"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installed"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "No header - huh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Repackage"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Error: invalid output state: %s for %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Erased: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Removing"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Cleanup"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Command \"%s\" already defined"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Setting up repositories"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Reading repository metadata in from local files"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Config Error: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Options Error: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installed: %s-%s at %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Built    : %s at %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Committed: %s at %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "You need to give some command"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "No such command: %s. Please use %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Disk Requirements:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  At least %dMB more space needed on the %s filesystem.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +143,60 @@ msgstr ""
+ "Error Summary\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Trying to run the transaction but nothing to do. Exiting."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Exiting on user Command"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Downloading Packages:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Error Downloading Packages:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Running Transaction Check"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERROR You need to update rpm to handle:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "ERROR with transaction check vs depsolve:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM needs to be updated"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Please report this error in %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Running Transaction Test"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Transaction Check Error:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transaction Test Succeeded"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Running Transaction"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,234 +204,257 @@ msgstr ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Maybe you meant: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Package(s) %s%s%s available, but not installed."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "No package %s%s%s available."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Package(s) to install"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nothing to do"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d packages marked for Update"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "No Packages marked for Update"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d packages marked for Distribution Synchronisation"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "No Packages marked for Distribution Synchronisation"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d packages marked for removal"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "No Packages marked for removal"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Package(s) to downgrade"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (from %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Installed package %s%s%s%s not available."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Package(s) to reinstall"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "No Packages Provided"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Package(s) to install"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "N/S Matched: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Matched: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Warning: No matches found for: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "No Matches found"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "No Package Found for %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Cleaning repos: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Cleaning up Everything"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Cleaning up Headers"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Cleaning up Packages"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Cleaning up xml metadata"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Cleaning up database cache"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Cleaning up expire-cache metadata"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Cleaning up cached rpmdb data"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Cleaning up plugins"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Warning: No groups match: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Installed Groups:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Installed Language Groups:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Available Groups:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Available Language Groups:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Done"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Warning: Group %s does not exist."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "No packages in any requested group available to install or update"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Package(s) to Install"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "No group named %s exists"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "No packages to remove from groups"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d Package(s) to remove"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Package %s is already installed, skipping"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Discarding non-comparable pkg %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "No other %s installed, adding to list for potential install"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Plugin Options"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Command line error: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -439,284 +465,288 @@ msgstr ""
+ "\n"
+ "%s: %s option requires an argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color takes one of: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot must be an absolute path: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "show this help message and exit"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "be tolerant of errors"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "run entirely from system cache, don't update cache"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "config file location"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maximum command wait time"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "debugging output level"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "show duplicates, in repos, in list/search commands"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "error output level"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "debugging output level for rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "quiet operation"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "verbose operation"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "answer yes for all questions"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "show Yum version and exit"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "set install root"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "enable one or more repositories (wildcards allowed)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "disable one or more repositories (wildcards allowed)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "exclude package(s) by name or glob"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "disable exclude from main, for a repo or for everything"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "enable obsoletes processing during updates"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "disable Yum plugins"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "disable gpg signature checking"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "disable plugins by name"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "enable plugins by name"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "skip packages with depsolving problems"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "control whether colour is used"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "set value of $releasever in yum config and repo files"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "set arbitrary config and repo options"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "May"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Aug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Oct"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dec"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Trying other mirror."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Name        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arch        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Version     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Release     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Size        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repo        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "From repo   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Committer   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Committime  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Buildtime   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Install time: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installed by: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Changed by  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Summary     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licence     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Description : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "yes"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Is this ok [y/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -725,154 +755,156 @@ msgstr ""
+ "\n"
+ "Group: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Group-Id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Description: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Language: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Mandatory Packages:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Default Packages:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Optional Packages:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Conditional Packages:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "package: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  No dependencies for this package"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  dependency: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Unsatisfied dependency"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Matched from:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licence     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Filename    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Other       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "There was an error calculating total download size"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Total size: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Total download size: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Installed size: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "There was an error calculating installed size"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Reinstalling"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Downgrading"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Installing for dependencies"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Updating for dependencies"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Removing for dependencies"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Skipped (dependency problems)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Not installed"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Package"
++msgid_plural "Packages"
++msgstr[0] "Package"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arch"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Version"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repository"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Size"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     replacing  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -883,57 +915,52 @@ msgstr ""
+ "Transaction Summary\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Install"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Reinstall"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Downgrade"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Removed"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dependency Removed"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dependency Installed"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dependency Updated"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Replaced"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Failed"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "two"
+ 
+@@ -941,7 +968,7 @@ msgstr "two"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -952,364 +979,416 @@ msgstr ""
+ " Current download cancelled, %sinterrupt (ctrl-c) again%s within %s%s%s seconds\n"
+ "to exit.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "user interrupt"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Total"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<unset>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "System"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Skipping merged transaction %d to %d, as it overlaps"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "No transactions"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Bad transaction IDs, or package(s), given"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Command line"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Login user"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Date and time"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Action(s)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Altered"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "No transaction ID given"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Bad transaction ID given"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Not found given transaction ID"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Found more than one transaction ID!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "No transaction ID, or package, given"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Downgraded"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Older"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Newer"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transaction ID :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Begin time     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Begin rpmdb    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u seconds)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minutes)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u hours)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u days)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "End time       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "End rpmdb      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "User           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Return-Code    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Aborted"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Failures:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Failure:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Success"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Command Line   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Additional non-default information stored: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transaction performed with:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Packages Altered:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Packages Skipped:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb Problems:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptlet output:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Errors:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Install"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Dep-Install"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Obsoleting"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Erase"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Reinstall"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Downgrade"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Update"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Time"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Last day"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Last week"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Last 2 weeks"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Last 3 months"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Last 6 months"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Last year"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Over a year ago"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "No Transaction %s found"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transaction ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Available additional history information:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: No additional data found by this name"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installed"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "an update"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "erased"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "reinstalled"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "a downgrade"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "obsoleting"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "updated"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "obsoleted"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Package %s.%s %s:%s-%s will be %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Running transaction check"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Restarting Dependency Resolution with new changes."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Finished Dependency Resolution"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Processing Dependency: %s for package: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Keeping package: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Unresolved Dependency: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Package: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1318,7 +1397,7 @@ msgstr ""
+ "\n"
+ "    Requires: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1327,7 +1406,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1336,7 +1415,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1345,85 +1424,85 @@ msgstr ""
+ "        Not found"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Updated By"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Downgraded By"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Obsoleted By"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Available"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Processing Conflict: %s conflicts %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Populating transaction set with selected packages. Please wait."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Downloading header for %s to pack into transaction set."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Running"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Sleeping"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Uninterruptible"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Traced/Stopped"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Unknown"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  The other application is: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  The other application is: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memory : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Started: %s - %s ago"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    State  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1433,7 +1512,7 @@ msgstr ""
+ "\n"
+ "Exiting on user cancel"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1443,7 +1522,7 @@ msgstr ""
+ "\n"
+ "Exiting on Broken Pipe"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1454,7 +1533,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1462,35 +1541,35 @@ msgstr ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit Error: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum Error: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Error: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " You could try using --skip-broken to work around the problem"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " You could try running: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Unknown Error(s): Exit Code: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1498,7 +1577,7 @@ msgstr ""
+ "\n"
+ "Dependencies Resolved"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Complete!"
+ 
+@@ -1510,7 +1589,7 @@ msgstr " Mini usage:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "You need to be root to perform this command."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1540,53 +1619,53 @@ msgstr ""
+ "\n"
+ "For more information contact your distribution or package provider.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Error: Need to pass a list of pkgs to %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Error: Need an item to match"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Error: Need a group or list of groups"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Error: clean requires an option: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Error: invalid clean argument: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "No argument to shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Filename passed to shell: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "File %s given as argument to shell does not exist."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Error: more than one file given as argument to shell."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1596,306 +1675,299 @@ msgstr ""
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PACKAGE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Install a package or packages on your system"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Setting up Install Process"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PACKAGE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Update a package or packages on your system"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Setting up Update Process"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Synchronise installed packages to the latest available versions"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Setting up Distribution Synchronisation Process"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Display details about a package or group of packages"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Installed Packages"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Available Packages"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Extra Packages"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Updated Packages"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Obsoleting Packages"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Recently Added Packages"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "No matching Packages to list"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "List a package or groups of packages"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Remove a package or packages from your system"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Setting up Remove Process"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Setting up Group Process"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "No Groups on which to run command"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "List available package groups"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Install the packages in a group on your system"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Remove the packages in a group from your system"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Generate the metadata cache"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Making cache files for all metadata files."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "This may take a while depending on the speed of this computer"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metadata Cache Created"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Remove cached data"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Find what package provides the given value"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Check for available package updates"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Search package details for the given string"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Searching Packages: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Update packages taking obsoletes into account"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Setting up Upgrade Process"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Install a local RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Setting up Local Package Process"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Determine which package provides the given dependency"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Searching Packages for Dependency:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Run an interactive yum shell"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Setting up Yum Shell"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "List a package's dependencies"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Finding dependencies: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Display the configured software repositories"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "enabled"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "disabled"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Repo-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Repo-name    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Repo-status  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-revision: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tags    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo-updated : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Repo-pkgs    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Repo-size    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Updated    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-mirrors : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Never (last: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Instant (last: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s second(s) (last: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Repo-expire  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-exclude : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-include : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repo-excluded: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "repo id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "repo name"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Display a helpful usage message"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "No help available for %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1905,7 +1977,7 @@ msgstr ""
+ "\n"
+ "aliases: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1915,85 +1987,125 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Setting up Reinstall Process"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "reinstall a package"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Setting up Downgrade Process"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "downgrade a package"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Display a version for the machine and/or available repos."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum version groups:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Group   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Packages:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installed:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Group-Installed:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Available:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Group-Available:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Display, or use, the transaction history"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Invalid history sub-command, use: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "You don't have access to the history DB."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Check for problems in the rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "load a saved transaction from filename"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "No saved transaction file specified."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "loading transaction from %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transaction loaded from %s with %s members"
+@@ -2004,27 +2116,33 @@ msgstr "Transaction loaded from %s with %s members"
+ msgid " Yum checks failed: %s"
+ msgstr " Yum checks failed: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "Can't create lock file; exiting"
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Resolving Dependencies"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+-msgstr "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
++msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2034,74 +2152,74 @@ msgstr ""
+ "\n"
+ "Exiting on user cancel."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Setting up TransactionSets before config class is up"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Invalid tsflag in config file: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Searching pkgSack for dep: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Member: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s converted to install"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Adding Package %s in mode %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Removing Package %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s requires: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s requires %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Needed Require has already been looked up, cheating"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Needed Require is not a package name. Looking up: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potential Provider: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Mode is %s for provider of %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Mode for pkg providing %s: %s"
+@@ -2109,114 +2227,114 @@ msgstr "Mode for pkg providing %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Trying to update %s to resolve dep"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "No update paths found for %s. Failure!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s package requiring %s marked as erase"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Obsoleting %s with %s to resolve dep."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Updating %s to resolve dep."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Cannot find an update path for dep for: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Quick matched %s to require for %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s is in providing packages but it is already installed, removing."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Potential resolving package %s has newer instance in ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Potential resolving package %s has newer instance installed."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s already in ts, skipping this one"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Marking %s as update for %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Marking %s as install for %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Success - empty transaction"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Restarting Loop"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Dependency Process ending"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Success - deps resolved"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Checking deps for %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "looking for %s as a requirement of %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Running compare_providers() for %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "better arch in po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s obsoletes %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2225,142 +2343,142 @@ msgstr ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "common sourcerpm %s and %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "base package %s is installed for %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "common prefix of %s between %s and %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "requires minimal: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Winner: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Loser(with %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Best Order: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Repository %r: Error parsing config: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Repository %r is missing name in configuration, using id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "plugins already initialised"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Reading Local RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Setting up Package Sacks"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "repo object for repo %s lacks a _resetSack method\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "therefore this repo cannot be reset.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Building updates object"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() will go away in a future version of Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Getting group metadata"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Adding group file from repository: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Failed to add groups file for repository: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "No Groups Available in any repository"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Getting pkgtags metadata"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Adding tags from repository: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Failed to add Pkg Tags for repository: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importing additional filelist information"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "The program %s%s%s is found in the yum-utils package."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2368,21 +2486,21 @@ msgstr ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Finding unneeded leftover dependencies"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Protected multilib versions: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Trying to remove \"%s\", which is protected"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2390,88 +2508,91 @@ msgstr ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s from %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Warning: RPMDB altered outside of yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "missing requires"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "installed conflict"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transaction couldn't start:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Could not run transaction."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Failed to remove transaction file %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s was supposed to be installed but is not!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s was supposed to be removed but is not!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Could not open lock %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Unable to check if PID %s is active"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Existing lock %s: another copy is running as pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Could not create lock at %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2480,102 +2601,93 @@ msgstr ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Could not perform checksum"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Package does not match checksum"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "package fails checksum but caching is enabled for %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "using local copy of %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Header is not complete."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Public key for %s is not installed"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problem opening package %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Public key for %s is not trusted"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Package %s is not signed"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Cannot remove %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s removed"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Cannot remove %s file %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s file %s removed"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s files removed"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "More than one identical match in sack for %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nothing matches %s.%s %s:%s-%s from update"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2583,121 +2695,123 @@ msgstr ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Searching %d packages"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "searching package %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "searching in file entries"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "searching in provides entries"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "No group data available for configured repositories"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "No Group named %s exists"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "package %s was not marked in group %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Adding package %s from group %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "No package named %s available to be installed"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Warning: Group %s does not have any packages."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "Group %s does have %u conditional packages, which may get installed."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Package tuple %s could not be found in packagesack"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Package tuple %s could not be found in rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Invalid version flag from: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "No Package found for %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Package Object was not a package object instance"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nothing specified to install"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Checking for virtual provide or file-provide for %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "No Match for argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Package %s installed and not available"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "No package(s) available to install"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Package: %s  - already in transaction set"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Package %s is obsoleted by %s which is already installed"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2706,94 +2820,100 @@ msgstr ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Package %s is obsoleted by %s, trying to install %s instead"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Package %s already installed and latest version"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Package matching %s already installed. Checking for update."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Updating Everything"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Package is already obsoleted: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Not Updating Package that is obsoleted: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Skipping the running kernel: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Removing %s from the transaction"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Cannot open: %s. Skipping."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Examining %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Cannot localinstall deltarpm: %s. Skipping."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "Cannot install package %s. It is obsoleted by installed package %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2802,7 +2922,7 @@ msgstr ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2811,95 +2931,100 @@ msgstr ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Excluding %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Marking %s to be installed"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Marking %s as an update to %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: does not update installed package."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Cannot open file: %s. Skipping."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problem in reinstall: no package matched to remove"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problem in reinstall: no package %s matched to install"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "No package(s) available to downgrade"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Package %s is allowed multiple installs, skipping"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "No Match for available package: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Only Upgrade available on package: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Failed to downgrade: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Retrieving key from %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG key retrieval failed: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "GPG key signature on key %s does not matvch CA Key for repo: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "GPG key signature verified against CA Key(s)"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Invalid GPG Key from %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG key parsing failed: key does not have value %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2912,7 +3037,7 @@ msgstr ""
+ "Package: %s (%s)\n"
+ "From   : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2923,25 +3048,25 @@ msgstr ""
+ "Userid : \"%s\"\n"
+ "From  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG key at %s (0x%s) is already installed"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Key import failed (code %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Key imported successfully"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Didn't install any keys"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2950,25 +3075,25 @@ msgstr ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Import of key(s) didn't help, wrong key(s)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG key at %s (0x%s) is already imported"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Key import failed"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Didn't install any keys for repo %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2977,157 +3102,181 @@ msgstr ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Unable to find a suitable mirror."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Errors were encountered while downloading packages."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Please report this error at %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Test Transaction Errors: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Could not set cachedir: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr "Dependencies not solved. Will not save unresolved transaction."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Could not save transaction file %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Could not access/read saved transaction %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "rpmdb ver mismatched saved transaction version, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ignoring, as requested."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " aborting."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "cannot find tsflags or tsflags not integer."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Found txmbr in unknown current state: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Could not find txmbr: %s in state %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Could not find txmbr: %s from origin: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Transaction members, relations are missing or ts has been modified,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " ignoring, as requested. You must redepsolve!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Loaded plugins: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "No plugin match for: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Not loading \"%s\" plugin, as it is disabled"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Plugin \"%s\" can't be imported"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Plugin \"%s\" doesn't specify required API version"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Plugin \"%s\" requires API %s. Supported API is %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Loading \"%s\" plugin"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Configuration file %s not found"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Unable to find configuration file for plugin %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registration of commands not supported"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "has missing requires of"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "has installed conflicts"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s is a duplicate with %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s is obsoleted by %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s provides %s but it cannot be found"
+@@ -3136,6 +3285,17 @@ msgstr "%s provides %s but it cannot be found"
+ msgid "Repackaging"
+ msgstr "Repackaging"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/es.po b/po/es.po
+index 2b1397d..6f5ad55 100644
+--- a/po/es.po
++++ b/po/es.po
+@@ -2,15 +2,18 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# beckerde <domingobecker at gmail.com>, 2011
+-# Claudio Rodrigo Pereyra Diaz <elsupergomez at gmail.com>, 2011
++# Translators:
++# beckerde <domingobecker at gmail.com>, 2011.
++# Claudio Rodrigo Pereyra Diaz <elsupergomez at gmail.com>, 2011.
++# Dennis Tobar <dennis.tobar at gmail.com>, 2011.
++#   <domingobecker at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-09-08 12:57+0000\n"
++"Last-Translator: beckerde <domingobecker at gmail.com>\n"
+ "Language-Team: Spanish (Castilian) <trans-es at lists.fedoraproject.org>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -18,122 +21,124 @@ msgstr ""
+ "Language: es\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Actualizando"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Eliminando"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instalando"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Obsoleto"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Actualizado"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Eliminado"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Instalado"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Sin encabezado - ¿ah?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Reempaquetar"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Error: estado de salida no válido: %s de %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Eliminado: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Eliminando"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Limpieza"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "El comando \"%s\" ya ha sido definido"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Configurando los repositorios"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Leyendo en archivos locales los metadatos de los repositorios"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Error de configuración: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Error de opciones: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Instalado: %s-%s en %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Construido: %s en %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Enviado: %s en %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Necesita ingresar algún comando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "No existe el comando: %s. Por favor, utilice %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Requerimientos de disco:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Como mínimo se necesitan %dMB más en el sistema de archivos %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Como mínimo se necesitan %dMB más en el sistema de archivos %s.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,61 +146,61 @@ msgstr ""
+ "Resumen de errores\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Se intentó ejecutar la transacción pero no hay nada para hacer. Saliendo."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Saliendo de acuerdo al comando del usuario"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Descargando paquetes:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Error al descargar los paquetes:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Ejecutando verificación de transacción"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERROR Necesita actualizar el rpm para manipular:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "ERROR en el chequeo de la transacción vs resolución de dependencias:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "El RPM necesita ser actualizado"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Por favor, reporte este error en %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Ejecutando prueba de transacción"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Error en la verificación de la transacción:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "La prueba de transacción ha sido exitosa"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Ejecutando transacción"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -203,94 +208,112 @@ msgstr ""
+ "Se rechaza la importación automática de claves cuando se ejecuta desatendida.\n"
+ "Utilice \"-y\" para forzar."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Tal vez quería decir: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ "El (los) paquete(s) %s%s%s se encuentra(n) disponible(s), pero no se ha(n) "
+ "instalado."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "No existe disponible ningún paquete %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paquete(s) a instalarse"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d paquete a instalar"
++msgstr[1] "%d paquetes a instalar"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nada para hacer"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paquetes han sido seleccionados para ser actualizados"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d paquete marcado para Actualizar"
++msgstr[1] "%d paquetes marcados para Actualizar"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "No se han seleccionando paquetes para ser actualizados"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
+-"%d paquetes han sido seleccionados para Sincronización de distribución"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d paquete marcado para Sincronización de Distribución"
++msgstr[1] "%d paquetes marcados para Sincronización de Distribución"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "No se han seleccionado paquetes para Sincronización de distribución"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paquetes han sido seleccionados para ser eliminados"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d paquete marcado para eliminar"
++msgstr[1] "%d paquetes marcados para eliminar"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "No se han seleccionado paquetes para ser eliminados"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paquete(s) a desactualizar"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d paquete a desactualizar"
++msgstr[1] "%d paquetes a desactualizar"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (desde %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "El paquete instalado %s%s%s%s no se encuentra disponible."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paquete(s) a reinstalar"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d paquete a reinstalar"
++msgstr[1] "%d paquetes a reinstalar"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "No se ha ofrecido ningún paquete"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paquete(s) a instalarse"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "Nombre/Resumen que coinciden con: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Nombre y resumen que coinciden con %s y sólo %s, use \"buscar todo\" para "
+ "todo."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -298,150 +321,154 @@ msgstr ""
+ "  Nombre completo y resumen que coinciden con %s y sólo %s, use \"buscar "
+ "todo\" para todo."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Concordante: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Nombre y resumen que coinciden con %s y en general con %s, use \"buscar "
+ "todo\" para todo."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Aviso: No se ha encontrado ningún resultado para: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "No se ha encontrado ningún resultado"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "No se ha encontrado ningún paquete para %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+-msgstr "Limpiando repositorios:"
++msgstr "Limpiando repositorios: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Limpiando todo"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Limpiando encabezados"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Limpiando paquetes"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Limpiando metadatos xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Limpiando el caché de la base de datos"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Limpiando metadatos expirados del caché"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Limpiando datos de rpmdb en el caché"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Limpiando complementos"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Advertencia: No hay grupos coincidentes con: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Grupos instalados:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Grupos de idioma instalados:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Grupos disponibles:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Grupos de idioma disponibles:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Listo"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Aviso: el grupo %s no existe."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "En los grupos solicitados no existe disponible ningún paquete para ser "
+ "instalado o actualizado"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d paquete(s) a instalar"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d paquete a Instalar"
++msgstr[1] "%d paquetes a Installar"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "No existe ningún grupo denominado %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "No existen paquetes a eliminarse de los grupos"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d paquete(s) a eliminar"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d paquetes a eliminar"
++msgstr[1] "%d paquetes a elminar"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Ya se encuentra instalado el paquete %s, ignorando"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Descartando paquete no comparable %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "No existe instalado otro %s, agregando a la lista para instalación posible"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opciones de complementos"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Error en la línea de comando: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -452,290 +479,294 @@ msgstr ""
+ "\n"
+ "%s: la opción %s necesita un argumento"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color acepta una de las siguientes opciones: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--insallroot debe ser una ruta absoluta: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "muestra este mensaje de ayuda y cierra"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "sea tolerante con los errores"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "se ejecuta completamente a partir del caché, pero no lo actualiza"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "configurar ubicación de archivo"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "tiempo máximo de espera del comando"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nivel de depuración de la salida"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ "muestra duplicados en los repositorios, y en los comandos para "
+ "mostrar/buscar"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "nivel de error de la salida"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "nivel de depuración de salida para rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "operación discreta"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "operación detallada"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+-msgstr "responde \"si\" a todas las preguntas"
++msgstr "responde \"sí\" a todas las preguntas"
++
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "responder no a todas las preguntas"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "muestra la versión de Yum y finaliza"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "define la raíz de instalación"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "activa uno o más repositorios (los comodines son permitidos)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "desactiva uno o más repositorios (los comodines son permitidos)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "excluya paquete(s) de acuerdo a su nombre o glob "
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ "deshabilita la posibilidad de exclusión desde main, para un repositorio o "
+ "para todos"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "habilita el proceso de paquetes obsoletos durante las actualizaciones"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "deshabilita los complementos de Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "deshabilita la verificación de firmas GPG"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "deshabilita complementos de acuerdo a su nombre"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "habilita complementos de acuerdo a su nombre"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "ignora paquetes con problemas de resolución de dependencias"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "controla la utilización de colores"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "define el valor de $releasever en los aarchivos de configuración de yum y de"
+ " los repositorios"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "define una configuración arbitraria y opciones de los repositorios"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Ene"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Abr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "May"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Ago"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Oct"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dic"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Intentando con otro espejo."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nombre        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arquitectura        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Período       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versión     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Lanzamiento     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Tamaño        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repositorio        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Desde el repositorio   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Enviado por   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Horario del envío  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Horario de la construcción   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Horario de la instalación: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Instalado por: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Modificado por  : %s "
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Resumen     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licencia     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Descripción :"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "s"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+-msgstr "si"
++msgstr "sí"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Está de acuerdo [s/N]:"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -744,154 +775,156 @@ msgstr ""
+ "\n"
+ "Grupo: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Group-Id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Descripción: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Idioma: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Paquetes obligatorios:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Paquetes predeterminados:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Paquetes opcionales:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Paquetes condicionales:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paquete: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr " No existen dependencias para este paquete"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr " dependencia: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr " Dependencia no satisfecha"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Resultado obtenido desde:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licencia     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nombre del archivo    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Otro       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Hubo un error mientras se calculaba el tamaño total de la descarga"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Tamaño total: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Tamaño total de la descarga: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Tamaño instalado: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Hubo un error mientras se calculaba el tamaño instalado"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Reinstalando"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Desactualizando"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Instalando para las dependencias"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Actualizando para las dependencias"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Eliminando para las dependencias"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Ignorando (problemas de dependencias)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "No instalado"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "No disponible"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paquete"
++msgid_plural "Packages"
++msgstr[0] "Paquete"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arquitectura"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versión"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repositorio"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Tamaño"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     reemplazando  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -902,57 +935,52 @@ msgstr ""
+ "Resumen de la transacción\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Instalar   %5.5s Paquete(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instalar"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Actualizar   %5.5s Paquete(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Actualizar"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Eliminar   %5.5s Paquete(s)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Eliminar"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Reinstalar %5.5s Paquete(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Reinstalar"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Desactualizar %5.5s Paquete(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Desactualizar"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Eliminado(s)"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dependencia(s) eliminada(s)"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dependencia(s) instalada(s)"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dependencia(s) actualizada(s)"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Sustituido(s)"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Falló"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dos"
+ 
+@@ -960,7 +988,7 @@ msgstr "dos"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -968,369 +996,421 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ "\n"
+-" Se ha cancelado la descarga actual, %sinterrumpa con (ctrl-c) nuevamente%s dentro de %s%s%s segundos\n"
++"Se ha cancelado la descarga actual, %sinterrumpa con (ctrl-c) nuevamente%s dentro de %s%s%s segundos\n"
+ "para finalizar.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "interrupción solicitada por el usuario"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Total"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<no definido>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistema"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Omitiendo transacción mezclada %d a %d, dado que se superponen"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Sin transacciones"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Se ha(n) indicado paquete(s), o IDs de transacciones erróneas"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Linea de comandos"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Registro de usuario"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Día y hora"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Acción(es)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Modificado"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "No se ha indicado un ID de transacción"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Se ha indicado un ID de transacción no válido "
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "No se ha encontrado el ID de transacción indicado"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "¡Se ha encontrado más de un ID de transacción!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "No se ha indicado ningún paquete, o ID de transacción"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Desactualizado"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Antiguos"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Nuevos"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ID de transacción :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Hora inicial     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Rpmdb inicial    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u segundos)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minutos)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u horas)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u dias)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Hora final       : "
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Rpmdb final      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Usuario           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Codigo-obtenido    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Abortado"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Fallas:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Falla:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Exito"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Línea de comando   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Información adicional no predeterminada almacenada: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transacción realizada con:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Paquetes modificados:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Paquetes ignorados:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problemas en la base de datos RPM: "
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Información del scriptlet:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Errores:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instalar"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Instalación de dependencias"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Convirtiendo en obsoleto"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Eliminar"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Reinstalar"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Desactualizar"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Actualizar"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Hora"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Ultimo día"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Ultima semana"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Ultimas 2 semanas"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Ultimos 3 meses"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Ultimos 6 meses"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Ultimo año"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Hace más de un año"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "No se ha encontrado una transacción %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "ID de transacción :"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Información de historial adicional disponible:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s No ha sido encontrada información adicional con este nombre"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Paquete        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Estado         :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Tamaño         :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Construir anfitrión:"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Tiempo de construcción:"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Empaquetador   :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Vendedor       :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licencia       :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "RPM de Fuentes :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Tiempo de subida:"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Quien lo sube:"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Razón          :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Desde el repo  :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Instalado por  :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Cambiado por   :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "instalado"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "una actualización"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "eliminado"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "reinstalado"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "una desactualización"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "obsoleto"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "actualizado"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "obsoleto"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Paquete %s.%s %s:%s-%s debe ser %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Ejecutando prueba de transacción"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Reiniciando la resolución de las dependencias con las nuevas "
+ "modificaciones."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Resolución de dependencias finalizada"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Procesando dependencias: %s para el paquete: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Manteniendo el paquete: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Dependencia no resuelta: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paquete: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1339,7 +1419,7 @@ msgstr ""
+ "\n"
+ "    Necesita: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1348,7 +1428,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1357,7 +1437,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1366,89 +1446,89 @@ msgstr ""
+ "        No encontrado"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Actualizado por"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Desactualizado por"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Obsoleto por"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Disponible"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Procesando conflictos: %s choca con %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Construyendo el conjunto de las transacciones con los paquetes "
+ "seleccionados. Por favor aguarde."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> Descargando el encabezado de %s para incluirlo en el conjunto de "
+ "transacciones."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Ejecutando"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Durmiendo"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Ininterrumplible"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Rastreado/Detenido"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Desconocido"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  La otra aplicación es: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  La otra aplicación es: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memoria : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Iniciado: %s - %s atrás"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Estado  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1458,7 +1538,7 @@ msgstr ""
+ "\n"
+ "Saliendo por cancelación del usuario"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1468,7 +1548,7 @@ msgstr ""
+ "\n"
+ "Saliendo por tubería rota"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1479,7 +1559,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1487,36 +1567,36 @@ msgstr ""
+ "Otra aplicación tiene retenido el bloqueo de Yum; finalizando de acuerdo a "
+ "la configuración de exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Error de PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Error de yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Error: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Podría intentar utilizar el comando --skip-broken para sortear el problema"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr "Podría intentar ejecutar: rpm- Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Error(es) desconocido(s): Código de salida: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1524,7 +1604,7 @@ msgstr ""
+ "\n"
+ "Dependencias resueltas"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "¡Listo!"
+ 
+@@ -1536,7 +1616,7 @@ msgstr " Minu uso:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Necesita ser usuario root para poder ejecutar este comando."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1566,53 +1646,53 @@ msgstr ""
+ "\n"
+ "Para obtener mayor información, póngase en contacto con su distribución o con su proveedor de paquetes.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problema del repositorio: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Error: Necesita pasar una lista de paquetes a %s "
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Error: Es necesario un ítem con el cual corresponderse"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Error: Es necesario un grupo o una lista de grupos"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Error: la limpieza necesita una opción: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Error: argumento de limpieza no válido: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "No hay argumento para el shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nombre de archivo pasado al shell: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "El archivo %s indicado como argumento para el shell no existe."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Error: se ha indicado más de un archivo como argumento para el shell"
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1622,308 +1702,301 @@ msgstr ""
+ " Ejecute \"yum repolist all\" para conocer los repositorios existentes.\n"
+ " Puede habilitarlos con yum-config-manager --enable <repositorio>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAQUETE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instala uno o varios paquetes en su sistema"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Configurando el proceso de instalación"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAQUETE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Actualiza uno o varios paquetes en su sistema"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Configurando el proceso de actualización"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Sincroniza los paquetes instalados a las últimas versiones disponibles"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Definiendo el proceso de Sincronización de la distribución"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Muestra detalles acerca de un paquete o de un grupo de paquetes"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Paquetes instalados"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Paquetes disponibles"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Paquetes extra"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Paquetes actualizados"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Convirtiendo paquetes en obsoletos"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Paquetes añadidos recientemente"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "No hay paquetes que se correspondan con la lista"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Muestra un paquete o grupos de paquete"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Elimina uno o varios paquetes de su sistema"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Configurando el proceso de eliminación"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Mostrar, o usar, la información de grupos"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Configurando el proceso de grupo"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "No existen grupos sobre los cuales ejecutar el comando"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Muestra los grupos de paquetes disponibles"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instala los paquetes en un grupo de su sistema"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Elimina los paquetes de un grupo de su sistema"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Muestra detalles acerca de un grupo de paquetes"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Subcomando de grupos inválido, use: %s."
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Genera el caché de metadatos"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Creando los archivos de caché para todos los archivos de metadatos."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Esto podría demorar algún tiempo, dependiendo de la velocidad de su equipo"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Se ha creado el caché de metadatos"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Elimina los datos del caché"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Localiza el paquete que ofrezca el valor indicado"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Verifica la existencia de actualizaciones de paquetes"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Busca detalles en los paquetes para la cadena indicada"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Buscando paquetes:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Actualiza los paquetes tomando en cuenta los obsoletos"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Configurando el proceso de actualización"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instala un RPM local"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Configurando el proceso de instalación local de paquetes"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Determina qué paquetes ofrecen la dependencia indicada"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Buscando paquetes para la dependencia:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Ejecuta una shell de Yum interactiva "
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Configurando la shell de Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Muestra las dependencias que necesita un paquete"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Buscando dependencias:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Muestra los repositorios de software configurados"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "habilitado"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "deshabilitado"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Repo-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Repo-name    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Repo-status  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-revision: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tags    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo-updated : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Repo-pkgs    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Repo-size    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Actualizados    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-mirrors : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Nunca (último: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Instante (último: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s segundo(s) (último: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Repo-expire  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-exclude : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-include : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repositorio excluído:"
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Nombre de archivo del repositorio: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "id del repositorio"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "estado"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nombre del repositorio"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Muestra un mensaje de ayuda del uso"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "No existe asistencia disponible para %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1933,7 +2006,7 @@ msgstr ""
+ "\n"
+ "apodos: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1943,85 +2016,125 @@ msgstr ""
+ "\n"
+ "apodo: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Configurando el proceso de reinstalación"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "reinstalar un paquete"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Configurando el proceso de desactualización"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "desactualizar un paquete a una versión anterior"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Muestra una versión para la máquina y/o los repositorios disponibles."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Grupos de la versión de Yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grupo   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Paquetes:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Instalado:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Grupo-Instalado:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Disponible:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Grupo-Disponible:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Mostrar, o utilizar, el historial de la transacción"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transacciones:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Hora de comienzo:"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Hora de finalización:"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Contadores:"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  BD rpm :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  BD yum :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Sub-comando de historia no válido, utilice: %s"
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "No posee acceso a la base de datos del historial."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Verifica si hay problemas en la base de datos (rpmdb)"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "carga una transacción guardada desde un archivo"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "No se especificó un archivo de transacción guardada."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "cargando transacción desde %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transacción cargada desde %s con %s miembros."
+@@ -2032,29 +2145,36 @@ msgstr "Transacción cargada desde %s con %s miembros."
+ msgid " Yum checks failed: %s"
+ msgstr " Yum falló verificando: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+-"Otra aplicación tiene retenido el bloqueo de Yum; esperándolo para salir... "
++"No hay acceso de lectura/escritura en el directorio actual, moviendo a /"
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "No se puede crear archivo de bloqueo, ya existe uno"
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++"Otra aplicación tiene retenido el bloqueo de Yum; esperándolo para salir... "
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Resolviendo dependencias"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Su transacción fue guardada, ejecutela nuevamente con yum load-transaction "
+-"%s"
++"Su transacción fue guardada, ejecútela de nuevo con:\n"
++" yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2064,76 +2184,76 @@ msgstr ""
+ "\n"
+ "Saliendo por cancelación del usuario."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ "Configurando TransactionSets antes de la activación de clase de "
+ "configuración"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "tsflag no válido en el archivo de configuración: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Buscando pkgSack para la dependencia: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Miembro: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s convertido para instalar"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Agregando paquete %s en modo %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Eliminando paquete %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s necesita: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s necesita %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "El requerimiento que se necesita ya fue buscado, haciendo trampa"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "El requerimiento necesitado no es un nombre de paquete. Buscando: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Proveedor posible: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "El modo es %s para el proveedor de %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Modo para el paquete que ofrece %s: %s"
+@@ -2141,121 +2261,121 @@ msgstr "Modo para el paquete que ofrece %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Intentando actualizar %s para resolver dependencia"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "No se encontraron rutas de actualización para %s. ¡Fallo!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: el paquete %s que necesita %s ha sido marcado para eliminarse"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: Transformando a %s en obsoleto utilizando %s para resolver la "
+ "dependencia."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Actualizando %s para resolver la dependencia."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ "No es posible encontrar un camino de actualización para la dependencia para:"
+ " %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Rápidamente se ha localizado %s al ser requerido por %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s se encuentra entre los paquetes provistos, pero ya está instalado, "
+ "eliminando. "
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "El paquete de solución posible %s posee una nueva instancia en ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "El paquete de solución posible %s posee una nueva instancia ya instalada."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s ya se encuentra en ts, ignorándolo"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Seleccionado %s como actualización de %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Seleccionando %s como una instalación para %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Exito - transacción vacía"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Reiniciando el bucle"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Finalizando el proceso de dependencias"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Exito - dependencias resueltas"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Verificando dependencias para %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "localizando a %s como un requerimiento de %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Ejecutando compare_providers() para %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "mejor arquitectura en po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s hace obsoleto a %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2264,145 +2384,145 @@ msgstr ""
+ "archdist comparó %s con %s en %s\n"
+ "  Vencedor: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "sourcerpm común %s y %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "el paquete principal %s está instalado para %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "prefijo común de %s entre %s y %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "requires el mínimo: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Ganador: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Perdedor(con %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Mejor orden: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Repositorio %r: Error analizando la configuración: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "Al repositorio %r le falta un nombre en su configuración, utilizando el id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "los complementos ya se encuentran inicializados"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Leyendo RPDMDB local"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Configurando sacos de paquetes"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ "el objeto del repositorio para el repositorio %s necesita de un método a "
+ "_resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "por lo tanto, este repositorio no puede ser restaurado.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Construyendo objeto de actualizaciones"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() desaparecerá en alguna versión posterior de Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Obteniendo metadatos de grupo"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Agregando archivo de grupos desde el repositorio: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Falló al agregarse el archivo de grupos desde el repositorio: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "No hay grupos disponibles en ningún repositorio"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Obteniendo metadatos de etiquetas de paquete (pkgtags)"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Agregando etiquetas del repositorio: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Falló al agregarse etiquetas de paquetes para el repositorio: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importando información adicional de listas de archivo"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "El programa %s%s%s se encuentra en el paquete yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2410,21 +2530,21 @@ msgstr ""
+ "Existen transacciones restantes no finalizadas. Podría considerar primero "
+ "ejecutar el comando yum-complete-transaction, de modo de poder finalizarlas."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Buscando dependencias sobrantes innecesarias"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Versiónes multilib protegidas: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Intentando eliminar \"%s\", que está protegido"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2432,93 +2552,96 @@ msgstr ""
+ "\n"
+ "Paquetes ignorados por problemas de dependencias:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s de %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Se ha encontrado %d problema(s) pre existentes en la base de datos RPM, "
+ "este es el resultado de 'yum check':"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ "Advertencia: Las bases de datos (RPMDB) han sido modificadas por un elemento"
+ " ajeno a yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "no se encuentra necesita"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "conflicto instalado"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Aviso: scriptlet o algún otro tipo de error no fatal ha ocurrido durante la "
+ "transacción."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "La transacción no pudo iniciarse:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "No se pudo ejecutar la transacción"
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Falló al eliminar archivo de transacción %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "¡se suponía que %s estuviera instalado, pero no lo está! "
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "¡se suponía que %s estuviera eliminado, pero no lo está! "
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "No se pudo abrir el bloqueo %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "No es posible verificar si se encuentra activo el PID %s"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ "Bloqueo existente en %s: otra copia se encuentra en ejecución como pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "No se ha podido crear el bloqueo en %s: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2527,42 +2650,31 @@ msgstr ""
+ "El paquete no se corresponde con la descarga pretendida. Sugerimos ejecutar "
+ "el siguiente comando: yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "No se pudo realizar una suma de verificación"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "El paquete no se corresponde con la suma de verificación"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "el paquete no ha superado la suma de verificación, pero el caché se "
+ "encuentra habilitado para %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "utilizando una copia local de %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Espacio insuficiente en el directorio de descarga %s\n"
+-"    * libre   %s\n"
+-"    * necesario %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "El encabezado no está completo."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2570,62 +2682,64 @@ msgstr ""
+ "El encabezado no se encuentra en el caché local, y está habilitado el modo "
+ "de solo cacheo. No es posible descargar %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "No se ha instalado la llave pública de %s "
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problemas abriendo el paquete %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "La llave pública de %s no es confiable"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "El paquete %s no está firmado"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "No es posible eliminar %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s eliminado"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "No es posible eliminar %s archivo %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s archivo %s eliminado"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s archivos eliminados"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s archivo eliminado"
++msgstr[1] "%d %s archivos eliminados"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Más de una correspondencia exacta en el saco para %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nada se corresponde con %s.%s %s:%s-%s desde la actualización"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2633,122 +2747,124 @@ msgstr ""
+ "searchPackages() desaparecerá en alguna versión próxima de Yum. En su lugar "
+ "utilice searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Buscando %d paquetes"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Buscando %d paquete"
++msgstr[1] "Buscando %d paquetes"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "buscando paquete %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "buscando en las entradas de archivo"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "buscando en las entradas \"provee\""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ "No existen datos de grupo disponibles en los repositorios configurados"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "No existe un grupo denominado %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "el paquete %s no fue marcado en el grupo %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Agregando paquete %s del grupo %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "No existe un paquete denominado %s disponible para ser instalado"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Advertencia: Grupo %s no tiene ningun paquete."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "El grupo %s tiene %u paquetes condicionales, que pueden instalarse."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "La tupla %s de paquetes no pudo ser encontrada en el saco de paquetes"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "La tupla %s de paquetes no pudo ser encontrada en la base de datos"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Bandera de versión inválida en: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "No se ha encontrado ningún paquete para %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "El objeto de paquete no era una instancia de objeto de paquete"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "No se ha indicado nada para instalar"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Verificando la provision virtual o provision de archivo de %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "No hay nada concordante con el argumento: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "El paquete %s está instalado y no se encuentra disponible"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "No existe(n) paquete(s) disponible(s) para instalar"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paquete: %s - ya se encuentra en un conjunto de transacción"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "El paquete %s se hace obsoleto con %s, que ya se encuentra instalado"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2757,19 +2873,19 @@ msgstr ""
+ "El paquete %s se hace obsoleto con %s, pero el paquete que lo hace obsoleto "
+ "no ofrece requerimientos"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "El paquete %s se hace obsoleto con %s, en su lugar se está intentando "
+ "instalar %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "El paquete %s ya se encuentra instalado con su versión más reciente"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+@@ -2777,69 +2893,75 @@ msgstr ""
+ "puede actualizarse."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Actualizando todo"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Dejando sin actualizar el paquete que ya es obsoleto: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Ningún paquete coincidió para actualizar: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "El paquete ya es obsoleto: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Dejando sin actualizar el paquete que ya es obsoleto: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "Dejando sin actualizar el paquete que ya se encuentra actualizado: %s.%s "
+ "%s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "No hay paquete correspondiente para ser eliminado"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Ningún paquete coincidió para eliminar: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Salteando el kernel en ejecución: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Eliminando %s de la transacción"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "No es posible abrir: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Examinando %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ "No es posible realizar una instalación local de deltarpm: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2847,14 +2969,14 @@ msgstr ""
+ "No es posible añadir el paquete %s a la transacción. La arquitectura no es "
+ "compatible: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "No es posible instalar el paquete %s. Se encuentra obsoleto debido al "
+ "paquete instalado %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2863,7 +2985,7 @@ msgstr ""
+ "El paquete %s no está instalado, no puede actualizarse. En su lugar, para "
+ "instalarlo, ejecute el comando yum install."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2872,100 +2994,105 @@ msgstr ""
+ "Paquete %s. %s no instalado, no se puede actualizar. En su lugar, ejecute "
+ "yum install para instalarlo"
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Excluyendo %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Marcando %s para ser instalado"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Marcando %s como una actualización de %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: no actualiza el paquete instalado."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "No es posible abrir el archivo: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Problema al reinstalar: no existe ningún paquete concordante para eliminar"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Problema al reinstalar: no existe ningún paquete concordante con %s para "
+ "instalar"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "No existe(n) paquete(s) disponible(s) para desactualizar"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "El paquete %s permite múltiples instalaciones, ignorando"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ninguna correspondencia disponible para el paquete: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Solo existe la posibilidad de actualizar el paquete: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Falló al desactualizar: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Falló al actualizar: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Obteniendo clave desde %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "La obtención de la llave GPG ha fallado:"
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ "La firma de la clave GPG de %s no conincide con la clave CA del repositorio:"
+ " %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "Clave GPG de firma verificada contra clave(s) CA"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Llave GPG no válida de %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "El análisis de la llave GPG ha fallado: la llave no posee valor %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2978,7 +3105,7 @@ msgstr ""
+ " Paquete: %s (%s)\n"
+ " Desde: %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2989,25 +3116,25 @@ msgstr ""
+ " Id Usuario:  \"%s\"\n"
+ " Desde: %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "La llave GPG de %s (0x%s) ya se encuentra instalada"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "La importación de la llave falló (código %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "La llave ha sido importada exitosamente"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "No instalar ninguna clave"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -3016,26 +3143,26 @@ msgstr ""
+ "Las llaves GPG listadas para el repositorio \"%s\" ya se encuentran instaladas, pero con este paquete no son correctas.\n"
+ "Verifique que las URLs de la llave para este repositorio estén correctamente configuradas."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ "La importación de la(s) llave(s) no funcionó, ¿llave(s) equivocada(s)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "La llave GPG de %s (0x%s) ya ha sido importada"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Falló la importación de la llave"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "No instalar ninguna clave para el repositorio %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3044,164 +3171,188 @@ msgstr ""
+ "Las llaves GPG listadas para el repositorio \"%s\" ya se encuentran instaladas, pero no son correctas.\n"
+ "Verifique que se encuentren correctamente configuradas las URLs de la llave para este repositorio."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "No es posible encontrar un espejo que funcione."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Fueron encontrados errores mientras los paquetes eran descargados."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Por favor, informe este error en %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Errores de la prueba de transacción:"
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "No se ha podido definir un directorio de chaché: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Dependencias no resueltas. No se guardarán las transacciónes no resuletas."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "No se puedo guardar el archivo de transacciones %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "No se puede acceder/leer el archivo guardado de transacción %s: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "versión de rpmdb no coincide con versión de transacción guardada, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ignorando, como fue requerido."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " abortando."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "no se puede encontrar tsflags o tsflags no es un entero."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Encontrado txmbr en estado actual desconocido: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "No se pudo encontrar txmbr: %s en estado %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "No se pudo encontrar txmbr: %s del origen:%s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ "Están faltando los miembros de la transacción y sus relaciones, o ts fue "
+ "modificada,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " ignorando, a pedido. ¡Debe resolver dependencias nuevamente!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s ya fue visitado y no puede ser eliminado."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Examinando revdeps de %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s tiene revdpe %s que fue instalado por el usuario."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s no tiene revdeps instalado por el usuario."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Complementos cargados:"
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "No hay un complemento que se corresponda con: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ "El complemento \"%s\" no será cargado, puesto que se encuentra deshabilitado"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "El complemento \"%s\" no puede ser importado"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "El complemento \"%s\" no especifica la versión de API requerida"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "El complemento \"%s\" requiere el API %s. El API soportado es %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Cargando el complemento \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Existen dos o más complementos con el nombre \"%s\", en la ruta de búsqueda "
+ "de complementos "
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "No se encuentra el archivo de configuración %s"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ "No es posible encontrar el archivo de configuración para el complemento %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registro de comando no soportado"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "no se encuentran necesita de"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "se ha instalado choca con"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s es uin duplicado con %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s hace obsoleto a %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s ofrece %s, pero no puede ser encontrado"
+@@ -3210,6 +3361,17 @@ msgstr "%s ofrece %s, pero no puede ser encontrado"
+ msgid "Repackaging"
+ msgstr "Reempaquetando"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Espacio insuficiente en el directorio de descarga %s\n"
++"    * libre   %s\n"
++"    * necesario %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/eu.po b/po/eu.po
+index f92862c..5fd7c2b 100644
+--- a/po/eu.po
++++ b/po/eu.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# assar <asiersar at yahoo.com>, 2011
++# Translators:
++# assar <asiersar at yahoo.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-09-07 15:39+0000\n"
++"Last-Translator: assar <asiersar at yahoo.com>\n"
+ "Language-Team: Basque (http://www.transifex.net/projects/p/yum/team/eu/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: eu\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Eguneratzen"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Ezabatzen"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instalatzen"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Zaharkitua"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Eguneratua"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Ezabatua"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Instalatua"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Goibururik ez - eh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Birpaketatu"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Errorea: baliogabeko irteera-egoera: %s %s-(e)rako"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Ezabatua: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Kentzen"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Garbitzen"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "\"%s\" komandoa jadanik definitua"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Biltegiak konfiguratzen"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Biltegien metadatuak irakurtzen fitxategi lokaletatik"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Konfigurazio-errorea: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Aukeren errorea: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Instalatua: %s-%s %s-(e)n"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Eraikia    : %s %s-(e)n"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Egikaritua: %s %s-(e)n"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Komandoren bat eman behar duzu"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Ez dago halako komandorik: %s. Erabili %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Disko-eskakizunak:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Gutxienez %dMD gehiagoko espazioa behar da %s fitxategi-sisteman.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Gutxienez %dMD gehiagoko espazioa behar da %s fitxategi-sisteman.\n"
++msgstr[1] "  Gutxienez %dMD gehiagoko espazioa behar da %s fitxategi-sisteman.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,61 +143,61 @@ msgstr ""
+ "Erroreen laburpena\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Transakzioaren exekuzioa saiatzen baina ez dago egiteko ezer. Irteten."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Irteten erabiltzaile-komandoaren ondoren"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Paketeak deskargatzen:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Errorea paketeak deskargatzean:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Transakzio-egiaztapena exekutatzen"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERROREA, rpm eguneratu behar duzu hau maneiatzeko:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "ERROREA transakzio-egiaztapena eta depsolve artean:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM eguneratu egin behar da"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Jakinarazi errore hau %s-(e)n"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Transakzio-testa exekutatzen"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Transakzioaren egiaztapen-errorea:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transakzio-testak arrakasta izan du"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Transakzioa exekutatzen"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -202,91 +205,110 @@ msgstr ""
+ "Baztertzen gakoak automatikoki inportatzea arretarik gabe exekutatzen ari denean.\n"
+ "Erabili \"-y\" gainidazteko."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Agian hau esan nahi zenuen: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "%s%s%s paketea(k) eskuragarri, baina ez daude instalatuta."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "%s%s%s paketea ez dago eskuragarri."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Instalatzeko paketea(k)"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "Pakete %d instalatzeko"
++msgstr[1] "%d pakete instalatzeko"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Ez dago egiteko ezer"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pakete markatu dira eguneratuak izateko"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "Pakete %d markatu da eguneratua izateko"
++msgstr[1] "%d pakete markatu dira eguneratuak izateko"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Ez da paketerik markatu eguneratua izateko"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pakete markatu dira banaketa sinkronizatzeko"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "Pakete %d markatu da banaketa sinkronizatzeko"
++msgstr[1] "%d pakete markatu dira banaketa sinkronizatzeko"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Ez da paketerik markatu banaketa sinkronizatzeko"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pakete markatu dira kenduak izateko"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "Pakete %d markatu da kendua izateko"
++msgstr[1] "%d pakete markatu dira kenduak izateko"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Ez da paketerik markatu kendua izateko"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Bertsio zaharragoa instalatzeko paketea(k)"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "Pakete %d bertsio zaharragoa instalatzeko"
++msgstr[1] "%d pakete bertsio zaharragoa instalatzeko"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (%s-(e)tik)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "%s%s%s%s pakete instalatua ez dago eskuragarri."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Berrinstalatzeko paketea(k)"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "Pakete %d berrinstalatzeko"
++msgstr[1] "%d pakete berrinstalatzeko"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Ez da paketerik adierazi"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Instalatzeko paketea(k)"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "N/S bat etortze: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Izen eta laburpenen bat etortzeak %soilik%s, erabili \"bilatu dena\" "
+ "denean bilaketa egiteko."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -294,149 +316,153 @@ msgstr ""
+ "  Izen osoen eta laburpenen bat etortzeak %soilik%s, erabili \"bilatu dena\""
+ " denean bilaketa egiteko."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Bat dator: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Izen eta laburpenen bat etortzeak %sgehien bat%s, erabili \"bilatu dena\" "
+ "denean bilaketa egiteko."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Abisua: Ez da bat datorrenik aurkitu honentzako: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Ez da parekatzerik aurkitu"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Ez da paketerik aurkitu %s-(e)rako"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Biltegiak garbitzen: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Dena garbitzen"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Goiburuak garbitzen"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Paketeak garbitzen"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "XML metadatuak garbitzen"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Datu-basearen katxea garbitzen"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Metadatuen expire-cache garbitzen"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Katxetutako rpmdb datuak garbitzen"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "pluginak garbitzen"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Abisua: Ez dago taldeen bat etortzerik: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Talde instalatuak:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Instalatutako hizkuntza-taldeak:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Talde eskuragarriak:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Eskuragarri dauden hizkuntza-taldeak:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Egina"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Abisua: %s taldea ez da existitzen."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "Eskatutako taldean ez dago paketerik instalatzeko edo eguneratzeko"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakete instalatzeko"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "Pakete %d instalatzeko"
++msgstr[1] "%d pakete instalatzeko"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Ez da existitzen %s izena duen talderik"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Ez dago paketerik taldeetatik kentzeko"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pakete kentzeko"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "Pakete %d kentzeko"
++msgstr[1] "%d pakete kentzeko"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "%s paketea instalatuta dago, saltatzen"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Alderagarria ez den pkg %s.%s baztertzen"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Ez dago beste %s-(e)rik instalatuta, zerrendara gehitzen balizko instalazio "
+ "baterako"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Plugin aukerak"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Komando-lerroko errorea: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -447,285 +473,289 @@ msgstr ""
+ "\n"
+ "%s: %s aukerak argumentua behar du"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color aukerak hauetako bat hartzen du: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot-ek bide-izen absolutua izan behar du: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "erakutsi laguntza-mezu hau eta irten"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "erroreekiko tolerantea izan"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "exekutatu osorik sistemaren katxetik, ez eguneratu katxea"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "konfigurazio-fitxategiaren kokapena"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "komandoen itxarote-denbora maximoa"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "arazketa-irteeraren maila"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "erakutsi bikoiztuak, biltegietan, zerrenda/bilaketa komandoetan"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "errore-irteeraren maila"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "arazketa-irteeraren maila rpm-rako"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "eragiketa lasaia"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "eragiketa berritsua"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "erantzun bai galdera guztiei"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "erantzun ez galdera guztiei"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "erakutsi Yum bertsioa eta irten"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "ezarri instalazio-erroa"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "gaitu biltegi bat edo gehiago (komodinak onartzen dira)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "desgaitu biltegi bat edo gehiago (komodinak onartzen dira)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "baztertu paketea(k) izenaren edo glob-aren arabera"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "desgaitu bazterketa main-etik, biltegi batetik edo denetik"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "gaitu zaharkituen prozesatzea eguneraketetan"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "desagitu Yum-en pluginak"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "desgaitu gpg sinaduren egiaztatzea"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "desgaitu pluginak izenaren arabera"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "gaitu pluginak izenaren arabera"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "saltatu mendekotasun-arazoak dituzten paketeak"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontrolatu kolorea erabiliko den"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "ezarri $releasever balioa yum-en konfigurazioan eta biltegi-fitxategietan"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "ezarri konfigurazio- eta biltegi-aukera arbitrarioak"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "urt."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "ots."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "mar."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "api."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "mai."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "eka."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "uzt."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "abu."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "ira."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "urr."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "aza."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "abe."
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Beste ispilu bat probatzen."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Izena        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arkitektura        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Garaia       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Bertsioa     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Argitalpena     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Tamaina        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Biltegia        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Biltegitik   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Bidaltzailea   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Bidaltze-data  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Eraikitze-data   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Instalazio-ordua: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Instalatzailea: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Aldatzailea: %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Laburpena    : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URLa        : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Lizentzia     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Deskribapena: "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "b"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "bai"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "e"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ez"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Ados? [b/E]:  "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -734,154 +764,156 @@ msgstr ""
+ "\n"
+ "Taldea: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Talde-IDa: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Deskribapena: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Hizkuntza: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Derrigorrezko paketeak:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Pakete lehenetsiak:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Hautazko paketeak:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Baldintzapeko paketeak:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paketea: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Ez dago mendekotasunik pakete honetarako"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  mendekotasuna: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Bete gabeko mendekotasuna"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Bat-egitea hemendik:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Lizentzia     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Fitxategi-izena    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Besterik       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Errorea gertatu da deskarga-tamaina osoa kalkulatzean"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Tamaina osoa: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Deskargaren tamaina osoa: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Tamaina instalatu ondoren: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Errorea gertatu da instalatu ondoren duen tamaina kalkulatzean"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Berrinstalatzen"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Bertsio zaharra instalatzen"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Mendekotasunengatik instalatzen"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Mendekotasunengatik eguneratzen"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Mendekotasunengatik kentzen"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Saltatu egin da (mendekotasun-arazoak)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Ez instalatua"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Ez dago eskuragarri"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paketea"
++msgid_plural "Packages"
++msgstr[0] "Paketea"
++msgstr[1] "Paketeak"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arkitektura"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Bertsioa"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Biltegia"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Tamaina"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     %s%s%s.%s %s ordezten\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -892,57 +924,52 @@ msgstr ""
+ "Transakzio-laburpena\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Instalatu   %5.5s pakete\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instalatu"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Eguneratu   %5.5s pakete\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Eguneratu"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Kendu    %5.5s pakete\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Kendu"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Berrinstalatu   %5.5s pakete\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Berrinstalatu"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Instalatu   %5.5s paketeren bertsio zaharragoa\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Bertsio zaharra instalatu"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Kendua"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Mendekotasuna kendu da"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Mendekotasuna instalatu da"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Mendekotasuna eguneratu da"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Ordezkatua"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Huts egin du"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "bi"
+ 
+@@ -950,7 +977,7 @@ msgstr "bi"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -960,364 +987,416 @@ msgstr ""
+ "\n"
+ " Uneko deskarga bertan behera utzi da, %sinterrupt (ktrl-c) berriro%s  %s%s%s segundotan\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "erabiltzaileak utzia"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Guztira"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<ezarri gabea>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistema"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Batutako %d transakzioa %d-ra saltatzen, teilakatu egiten baitira"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Ez dago transakziorik"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Transakzio-ID, edo pakete, okerra(k) eman dira"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Komando-lerroa"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Saioa hasteko erabiltzailea"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "IDa"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Data eta ordua"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Ekintza(k)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Aldatua"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Ez da transakzio-IDrik eman"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Transakzio-ID okerra eman da"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Ez da aurkitu emandako transakzio-IDarekin"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Transakzio-ID bat baino gehiago aurkitu da!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Ez da transakzio-IDrik, edo paketerik, eman"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Bertsio zaharra instalatua"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Zaharragoa"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Berriagoa"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transakzio-IDa :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Hasiera-ordua     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Hasierako rpmdb-a    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u segundo)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minutu)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u ordu)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u egun)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Amaiera-ordua       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Amaierako rpmdb-a      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Erabiltzailea           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Itzulera-kodea    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Abortatua"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Hutsegiteak:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Hutsegitea:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Arrakasta"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Komando-lerroa   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Informazio gehigarri ez-lehenetsia gorde da: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transakzioa honekin burutu da:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Aldatutako paketeak:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Saltatutako paketeak:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb-arazoak:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptlet-irteera:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Erroreak:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instalatu"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Mendekotasunak instalatu"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Zaharkitutzat hartzen"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Ezabatu"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Berrinstalatu"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Bertsio zaharra instalatu"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Eguneratu"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Noiz"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Azken eguna"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Azken astea"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Azken 2 asteak"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Azken 3 hilabeteak"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Azken 6 hilabeteak"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Azken urtea"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Duela urtebete inguru"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Ez da %s transakziorik aurkitu"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transakzioaren IDa:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Historia-informazio gehigarria eskuragarri:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Ez da datu gehigarririk aurkitu izen horrekin"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Paketea        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Egoera          :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Tamaina        :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Eraikitze-ostalaria :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Eraikitze-ordua :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Paketatzailea  :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Hornitzailea   :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Lizentzia      :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URLa           :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "Jatorrizko RPMa :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Egikaritze-ordua :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Bidaltzailea   :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Arrazoia       :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Biltegi honetatik :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Instalatzailea  :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Aldatzailea    :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "instalatua"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "eguneraketa bat"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "ezabatua"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "berrinstalatua"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "bertsio-zahartze bat"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "zaharkitzen"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "eguneratua"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "zaharkitua"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> %s.%s %s:%s-%s paketea %s egingo da"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Transakzio-egiaztapena exekutatzen"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Mendekotasun-ebazpena berrabiarazten aldaketa berriekin."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Amaitu da mendekotasunen ebazpena"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Mendekotasuna prozesatzen: %s %s paketerako"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Paketea mantentzen: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Ebatzi gabeko mendekotasuna: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paketea: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1326,7 +1405,7 @@ msgstr ""
+ "\n"
+ "    Behar du: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1335,7 +1414,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1344,7 +1423,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1353,88 +1432,88 @@ msgstr ""
+ "        Ez da aurkitu"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Eguneratu duena"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Bertsio zaharra hobetsi duena"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Zaharkitutzat hartu duena"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Eskuragarri"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Gatazka prozesatzen: %s-(e)k gatazka du %s-(e)kin"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Transakzio-multzoa sortzen hautatutako paketeekin. Itxaron mesedez."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> Goiburua deskargatzen %s-(e)rako, transakzio-multzoan sartua izan "
+ "dadin."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Exekutatzen"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Lotan"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Ezin da eten"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zonbia"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Aztarnatua/Gelditua"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Ezezaguna"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Beste aplikazioa PackageKit da"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Beste aplikazioa %s da"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memoria: %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Hasiera: %s - duela %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Egoera  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1444,7 +1523,7 @@ msgstr ""
+ "\n"
+ "Irteten erabiltzaileak bertan behera utzi duelako"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1454,7 +1533,7 @@ msgstr ""
+ "\n"
+ "Irteten kanalizazio hautsiagatik"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1465,7 +1544,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1473,35 +1552,35 @@ msgstr ""
+ "Beste aplikazio batek yum blokeatuta dauka; irteten exit_on_lock-en "
+ "konfiguratuta dagoenari kasu eginez"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit errorea: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum errorea: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Errorea: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " --skip-broken erabiltzen saia zaitezke arazoa saihesteko"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " rpm -Va --nofiles --nodigest exekutatzen saia zaitezke"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Errore ezezaguna(k): Irteera-kodea: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1509,7 +1588,7 @@ msgstr ""
+ "\n"
+ "Mendekotasunak ebatzi dira"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Osatua!"
+ 
+@@ -1521,7 +1600,7 @@ msgstr " Mini erabilera:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Erroa izan behar duzu komando hau exekutatzeko."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1549,54 +1628,54 @@ msgstr ""
+ "\n"
+ "Informazio gehiagorako, jarri harremanetan zure banaketa- edo pakete-hornitzailearekin.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Arazoa duen biltegia:  %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Errorea: Pkgs-en zerrenda bat pasatu behar zaio %s-(e)ri"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Errorea: Bat datorren elementu bat behar da"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Errorea: Talde bat edo taldeen zerrenda bat behar da"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Errorea: Garbiketak aukera bat behar du: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Errorea: baliogabeko garbiketa-argumentua: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Ez dago argumenturik shell-arentzako "
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Shell-ari pasatutako fitxategi-izena: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Shell-ari argumentu gisa emandako %s fitxategia ez da existitzen."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Errorea: fitxategi bat baino gehiago eman zaio shell-ari argumentu gisa."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1606,307 +1685,300 @@ msgstr ""
+ " Exekutatu \"yum repolist all\" dauzkazun biltegiak ikusteko.\n"
+ " Biltegiak gaitzeko, yum-config-manager --enable <biltegia> erabil dezakezu"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKETEA..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instalatu pakete bat edo gehiago zure sisteman"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Instalazio-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKETEA...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Eguneratu zure sistemako pakete bat edo gehiago"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Eguneraketa-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Sinkronizatu instalatutako paketeak eskuragarri dauden azken bertsioetara"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Banaketaren sinkronizazio-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Erakutsi pakete bati edo pakete-multzo bati buruzko xehetasunak"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Instalatutako paketeak"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Pakete eskuragarriak"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Pakete gehigarriak"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Eguneratutako paketeak"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Paketeak zaharkitutzat hartzen"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Berriki gehitutako paketeak"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Ez dago bat datorren paketerik zerrendatzeko"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Zerrendatu pakete bat edo pakete-multzo bat"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Kendu pakete bat edo gehiago zure sistematik"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Kentze-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Erakutsi, edo erabili, taldeen informazioa"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Talde-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Ez dago talderik komandoa exekutatu ahal izateko"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Zerrendatu pakete-talde eskuragarriak"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instalatu talde bateko paketeak zure sisteman"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Kendu talde bateko paketeak zure sistematik"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Erakutsi pakete-talde bati buruzko xehetasunak"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Baliogabeko talde-azpikomandoa, erabili: %s."
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Sortu metadatuen katxea"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Katxe-fitxategiak egiten metadatu-fitxategi guztietarako"
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Honek denbora behar du, ordenagailu honen abiaduraren araberakoa"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metadatuen katxea sortu da"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "kendu katxeatutako datuak"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Aurkitu zein paketek hornitzen duen emandako balioaz"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Egiaztatu pakete-eguneraketarik dagoen eskuragarri"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Bilatu pakete-xehetasunak emandako katetik abiatuz"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Paketeak bilatzen: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Eguneratu paketeak zaharkituak kontuan hartuz"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Bertsio-berritzearen prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instalatu RPM lokala"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Pakete lokalen prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Zehaztu zein paketek hornitzen duen emandako mendekotasunaz"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Mendekotasunetarako paketeak bilatzen:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Exekutatu yum shell interaktiboa"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Yum shell konfiguratzen"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Zerrendatu pakete baten mendekotasunak"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Mendekotasunak aurkitzen: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Erakutsi konfiguratutako software-biltegiak"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "gaitua"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "desgaitua"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Biltegi-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Biltegi-izena      : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Biltegi-egoera  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Biltegi-berrikuspena: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Biltegi-etiketak    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Banaketa-biltegi-etiketak: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Biltegi-eguneratua: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Biltegi-pkgs: "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Biltegi-tamaina: "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Biltegi-baseurl: "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Biltegi-metaesteka: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Eguneratua    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Biltegi-ispiluak: "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Inoiz ez (azkena: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Berehala (azkena: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s segundo (azkena: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Biltegi-iraungipena: "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Biltegi-baztertu: "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Biltegi-barneratu: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Biltegi-baztertua: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Biltegi-izena: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "biltegi id-a"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "egoera"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "biltegi-izena"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Erakutsi erabilera-mezu laguntzailea"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Ez dago laguntzarik %s-(e)rako"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1916,7 +1988,7 @@ msgstr ""
+ "\n"
+ "aliasak: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1926,85 +1998,125 @@ msgstr ""
+ "\n"
+ "aliasa: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Berrinstalazio-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Berrinstalatu pakete bat"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Bertsio zaharragoaren instalazio-prozesua konfiguratzen"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Pakete baten bertsio zaharragoa instalatu"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Erakutsi bertsio bat makinarako eta/edo biltegi eskuragarriak."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum bertsio-taldeak:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Taldea   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Paketeak:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Instalatua:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Talde-instalatua:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Eskuragarri:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Talde-eskuragarri:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Erakutsi, edo erabili, transakzio-historia"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transakzioak:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Hasiera-ordua     :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Amaiera-ordua       :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Zenbaketa   :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Baliogabeko historia-azpikomandoa, erabili: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Ez daukazu historiaren DBra sartzeko baimenik."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Begiratu arazorik dagoen rpmdb-an"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "kargatu gordetako transakzio bat fitxategi-izen batetik"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Ez da gordetako transakzioaren fitxategia adierazi."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "transakzioa kargatzen %s fitxategitik"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transakzioa kargatua %s-(e)tik, %s kide"
+@@ -2015,28 +2127,35 @@ msgstr "Transakzioa kargatua %s-(e)tik, %s kide"
+ msgid " Yum checks failed: %s"
+ msgstr " Yum egiaztapenak huts egin du: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "Beste aplikazio batek yum blokeatuta dauka; irten dadin itxaroten..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++"Ez dago irakurtzeko/idazteko baimenik uneko direktorioan, errora mugitzen"
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "Ezin izan da fitxategia blokeatu; irteten"
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr "Beste aplikazio batek yum blokeatuta dauka; irten dadin itxaroten..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Mendekotasunak ebazten"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Zure transakzioa gorde egin da, berrexekutatzeko erabili hau: yum load-"
+-"transacion %s"
++"Zure transakzioa gorde egin da, berrexekutatzeko erabili hau:\n"
++" yum load-transacion %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2046,75 +2165,75 @@ msgstr ""
+ "\n"
+ "Irteten erabiltzeileak eragiketa bertan behera utzi duelako."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ "Transakzio-multzoak konfiguratzen konfigurazio-klasea aktibatu baino lehen"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Baliogabeko tsflag konfigurazio-fitxategian: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Bilatzen pkgSack mendekotasunetarako: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Kidea: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s bihurtu instalatzeko"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "%s paketea gehitzen %s moduan"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "%s paketea kentzen"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s-(e)k behar du: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s-(e)k %s behar du"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Beharrezko eskakizuna blokeatu da jadanik"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Beharrezko eskakizuna ez da pakete-izena. Bilatzen: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Balizko hornitzailea: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Modua %s da %s-(r)en hornitzailerako: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "pkg-rako moduak %s-(e)az hornitzen: %s"
+@@ -2122,116 +2241,116 @@ msgstr "pkg-rako moduak %s-(e)az hornitzen: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "%s eguneratzen saiatzen dep konpontzeko"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Ez da eguneratze-biderik aurkitu %s-(e)rako Hutsegitea!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s paketeak behar duen %s ezabatzeko markatu da"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: %s zaharkitu bihurtzen %s ordez, mendekotasuna konpontzeko."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: %s eguneratzen mendekotasuna konpontzeko."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Ezin da eguneraketa-biderik aurkitu %s-(e)rako"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "%s-(r)en bat etortze azkarra %s-(e)rako behar delako"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s hornitutako paketeetan dago baina jadanik instalatuta dago, kentzen."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Konponketak ekar ditzakeen %s paketeak instantzia berria du ts-n."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "Konponketak ekar ditzakeen %s paketeak instantzia berria du instalatuta."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s jadanik tx-en, saltatzen hau"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: %s markatzen %s-(r)en eguneraketa gisa"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: %s markatzen %s-(r)en instalazio gisa"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Arrakasta - transakzio hutsa"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Berrabiarazten begizta"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Amaitzen mendekotasun-prozesatzea"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Arrakasta - mendekotasunak konpondu dira"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "%s-(r)en mendekotasunak egiaztatzen"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "%s bilatzen %s-(e)k behar duelako"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "compare_providers() exekutatzen %s-(e)rako"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "Arkitektura hobea %s po-an"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s-(e)k %s zaharkitu bihurtzen du"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2240,146 +2359,146 @@ msgstr ""
+ "%s eta %s alderatu dira %s-(e)n\n"
+ "  Irabazlea: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "%s eta %s sourcerpm komuna"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "%s oinarrizko paketea instalatu da %s-(e)rako"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "%s-(r)en aurrizki komuna %s eta %s artean"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "minimoa behar du: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Irabazlea: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Galtzailea (%d-(r)ekin): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Ordenarik onena: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ "doConfigSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "%r biltegia: Errorea konfigurazioa analizatzean: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "%r biltegiak ez du izenik konfigurazioan, id erabiltzen"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "pluginak jadanik hasieratu dira"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ "doRpmDBSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "RPMDB lokala irakurtzen"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Pakete-multzoak konfiguratzen"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "%s biltegiaren biltegi-objektuak ez dauka _resetSack metodorik\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "beraz, biltegi hau ezin da berrezarri.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ "doUpdateSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Eguneraketa-objektua eraikitzen"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ "doGroupSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Taldeen metadatuak eskuratzen"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Biltegiko talde-fitxategia gehitzen: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Taldeen fitxategiak biltegitik gehitzeak huts egin du: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Ez dago talderik eskuragarri biltegietan"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "pkgtags metadatuak eskuratzen"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Etiketak gehitzen biltegitik: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Ezin izan dira Pkg etiketak gehitu biltegitik: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Fitxategi-zerrendaren informazio gehigarria inportatzen"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "%s%s%s programa yum-utils paketean dago."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2387,21 +2506,21 @@ msgstr ""
+ "Amaitu gabeko transakzioak geratu dira. Lehenengo yum-complete-transaction "
+ "exekutatu beharko zenuke haiek amaitzeko."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Behar ez diren gainerako mendekotasunak aurkitzen"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Babestutako multilib bertsioak: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Babestuta dagoen \"%s\" kentzen saiatzen"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2409,91 +2528,94 @@ msgstr ""
+ "\n"
+ "Mendekotasun-arazoengatik saltatutako paketeak:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s %s-(e)tik"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Aurretiaz existitzen ziren %d rpmdb arazo aurkitu dira, 'yum check' "
+ "aginduak hurrengoa ematen du:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Abisua: RPMDB yum-etik kanpo aldatu da."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "galdutako betebeharrak"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "gatazka instalazioan"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Abisua: transakzioan zehar erroreak scriptlet-ekin edo beste errore ez-larri"
+ " batzuk gertatu dira"
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transakzioa ezin izan da abiarazi:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Ezin izan da transakzioa exekutatu."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "%s transakzio-fitxategia kentzeak huts egin du"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s instalatuko zela uste zen baina ez dago instalatuta!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s kenduko zela uste zen baina ez da kendu!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Ezin da %s blokeoa ireki: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Ezin izan da egiaztatu %s PIDa aktibo dagoen ala ez"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ "%s blokeoa existitzen da: beste kopia bat %s PIDarekin ari da exekutatzen"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Ezin izan da blokeoa sortu %s-(e)n: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2502,41 +2624,30 @@ msgstr ""
+ "Paketea ez dator bat esandako deskargarekin. Iradokizuna: exekutatu yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Ezin izan da checksum-a egin"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paketea ez dator bat checksum-arekin"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "paketeak huts egin du checksum-ean baina katxea gaituta dago %s-(e)rako"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "%s-(r)en kopia lokala erabiltzen"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Ez dago aski espaziorik %s deskarga-direktorioan\n"
+-"    *lekua %s\n"
+-"    * behar da %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Goiburua ez dago osorik."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2544,62 +2655,64 @@ msgstr ""
+ "Goiburua ez dago katxe lokalean eta katxea-bakarrik modua dago gaituta. Ezin"
+ " da %s deskargatu"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s-(r)entzako gako publikoa ez dago instalatuta"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Arazoa %s paketea irekitzen"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "%s-(r)entzako gako publikoa ez da fidagarria"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "%s paketea ez dago sinatuta"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Ezin da %s kendu"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s kendu da"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Ezin da %s fitxategi %s kendu"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s fitxategi %s kendu da"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s fitxategi kendu dira"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "Fitxategi %d %s kendu da"
++msgstr[1] "%d %s fitxategi kendu dira"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Bat etortze bat baino gehiago dago multzoan %s(e)rako"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ezer ez dator bat %s-(r)ekin.%s %s:%s-%s eguneraketatik"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2607,122 +2720,124 @@ msgstr ""
+ "searchPackages() desagertu egingo da yum-en etorkizuneko bertsio batean."
+ "                      Erabili searchGenerator() haren ordez. \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "%d pakete bilatzen"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Pakete %d bilatzen"
++msgstr[1] "%d pakete bilatzen"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "Pakete %s bilatzen"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "fitxategi-sarreretan bilatzen"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "hornitze-sarreretan bilatzen"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Ez dago talde-daturik eskuragarri konfiguratutako biltegietarako"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Ez da existitzen %s deritzon talderik"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "%s paketea ez da markatua izan %s taldean"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "%s taldeko %s paketea gehitzen"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Ez dago %s izeneko paketerik eskuragarri instalatua izateko"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Abisua: %s taldeak ez du paketerik."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "%s taldeak %u baldintza-pakete ditu, instalatuak izan daitezkeenak."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "%s pakete-tuplea ez da aurkitu pakete-multzoan"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "%s pakete-tuplea ez da aurkitu rpmdb-n"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Baliogabeko bertsio-bandera: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Ez da paketerik aurkitu %s-(e)rako"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Package Object ez da pakete-objektuen instantzia bat"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Ez da instalatzeko ezer zehaztu"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Hornitze birtualen edo fitxategi-hornitzeen bila %s-(e)rako"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Ez dago bat etortzerik argumenturako: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "%s paketea instalatuta dago eta ez dago eskuragarri"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Ez dago paketerik eskuragarri instalatua izateko"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paketea: %s - jadanik transakzio-multzoan"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ "%s paketea zaharkitua dago, bere ordezkoa den %s paketea instalatuta dago"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2731,97 +2846,103 @@ msgstr ""
+ "%s paketea zaharkitua dago, eta bere ordezkoa den %s paketeak ez ditu "
+ "eskakizunak betetzen"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "%s paketea zaharkitua dago, bere ordezkoa %s da, %s instalatzen saiatzen"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "%s paketea jadanik instalatuta dago bere azken bertsioan"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Bat datorren %s paketea jadanik instalatuta dago. Eguneraketak egiaztatzen."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Dena eguneratzen"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Ez eguneratzen jadanik zaharkitua dagoen paketea: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Ez dago eguneratzeko bat datorren paketerik: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paketea zaharkitua dago jadanik: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Ez eguneratzen zaharkitua dagoen paketea: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Ez eguneratzen jadanik eguneratua dagoen paketea: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Ez dago kentzeko bat datorren paketerik"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Ez dago kentzeko bat datorren paketerik: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Exekutatzen ari den kernela saltatzen: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "%s kentzen transakziotik"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Ezin da ireki: %s. Saltatzen."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "%s aztertzen: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Ezin da lokalean instalatu deltarpm: %s. Saltatzen."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Ezin da %s paketea gehitu transakzioari. Arkitektura ez da bateragarri: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Ezin da %s paketea instalatu. Instalatutako %s paketeak zaharkitu egin du"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2830,7 +2951,7 @@ msgstr ""
+ "%s paketea ez dago instalatuta, ezin da eguneratu. Exekutatu yum install "
+ "hura instalatzeko."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2839,96 +2960,101 @@ msgstr ""
+ "%s.%s paketea ez dago instalatua, ezin da eguneratu. Exekutatu yum install "
+ "hura instalatzeko."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "%s baztertzen"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s markatzen instalatua izateko"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s markatzen %s(r)en eguneraketa gisa"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: ez du instalatutako paketea eguneratzen."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Ezin da fitxategia ireki: %s. Saltatzen."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Arazoa berrinstalatzean: kentzeko paketeak ez datoz bat"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Arazoa berrinstalatzean: %s paketea ez dator bat instalazioarekin"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Ez dago paketerik eskuragarri bertsio zaharragoa instalatzeko"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "%s paketeari instalazio anitz onartzen zaizkio, saltatzen"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ez dago bat etortzerik eskuragarri dagoen paketerako: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Bertsio-berritzea soilik dago eskuragarri pakete honetarako: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Bertsio zaharragoa instalatzeak huts egin du: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Eguneraketak huts egin du: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Gakoa atzitzen %s-(e)tik"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG gakoaren atzipenak huts egin du: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ "%s gakoaren GPG gako-sinadura ez dator bat biltegiaren CA gakoarekin: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "GPG gako-sinadura CA gakoen aurka egiaztatu dira"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "GPG gako baliogabea %s-(e)tik: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG gakoaren analisiak huts egin du: gakoak ez dauka %s balioa"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2941,7 +3067,7 @@ msgstr ""
+ " Paketea: %s (%s)\n"
+ " Nondik   : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2952,25 +3078,25 @@ msgstr ""
+ " Erabiltzaile-IDa: \"%s\"\n"
+ " Nondik  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "%s-(e)ko GPG gakoa (0x%s) jadanik instalatuta dago"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Gakoaren inportazioak huts egin du (%d kodea)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Gakoa ongi inportatu da"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Ez da gakorik instalatu"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2979,25 +3105,25 @@ msgstr ""
+ "\"%s\" biltegirako zerrendatu diren GPG gakoak jadanik instalatuta daude, baina ez dira zuzenak pakete honetarako.\n"
+ "Egiaztatu gako URL zuzena konfiguratuta dagoela biltegi honetarako."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Gako(ar)en inportazioak ez du balio izan, gako okerra(k)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "%s (0x%s)-(e)ko GPG gakoa jadanik inportatuta dago"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Gakoaren inportazioak huts egin du"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Ez da gakorik instalatu %s biltegirako"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3006,160 +3132,184 @@ msgstr ""
+ "\"%s\" biltegirako zerrendatu diren GPG gakoak jadanik instalatuta daude, baina ez dira zuzenak.\n"
+ "Egiaztatu gako URL zuzena konfiguratuta dagoela biltegi honetarako."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Ezin izan da ispilu egokia aurkitu."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Erroreak aurkitu dira paketeak deskargatzean."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Jakinarazi errore hau %s-(e)n"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Probatu transakzio-erroreak: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Ezin izan da katxe-direktorioa ezarri: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Mendekotasunak ez dira konpondu. Ez da gordeko konpondu gabeko transakzioa."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Ezin izan da %s transakzio-fitxategia gorde: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Ezin izan da atzitu/irakurri gordetako %s transakzioa: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
++msgstr "rpmdb ver mismatched saved transaction version, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ezikusten, eskatu den bezala."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " abortatzen."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "ezin da tsflags aurkitu edo tsflags ez da balio osoa."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "txmbr uneko egoera ezezagunean aurkitu da: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Ezin izan da txmbr aurkitu: %s %s egoeran"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Ezin izan da txmbr aurkitu: %s jatorritik: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Transakzio-kideak, erlazioak galdu dira edo ts aldatua izan da,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " ezikusten, eskatu den bezala. Redepsolve erabili behar duzu!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s jadanik bisitatu da eta ezin da kendu."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "%s paketearen revdep-ak aztertzen"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s paketeak %s revdep-a du, jadanik erabiltzaileak instalatutakoa."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s paketeak ez dauka erabiltzaileak instalatutako revdep-ik."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Kargatutako pluginak: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Ez dago bat etortzerik pluginerako: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "\"%s\" plugina ez da kargatuko, desgaituta baitago"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Ezin izan da \"%s\" plugina inportatu"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "\"%s\" pluginak ez du zehaztu behar duen API bertsioa"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "\"%s\" pluginak APIaren %s bertsioa behar du. Onartutako APIa %s da."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "\"%s\" plugina kargatzen"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "\"%s\" izena duten bi plugin edo gehiago daude pluginak bilatzeko bide-"
+ "izenean"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Ez da %s konfigurazio-fitxategia aurkitu"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Ezin izan da aurkitu %s pluginaren konfigurazio-fitxategia"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "komandoen erregistroa ez da onartzen"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "aurkitzen ez diren betebeharrak ditu"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "instalatutako gatazkak dauzka"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s %s-(r)en bikoiztua da"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s zaharkitua utzi du %s-(e)k"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s-(e)k %s hornitzen du baina ezin da aurkitu"
+@@ -3168,6 +3318,17 @@ msgstr "%s-(e)k %s hornitzen du baina ezin da aurkitu"
+ msgid "Repackaging"
+ msgstr "Birpaketatzen"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Ez dago aski espaziorik %s deskarga-direktorioan\n"
++"    *lekua %s\n"
++"    * behar da %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/fi.po b/po/fi.po
+index 269bf15..021b9b7 100644
+--- a/po/fi.po
++++ b/po/fi.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Ville-Pekka Vainio <vpivaini at cs.helsinki.fi>, 2011
++# Translators:
++# Ville-Pekka Vainio <vpivaini at cs.helsinki.fi>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: fi\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Päivitetään"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Poistetaan"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Asennetaan"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Vanhennettu"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Päivitetty"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Poistettu"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Asennettu"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Ei otsaketta – häh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Uudelleenpaketoi"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Virhe: virheellinen tulostetila: %s, paketti %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Poistettiin: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Poistetaan"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Siivotaan"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Komento ”%s” on jo määritelty"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Tehdään asennuslähdeasetuksia"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Luetaan asennuslähteiden metadataa paikallisista tiedostoista"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Asetusvirhe: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Valitsinvirhe: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Asennettiin : %s-%s ajassa %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Käännettiin : %s ajassa %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Suoritettiin: %s ajassa %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Jokin komento on annettava"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Komentoa %s ei ole olemassa. Käytä komentoa %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Vaadittu levytila:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Vähintään %d Mt levytilaa tarvitaan tiedostojärjestelmällä %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Vähintään %d Mt levytilaa tarvitaan tiedostojärjestelmällä %s.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,61 +143,61 @@ msgstr ""
+ "Yhteenveto virheistä\n"
+ "--------------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Yritettiin suorittaa transaktio, mutta ei ole mitään tehtävää. Lopetetaan."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Lopetetaan, käyttäjä antoi lopetuskomennon"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Ladataan paketteja:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Virhe pakettien latauksessa:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "VIRHE RPM on päivitettävä, jotta se osaa käsitellä:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM on päivitettävä"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Ilmoita tästä ongelmasta osoitteeseen %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Suoritetaan transaktiotestiä"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Transaktiotarkistuksen virhe:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transaktiotesti onnistui"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Suoritetaan transaktiota"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -202,238 +205,261 @@ msgstr ""
+ "Avaimia ei tuoda automaattisesti, kun yumia suoritetaan ilman valvontaa.\n"
+ "Käytä valitsinta ”-y” tämän muuttamiseksi."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Tarkoititko: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ "Paketti tai paketit %s%s%s ovat saatavilla, mutta niitä ei ole asennettu."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Pakettia %s%s%s ei ole saatavilla."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Asennettavat paketit"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Ei mitään tehtävää"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pakettia merkitty päivitettäväksi"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Yhtään pakettia ei ole merkitty päivitettäväksi"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pakettia merkitty jakelusynkronointia varten"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Yhtään pakettia ei ole merkitty jakelusynkronointia varten"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pakettia merkitty poistettavaksi"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Yhtään pakettia ei ole merkitty poistettavaksi"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Vanhennettavat paketit"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (asennuslähteestä %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Asennettua pakettia %s%s%s%s ei ole saatavilla."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Uudelleenasennettavat paketit"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Yhtään pakettia ei annettu"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Asennettavat paketit"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Löytyi: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Varoitus: hakutuloksia ei löytynyt hakusanalle %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Hakutuloksia ei löytynyt"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Hakusanalla %s ei löytynyt pakettia"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Siivotaan asennuslähteitä:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Siivotaan kaikki"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Siivotaan otsakkeet"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Siivotaan paketit"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Siivotaan XML-metadata"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Siivotaan tiedokannan välimuisti"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Siivotaan välimuistin vanhentumiseen liittyvä metadata"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Siivotaan välimuistissa oleva rpm-tietokannan data"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Siivotaan liitännäiset"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Asennetut ryhmät:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Saatavilla olevat ryhmät:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Valmis"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Varoitus: Ryhmää %s ei ole olemassa."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Missään pyydetyssä ryhmässä ei ole yhtään asennettavaa tai päivitettävää "
+ "pakettia"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakettia asennettavana"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Ryhmää nimeltä %s ei ole olemassa"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Ei yhtään poistettavaa pakettia ryhmien perusteella"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d poistettavaa pakettia"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paketti %s on jo asennettu, ohitetaan"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Hylätään paketti %s.%s, jota ei voi verrata"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Toista pakettia nimeltä %s ei ole asennettuna, lisätään mahdollisesti "
+ "asennettavien luetteloon"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Liitännäisten valitsimet"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Komentorivivirhe: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -444,290 +470,294 @@ msgstr ""
+ "\n"
+ "%s: valitsin %s vaatii argumentin"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color vaatii yhden seuraavista argumenteista: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "näytä tämä ohjeviesti ja lopeta"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "hyväksy virheet"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "toimi kokonaan välimuistista, älä päivitä sitä"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "asetustiedoston sijainti"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "komennon suurin odotusaika"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "virheenjäljitystulosteiden taso"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "näytä duplikaatit asennuslähteissä ja list/search-komennoissa"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "virhetulostustaso"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm:n virheenjäljitystulosteiden taso"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "hiljainen toiminta"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "yksityiskohtaset tulosteet"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "vastaa kyllä kaikkiin kysymyksiin"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "näytä Yumin versio ja lopeta"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "aseta asennusjuuri"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "ota käyttöön yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "poista käytöstä yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "jätä pois paketteja nimen tai jokerimerkkien perusteella"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ "ota pakettien pois jättäminen pois käytöstä pääasetuksille, jollekin "
+ "asennuslähteelle tai kaikelle"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "ota käyttöön vanhentuneiden pakettien käsittely päivitysten aikana"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "poista Yumin liitännäiset käytöstä"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "poista GPG-allekirjoitusten tarkistus käytöstä"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "poista liitännäisiä käytöstä nimen perusteella"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "ota liitännäisiä käyttöön nimen perusteella"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "ohita paketit, joilla on riippuvuusongelmia"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "käytetäänkö värejä"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "aseta $releasever-muuttujan arvo yumin asetuksissa ja "
+ "asennuslähdetiedostoissa"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "aseta mielivaltaisia asetus- ja asennuslähdevalitsimia"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "tammi"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "helmi"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "maalis"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "huhti"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "touko"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "kesä"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "heinä"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "elo"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "syys"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "loka"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "marras"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "joulu"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Kokeillaan toista peilipalvelinta."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nimi            : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arkkitehtuuri   : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch           : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versio          : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Julkaisu        : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Koko            : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Asennuslähde    : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Asennuslähteestä: %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Toimittaja      : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Toimitusaika    : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Käännösaika     : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Asennusaika     : %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Asentaja        : %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Muuttanut       : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Yhteenveto      :"
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL             : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Lisenssi        :"
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Kuvaus          : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "k"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "kyllä"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "e"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ei"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Onko tämä ok [k/E]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -736,154 +766,156 @@ msgstr ""
+ "\n"
+ "Ryhmä: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Ryhmätunnus: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Kuvaus: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Pakolliset paketit:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Oletuspaketit:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Valinnaiset paketit:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Ehdolliset paketit:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paketti: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Tällä paketilla ei ole riippuvuuksia"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  riippuvuus: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Toteutumaton riippuvuus"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Vastaavuus  :"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Lisenssi    : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Tiedostonimi: %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Muuta       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Kokonaislatausmäärää laskettaessa tapahtui virhe"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Koko yhteensä: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Ladattavaa yhteensä: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Koko asennettuna: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Asennuskokoa laskettaessa tapahtui virhe"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Asennetaan uudelleen"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Varhennetaan"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Asennetaan riippuvuuksien vuoksi"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Päivitetään riippuvuuksien vuoksi"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Poistetaan riippuvuuksien vuoksi"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Ohitettiin (riippuvuusongelmia)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Ei asennettu"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paketti"
++msgid_plural "Packages"
++msgstr[0] "Paketti"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arkkitehtuuri"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versio"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Asennuslähde"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Koko"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     korvaa  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -894,57 +926,52 @@ msgstr ""
+ "Transaktion yhteenveto\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Asennetaan           %5.5s paketti(a)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Asennus"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Päivitetään          %5.5s paketti(a)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Poistetaan           %5.5s paketti(a)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Asennetaan uudelleen %5.5s paketti(a)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Uudelleenasennus"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Varhennetaan         %5.5s paketti(a)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Varhennus"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Poistettu"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Poistettu riippuvuuksia"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Asennettu riippuvuuksia"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Päivitetty riippuvuuksia"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Korvattu"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Epäonnistui"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "kahden"
+ 
+@@ -952,7 +979,7 @@ msgstr "kahden"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -963,365 +990,417 @@ msgstr ""
+ " Nykyinen lataus peruttiin, %skeskeytä (ctrl-c) uudelleen%s %s%s%s sekunnin aikana\n"
+ "ohjelman lopettamiseksi.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "käyttäjä keskeytti"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Yhteensä"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "A"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "Vanh."
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "P"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "U"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "Varh."
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "P"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<ei asetettu>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Järjestelmä"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Annettu virheellinen transaktiotunnus tai paketit"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Kirjautunut käyttäjä"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "Tunniste"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Päivämäärä ja kellonaika"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Toiminnot"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Muutettu"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Transaktiotunnusta ei annettu"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Annettiin virheellinen transaktiotunnus"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Annettua transaktiotunnusta ei löytynyt"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Löytyi useampi kuin yksi transaktiotunnus!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Transaktiotunnusta tai pakettia ei annettu"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Varhennettu"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Vanhempi"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Uudempi"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transaktiotunnus      :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Aloitusaika           :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "RPM-tietokanta alussa :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Lopetusaika           :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "RPM-tietokanta lopussa:"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Käyttäjä              :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Lopetuskoodi          :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Keskeytetty"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Epäonnistui:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Onnistui"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Komentorivi           :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Tallennetut lisätiedot: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transaktio suoritettiin:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Muutetut paketit:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Ohitetut paketit:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb:n ongelmia:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Sovelman tuloste:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Virheet:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Asennus"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Riippuvuuden asennus"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Vanhentava"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Poisto"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Uudelleenasennus"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Varhennus"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Päivitys"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Aika"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Eilen"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Viime viikolla"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Viimeisen kahden viikon aikana"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Viimeisen kolmen kuukauden aikana"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Viimeisen kuuden kuukauden aikana"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Viime vuonna"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Yli vuosi sitten"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Transaktiota %s ei löytynyt"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transaktiotunnus:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Käytettävissä olevaa historiatietoa:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Lisätietoja ei löytynyt tällä nimellä"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "asennettavaksi"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "poistettavaksi"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "asennettavaksi uudelleen"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "päivitettäväksi"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "vanhennettavaksi"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Suoritetaan transaktiotarkistusta"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Aloitetaan riippuvuuksien tarkistus uudelleen uusien muutosten kanssa."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Riippuvuuksien tarkistus valmistui"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Käsitellään riipuvuutta: %s paketille: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Pidetään paketti: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Ratkaisematon riippuvuus: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paketti: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1330,7 +1409,7 @@ msgstr ""
+ "\n"
+ "    Vaatii: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1339,7 +1418,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1348,7 +1427,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1357,85 +1436,85 @@ msgstr ""
+ "        Ei löytynyt"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Päivittää"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Varhentaa"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Vanhentaa"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Saatavilla"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Käsitellään ristiriitaa: %s on ristiriidassa paketin %s kanssa"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Täytetään transaktiojoukkoa valituilla paketeilla. Odota hetki."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Ladataan paketin %s otsaketta transaktiojoukkoon lisäämseksi."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Suoritetaan"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Unessa"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Ei voi keskeyttää"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Jäljitetään/Pysäytetty"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Tuntematon"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Toinen ohjelma on: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Toinen ohjelma on: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Muisti    : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Aloitettu : %s - %s sitten"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Tila      : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1445,7 +1524,7 @@ msgstr ""
+ "\n"
+ "Lopetetaan käyttäjän peruttua"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1455,7 +1534,7 @@ msgstr ""
+ "\n"
+ "Lopetetaan putken katkettua"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1466,7 +1545,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1474,36 +1553,36 @@ msgstr ""
+ "Toinen ohjelma pitää tällä hetkellä yumin lukkoa. Lopetetaan, kuten "
+ "exit_on_lock määrää"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit-virhe: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum-virhe: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Virhe: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Ongelman pystyy ehkä kiertämään valitsimella --skip-broken"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ " Kannattaa myös kokeilla komennon rpm -Va --nofiles --nodigest suorittamista"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Tuntematon virhe: lopetuskoodi: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1511,7 +1590,7 @@ msgstr ""
+ "\n"
+ "Riippuvuudet on ratkaistu"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Valmis!"
+ 
+@@ -1523,7 +1602,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Vain pääkäyttäjä voi suorittaa tämän komennon."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1552,54 +1631,54 @@ msgstr ""
+ "\n"
+ "Lisätietoja saattaa olla jakelun tai pakettien tarjoajan ohjeissa.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Virhe: komennolle %s on annettava luettelo paketeista"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Virhe: Tarvitaan vastaava kohta"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Virhe: Tarvitaan ryhmä tai ryhmäluettelo"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Virhe: clean vaatii valitsimen: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Virhe: virheellinen clean-argumentti: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "shellille ei annettu argumenttia"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Tiedostonimi välitettiin shellille: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ "Tiedosto %s annettiin argumenttina shellille, mutta sitä ei ole olemassa."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Virhe: useampi kuin yksi tiedosto annettiin argumenttina shellille."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1609,306 +1688,299 @@ msgstr ""
+ " Suorita ”yum repolist all” kaikkien asennuslähteiden luettelemiseksi.\n"
+ " Voit ottaa asennuslähteitä käyttöön komennolla yum-config-manager --enable <asennuslähde>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKETTI..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Asenna paketti tai paketteja järjestelmään"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Aloitetaan asennusprosessi"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKETTI...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Päivitä paketti tai paketteja järjestelmään"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Aloitetaan päivitysprosessi"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Synkronoi asennetut paketit uusimpiin saatavilla oleviin versioihin"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Aloitetaan jakelusynkronointiprosessi"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Näytä tietoja paketista tai pakettiryhmästä"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Asennetut paketit"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Saatavilla olevat paketit"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Lisäpaketit"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Päivitetyt paketit"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Vanhentavat paketit"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Äskettäin lisätyt paketit"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Ei yhtään vastaavaa pakettia lueteltavaksi"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Luettele paketti tai pakettiryhmä"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Poista paketti tai paketteja järjestelmästä"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Aloitetaan poistoprosessi"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Aloitetaan ryhmäprosessi"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Ei ryhmiä joille suorittaa komentoa"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Luettele saatavilla olevat pakettiryhmät"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Asenna ryhmään kuuluvat paketit järjestelmään"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Poista ryhmään kuuluvat paketit järjestelmästä"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Näytä tietoja pakettiryhmästä"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Luo metadatavälimuisti"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Luodaan välimuistitiedostoja kaikille metadatatiedostoille"
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Tämä voi kestää jonkin aikaa riippuen tietokoneen nopeudesta"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metadatavälimuisti on luotu"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Poista välimuistissa oleva data"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Etsi annetun arvon tarjoava paketti"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Etsi saatavilla olevia pakettipäivityksiä"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Etsi pakettitiedoista annettua merkkijonoa"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Etsitään paketteja: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Päivitä paketit ottaen vanhennukset huomioon"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Aloitetaan päivitysprosessi"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Asenna paikallinen RPM-tiedosto"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Aloitetaan paikallinen pakettiprosessi"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Selvitä mikä paketti tarjoaa annetun riippuvuuden"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Etsitään riippuvuutta paketeista:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Suorita interaktiivinen yum-komentorivi"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Asetetaan Yum-komentoriviä"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Luettele paketin riippuvuudet"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Etsitään riippuvuuksia: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Näytä asetetut asennuslähteet"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "käytössä"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "poissa käytöstä"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Lähdetunnus        : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Lähdenimi          : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Lähteen tila       : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Lähderevisio      : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Lähteen tagit      : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Lähteen jakelutagit: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Lähde päivitetty   : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Lähteen paketit    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Lähteen koko       : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Lähteen baseurl    : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Lähteen metalink   : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Päivitetty       : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Lähteen peilit     : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Ei koskaan (viimeksi: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Heti (viimeksi: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekunti(a) (viimeksi: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Lähde vanhentuu    : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Lähde ohittaa      : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Lähde sisältää     : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Lähde ohitettu     : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "lähdetunnus"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "tila"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "lähdenimi"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Näytä käyttöohjeviesti"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Ei ohjeita komennolle %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1918,7 +1990,7 @@ msgstr ""
+ "\n"
+ "muut nimet: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1928,86 +2000,126 @@ msgstr ""
+ "\n"
+ "toinen nimi: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Aloitetaan uudelleenasennusprosessi"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "asenna paketti uudelleen"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Aloitetaan varhennusprosessi"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "varhenna paketti"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ "Näytä koneella ja/tai käytettävissä olevissa asennuslähteissä oleva versio"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum-versioryhmät:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Ryhmä:"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Paketit:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Asennettu:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Asennettu ryhmässä:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Saatavilla:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Saatavilla ryhmässä:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Näytä tai käytä transaktiohistoriaa"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Virheellinen historyn alikomento, käytä: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Sinulla ei ole historiatietokannan käyttöoikeutta"
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Etsi ongelmia rpm-tietokannasta"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -2018,28 +2130,34 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Toinen ohjelma pitää tällä hetkellä yumin lukkoa, odotetaan että se "
+ "lopettaa..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Ratkaistaan riippuvuuksia"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2049,74 +2167,74 @@ msgstr ""
+ "\n"
+ "Lopetetaan käyttäjän peruttua."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Asetetaan TransactionSetsit ennen kuin asetusluokka on käytössä"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Virheellinen tsflag asetustiedostossa: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Etsitään pkgSackista riippuvuutta: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Jäsen: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s muutettu asennukseksi"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Lisätään paketti %s tilassa %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Poistetaan paketti %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s vaatii: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s vaatii %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Tarvittava vaatimus on jo etsitty, huijataan"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Tarvittava vaatimus ei ole pakettinimi. Etsitään: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Mahdollinen tarjoaja: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Tila %s riippuvuuden %s: %s tarjoajalla"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Riippuvuuden %s: %s tarjoavan paketin tila"
+@@ -2124,117 +2242,117 @@ msgstr "Riippuvuuden %s: %s tarjoavan paketin tila"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ "TSINFO: paketti %s, joka vaatii riippuvuuden %s on merkitty poistettavaksi"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: Vanhennetaan paketti %s paketilla %s riippuvuuden ratkaisemiseksi."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Päivitetään paketti %s riippuvuuden ratkaisemiseksi."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Päivityspolkua ei löydetty riippuvuudelle: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Pikavastaavuus %s vaatimukselle %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s on tarjoavissa paketeissa, mutta se on jo asennettuna, poistetaan."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Mahdollisella ratkaisevalla paketilla %s on uudempi instanssi ts:ssä."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "Mahdollisella ratkaisevalla paketilla %s on uudempi instanssi asennettuna."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "paketti %s on jo ts:ssä, ohitetaan"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Merkitään paketti %s päivitykseksi paketille %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Merkitään %s asennukseksi paketille %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Onnistui - tyhjä transaktio"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Käynnistetään silmukka uudelleen"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Riippuvuuksien käsittely päättyy"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Onnistui – riippuvuudet on ratkaistu"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Tarkistetaan paketin %s riippuvuuksia"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "etsitään riippuvuutta %s paketille %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Suoritetaan compare_providers() paketeille %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "po:ssa %s on parempi arkkitehtuuri"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "paketti %s vanhentaa paketin %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2243,142 +2361,142 @@ msgstr ""
+ "archdist vertasi paketteja %s ja %s arkkitehtuurilla %s\n"
+ "  Voittaja: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "paketeilla %s ja %s on yhteinen lähde-RPM"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "peruspaketti %s on asennettu paketille %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "yhteinen %s merkin mittainen etuliite paketeilla %s ja %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "vaatii vähintään: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Voittaja: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Häviäjä (arvolla %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Paras järjestys %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Asennuslähde %r: Virhe jäsennettäessä asetuksia: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Asennuslähteen %r asetuksista puuttuu nimi, käytetään tunnistetta"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "liitännäiset on jo alustettu"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Luetaan paikallista RPM-tietokantaa"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Asetetaan pakettisäkkejä"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "asennuslähteen %s oliosta puuttuu _resetSack-metodi\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "siksi tätä asennuslähdettä ei voi palauttaa alkutilaan.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Rakennetaan päivitysoliota"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() poistetaan jossakin Yumin tulevassa versiossa.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Haetaan ryhmien metadataa"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Lisätään ryhmätiedosto asennuslähteestä: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Ryhmätiedoston lisääminen asennuslähteelle epäonnistui: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Yhtään ryhmää ei ole saatavilla mistään asennuslähteestä"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Haetaan pakettitagien metadataa"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Lisätään tagit asennuslähteestä: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Pakettitagien lisääminen asennuslähteelle epäonnistui: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Tuodaan lisää tiedostoluettelotietoa"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Ohjelma %s%s%s on paketissa yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2386,21 +2504,21 @@ msgstr ""
+ "Keskeneräisiä transaktioita on jäljellä. Niiden päättämiseksi on suositeltua"
+ " suorittaa ensin yum-complete-transaction."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Yritettiin poistaa paketti ”%s”, mutta se on suojattu"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2408,88 +2526,91 @@ msgstr ""
+ "\n"
+ "Riippuvuusongelmien vuoksi ohitetut paketit:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s asennuslähteestä %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr "** Löytyi %d rpmdb-ongelma(a), ”yum check” -tuloste:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Varoitus: RPM-tietokantaa on muutettu yumin ulkopuolella."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "puuttuvia riippuvuuksia"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "asennettu konflikti"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Varoitus: sovelmien virheitä tai muita virheitä, jotka eivät ole vakavia, "
+ "tapahtui transaktion aikana."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transaktiota ei voitu aloittaa:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Transaktiota ei voitu suorittaa."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Transaktiotiedoston %s poistaminen epäonnistui"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s piti olla asennettuna, mutta se ei ole!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s piti olla poistettu, mutta se ei ole!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Lukkoa %s ei voitu avata: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Ei voida tarkistaa onko PID %s aktiivinen"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Lukko %s on olemassa: toinen kopio on suorituksessa pidillä %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Ei voitu luoda lukkoa sijaintiin %s: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2498,41 +2619,30 @@ msgstr ""
+ "Paketti ei vastaa odotettua latausta. Ehdotus: suorita yum --enablerepo=%s "
+ "clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Ei voitu laskea tarkistussummaa"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paketti ei vastaa tarkistussummaa"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "paketti ei vastaa tarkistussummaa, mutta välimuisti on käytössä kohteelle %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "käytetään paikallista kopiota paketista %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Lataushakemistossa %s ei ole tarpeeksi vapaata tilaa\n"
+-"    * vapaana   %s\n"
+-"    * tarvitaan %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Otsake ei ole täydellinen."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2540,62 +2650,64 @@ msgstr ""
+ "Otsake ei ole paikallisessa välimuistissa ja pelkästä välimuistista toimiva "
+ "tila on käytössä. Ei voida ladata otsaketta %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Julkista avainta pakettia %s varten ei ole asennettu"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Ongelma paketin %s avaamisessa"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Paketin %s julkiseen avaimeen ei luoteta"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Pakettia %s ei ole allekirjoitettu"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Ei voida poistaa tiedostoa %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "tiedosto %s on poistettu"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Ei voida poistaa %s-tyyppistä tiedostoa %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s-tyyppinen tiedosto %s on poistettu"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s-tyyppistä tiedostoa on poistettu"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Säkissä on useampi kuin yksi identtinen vastaavuus haulle %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Mikään ei vastaa päivityksen pakettia %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2603,121 +2715,123 @@ msgstr ""
+ "searchPackages() poistetaan jossakin Yumin tulevassa versiossa. Käytä sen "
+ "sijaan searchGenerator()-metodia.\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Etsitään %d pakettia"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "etsitään pakettia %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "etsitään tiedostoista"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "etsitään tarjoajista"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Asetetuille asennuslähteille ei ole saatavilla ryhmädataa"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Ryhmää nimeltä %s ei ole olemassa"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "pakettia %s ei ollut merkitty kuuluvaksi ryhmään %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Lisätään paketti %s ryhmästä %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Pakettia nimeltä %s ei ole saatavilla asennusta varten"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Paketti-tuplea %s ei löytynyt pakettisäkistä"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Paketti-tuplea %s ei löytynyt RPM-tietokannasta"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Riippuvuudelle %s ei löytynyt pakettia"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Pakettiolio ei ollutkaan pakettiolioinstanssi"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Mitään ei määritelty asennettavaksi"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Etsitään virtuaalista tai tiedostotarjoajaa argumentille %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Mikään ei vastaa argumenttia: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Paketti %s on asennettu, mutta ei saatavilla"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Yhtään pakettia ei ole saatavilla asennettavaksi"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paketti: %s – on jo transaktiojoukossa"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Paketin %s vanhentaa paketti %s, joka on jo asennettuna"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2726,83 +2840,89 @@ msgstr ""
+ "Paketin %s vanhentaa paketti %s, mutta vanhentava paketti ei tarjoa "
+ "riippuvuuksia"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Paketin %s vanhentaa paketti %s, yritetään paketti %s sen sijaan"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Paketti %s on jo asennettuna ja uusin versio"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Pakettia %s vastaava paketti on jo asennettuna. Tarkistetaan päivitykset."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Päivitetään kaikki"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Vanhennettua pakettia ei päivitetä: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paketti on jo vanhennettu: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Ei päivitetä vanhennettua pakettia: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Jo päivitettyä pakettia ei enää päivitetä: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Yhtään poistopyyntöä vastaavaa pakettia ei ole"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Ohitetaan käytössä oleva ydin: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Poistetaan %s transaktiosta"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Ei voida avata pakettia: %s. Ohitetaan."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Tutkitaan %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Deltarpm:ää %s ei voi asentaa paikallisesti. Ohitetaan."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2810,12 +2930,12 @@ msgstr ""
+ "Pakettia %s ei voida lisätä transaktioon. Arkkitehtuuri ei ole yhteensopiva:"
+ " %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "Pakettia %s ei voi asentaa. Asennettu paketti %s vanhentaa sen."
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2824,104 +2944,109 @@ msgstr ""
+ "Pakettia %s ei ole asennettu, sitä ei voida päivittää. Suorita yum install "
+ "-komento paketin asentamiseksi."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Ohitetaan paketti %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Merkitään paketti %s asennettavaksi"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Merkitään paketti %s päivitykseksi paketille %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: ei päivitä asennettua pakettia"
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Ei voida avata tiedostoa: %s. Ohitetaan."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Ongelma uudelleenasennuksessa: poistopyyntöä vastaavaa pakettia ei ole"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Ongelma uudelleenasennuksessa: asennuspyyntöä vastaavaa pakettia %s ei ole"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Yhtään pakettia ei ole saatavilla varhennettavaksi"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Paketille %s sallitaan useita asennuksia, ohitetaan."
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ei vastaavuutta saatavilla olevalle paketille: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Vain päivitys saatavilla paketille: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Varhentaminen epäonnistui: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG-avaimen nouto epäonnistui: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Virheellinen GPG-avain osoitteesta %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG-avaimen jäsentäminen epäonnistui: avaimessa ei ole arvoa %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2930,7 +3055,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2938,25 +3063,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "Osoitteesta %s ladattu GPG-avain (0x%s) on jo asennetuna"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Avaimen tuonti epäonnistui (koodi %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Avaimen tuonti onnistui"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2965,25 +3090,25 @@ msgstr ""
+ "Asennuslähteelle ”%s” luetellut GPG-avaimet on jo asennettu, mutta ne eivät vastaa tätä pakettia.\n"
+ "Tarkista että tälle asennuslähteelle on asetettu oikeat avainten URL:t."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Avainten tuonti ei auttanut, ovatko avaimet vääriä?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "Osoitteesta %s ladattu GPG-avain (0x%s) on jo tuotu"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Avaimen tuonti epäonnistui"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2992,157 +3117,181 @@ msgstr ""
+ "Asennuslähteelle ”%s” luetellut GPG-avaimet on jo asennettu, mutta ne ovat virheelliset.\n"
+ "Tarkista että tälle asennuslähteelle on asetettu oikeat avainten URL:t."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Sopivaa peilipalvelinta ei löytynyt."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Paketteja ladatessa tapahtui virheitä."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Ilmoita tästä ongelmasta: %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Testitransaktion virheitä: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Välimuistihakemiston asettaminen epäonnistui %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Ladatut liitännäiset: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Ei vastaavaa liitännäistä pyynnölle: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Ei ladata liitännäistä ”%s”, koska se on poissa käytöstä"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Liitännäistä ”%s” ei voi tuoda"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Liitännäinen ”%s” ei määrittele vaadittua API-versiota"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Liitännäinen ”%s” vaatii API:n %s. Tuettu API on %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Ladataan liitännäinen ”%s”"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "Liitännäisten hakupolussa on useita liitännäisiä nimeltä ”%s”"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Asetustiedostoa %s ei löytynyt"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Liitännäisen %s asetustiedostoa ei löytynyt"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "komentojen rekisteröintiä ei tueta"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "on puuttuvia riippuvuuksia"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "on asennettuja konflikteja"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "paketti %s on paketin %s duplikaatti"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "paketin %s vanhentaa paketti %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s tarjoaa %s, mutta sitä ei löydy"
+@@ -3151,6 +3300,17 @@ msgstr "%s tarjoaa %s, mutta sitä ei löydy"
+ msgid "Repackaging"
+ msgstr "Paketoidaan uudelleen"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Lataushakemistossa %s ei ole tarpeeksi vapaata tilaa\n"
++"    * vapaana   %s\n"
++"    * tarvitaan %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/fr.po b/po/fr.po
+index 4636b15..6444485 100644
+--- a/po/fr.po
++++ b/po/fr.po
+@@ -2,14 +2,16 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Kévin Raymond <shaiton at fedoraproject.org>, 2011
++# Translators:
++# Dominique Bribanick <chepioq at gmail.com>, 2011.
++# Kévin Raymond <shaiton at fedoraproject.org>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-28 05:51+0000\n"
++"Last-Translator: dominique <chepioq at gmail.com>\n"
+ "Language-Team: French (http://www.transifex.net/projects/p/yum/team/fr/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +19,124 @@ msgstr ""
+ "Language: fr\n"
+ "Plural-Forms: nplurals=2; plural=(n > 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Mise à jour "
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Suppression "
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installation de"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Obsolète "
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Mis à jour "
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Supprimés "
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installé "
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Aucun en-tête - heu ?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Réempaquetage "
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Erreur : statut de sortie invalide : %s pour %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Supprimé : %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Suppression "
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Nettoyage "
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Commande « %s » déjà définie"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Configuration des dépôts"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Lecture des méta données du dépôt depuis les fichiers locaux"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Erreur de configuration : %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Erreur d'options : %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installés : %s-%s à %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Compilé    : %s à %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Commité : %s à %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Vous devez spécifier des commandes"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Aucune commande telle que : %s. Veuillez utiliser %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Besoins en espace disque :\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Au moins %d Mio requis sur le système de fichiers %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Au moins %d Mio requis sur le système de fichiers %s.\n"
++msgstr[1] "Au moins %d Mio requis sur le système de fichiers %s.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,63 +144,63 @@ msgstr ""
+ "Résumé des erreurs\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Tentative d'exécution de la transaction mais aucune tâche à effectuer. "
+ "Sortie."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Arrêt à la demande de l'utilisateur"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Téléchargement des paquets :"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Erreur durant le téléchargement des paquets :\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Test de la transaction en cours"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERREUR Vous devez mettre à jour rpm pour manipuler :"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ "ERREUR lors de la vérification de la transaction avec les dépendances :"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM doit être mis à jour"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Veuillez reporter cette erreur dans %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Lancement de la transaction de test"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Erreur du contrôle de transaction :\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transaction de test réussie"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Lancement de la transaction"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -204,91 +208,110 @@ msgstr ""
+ "Refus de l'importation automatique des clés lors d'une exécution inattendue.\n"
+ "Utilisez l'option « -y » pour passer outre."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Vouliez-vous dire : "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Le ou les paquets %s%s%s sont disponibles, mais non installés."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Aucun paquet %s%s%s disponible."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paquets à installer"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d paquet à installer"
++msgstr[1] "%d paquets à installer"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Rien à faire"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paquets marqués pour mise à jour"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d paquet marqué pour mise à jour"
++msgstr[1] "%d paquets marqués pour mise à jour"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Aucun paquet marqué pour mise à jour"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d paquets marqués pour la synchronisation de la distribution"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d paquet marqué pour la synchronisation de la distribution"
++msgstr[1] "%d paquets marqués pour la synchronisation de la distribution"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Aucun paquet marqué pour la synchronisation de la distribution"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paquets marqués pour suppression"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d paquet marqué pour suppression"
++msgstr[1] "%d paquets marqués pour suppression"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Aucun paquet marqué pour suppression"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paquets à rétrograder"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d paquet à rétrograder"
++msgstr[1] "%d paquets à rétrograder"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr "(depuis %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Paquets installés %s%s%s%s indisponibles."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paquets à réinstaller"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d paquet à réinstaller"
++msgstr[1] "%d paquets à réinstaller"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Pas de paquet fourni"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paquets à installer"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "Non spécifié, correspond à : %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Correspondance dans les noms et résumés %suniquement%s, utilisez « search "
+ "all » pour une recherche complète."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -296,150 +319,154 @@ msgstr ""
+ "  Correspondance complète dans les noms et résumés %suniquement%s, utilisez "
+ "« search all » pour une recherche complète."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+-msgstr " Marqués : %s"
++msgstr "Marqués : %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Correspondance dans les noms et résumés %sprincipalementt%s, utilisez « "
+ "search all » pour une recherche complète."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Attention : aucune correspondance trouvée pour : %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Aucune correspondance trouvée"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Aucun paquet trouvé pour %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Nettoyage des dépôts : "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Nettoyage complet"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Nettoyage des en-têtes"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Nettoyage des paquets"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Nettoyage des méta données xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Nettoyage du cache de la base de données"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Nettoyage des méta données expirées dans le cache"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Nettoyage des données du cache de RPMDB"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Nettoyage des modules complémentaires"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Attention : aucun groupe ne correspond : %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Groupes installés :"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Groupes de langues installés :"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Groupes disponibles :"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Groupes de langues disponibles :"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Effectué"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Attention : le groupe %s n'existe pas."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Aucun paquet disponible pour installation ou mise à jour dans les groupes "
+ "demandés"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d paquet(s) à installer"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d paquet à installer"
++msgstr[1] "%d paquets à installer"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Aucun groupe nommé %s n'existe"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Aucun paquet du groupe à supprimer"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d paquet(s) à supprimer"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d paquet à supprimer"
++msgstr[1] "%d paquets à supprimer"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Le paquet %s est déjà installé, omission"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Rejet du paquet non comparable %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Pas d'autre %s installé, ajout à la liste pour installation potentielle"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Options du plugin"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Erreur sur la ligne de commande : %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -450,289 +477,293 @@ msgstr ""
+ "\n"
+ "%s : l'option %s requiert un argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color accepte les paramètres : auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot doit correspondre à un chemin absolu : %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "affiche ce message d'aide et quitte"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "tolère les erreurs"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "exécute entièrement depuis le cache, sans le mettre à jour"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "emplacement du fichier de configuration"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "temps d'attente maximum de la commande"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "niveau de déboguage pour la sortie"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "affiche les doublons dans les dépôts, pour les commandes list/search"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "niveau d'erreur pour la sortie"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "niveau de déboguage pour rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "opération silencieuse"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "opération verbeuse"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "répondre oui à toutes les questions"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "répondre non à toutes les questions"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "affiche la version de Yum et quitte"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "définit la racine d'installation"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "active un ou plusieurs dépôts (jokers autorisés)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "désactive un ou plusieurs dépôts (jokers autorisés)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ "exclut des paquets par leur nom (le caractère * générique peut être utilisé)"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ "désactive l'exclusion pour le dépôt principal, pour un dépôt particulier ou "
+ "pour tout"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "active le traitement des paquets obsolètes pendant les mises à jour"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "désactive les modules complémentaires Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "désactive la vérification de clé gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "désactive les modules complémentaires par nom"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "active les modules complémentaires par nom"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "omettre les paquets qui ont des problèmes de dépendances"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "contrôle l'utilisation de la couleur"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "configuration de la valeur de $releasever dans le fichier de configuration "
+ "de yum et dans les fichiers des dépôts"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "réinitialise la configuration ainsi que les options des dépôts"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Fév"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mars"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Avr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mai"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Juin"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jui"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Août"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Oct"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Déc"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Essai d'un autre miroir."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nom        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Architecture        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Date       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Version     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Révision     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Taille        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Dépôt         : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Depuis le dépôt   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Auteur   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Date de validation  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Date de compilation   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Date d'installation : %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installés par : %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Modifié par  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Résumé        : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licence       : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Description : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "o"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "oui"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "non"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Est-ce correct [o/N] : "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -741,158 +772,160 @@ msgstr ""
+ "\n"
+ "Groupe : %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Id du g : %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Description : %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Langue : %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Paquets mandataires :"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Paquets par défaut :"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Paquets optionnels :"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Paquets conditionnels :"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paquet : %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Pas de dépendances pour ce paquet"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  dépendance : %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Dépendance non satisfaite"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Correspondance depuis :"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licence       : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nom de fichier      : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Autre           :"
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ "Une erreur est survenue pendant le calcul de la taille totale des "
+ "téléchargements"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Taille totale : %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Taille totale des téléchargements : %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Taille d'installation : %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ "Une erreur est survenue pendant le calcul de la taille des données "
+ "installées"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Réinstallation "
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Retour à la version précédente"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Installation pour dépendances "
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Mise à jour pour dépendances "
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Suppression pour dépendances "
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Omis (problèmes de dépendances) "
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Non installé"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Indisponible"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paquet"
++msgid_plural "Packages"
++msgstr[0] "Paquet"
++msgstr[1] "Paquets"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Architecture"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Version"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Dépôt"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Taille "
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     remplacement de  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -903,57 +936,52 @@ msgstr ""
+ "Résumé de la transaction\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Installation de   %5.5s paquets\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Installation "
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Mise à jour de    %5.5s paquets\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Mis à jour"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Suppression de    %5.5s paquets\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Supprimé"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Réinstallation de %5.5s paquets\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Réinstallation"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Retour à une version antérieur de %5.5s paquets\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Retour à la version précédente"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Supprimés "
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dépendances supprimées "
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dépendances installées "
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dépendances mises à jour "
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Remplacés "
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Échec"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "deux"
+ 
+@@ -961,7 +989,7 @@ msgstr "deux"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -972,367 +1000,419 @@ msgstr ""
+ "Téléchargement courant annulé, demandez de nouveau l%sinterruption (crtl-c)%s dans %s%s%s secondes\n"
+ "pour quitter.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "interruption par l'utilisateur"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Total"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<indéfini>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Système"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ "Omission des transactions regroupées de %d à %d, puisqu'elles se superposent"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Pas de transaction"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Le ou les paquets ou identifiants de transaction fournis sont erronés"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Ligne de commande"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Identifiant utilisateur"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "Id"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Date et heure"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Action"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Modifié"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Aucun identifiant de transaction n'a été fourni"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "L'identifiant de transaction fourni est erroné"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "L'identifiant de transaction fourni est introuvable"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Plus d'un identifiant de transaction a été trouvé !"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Le paquet ou l'identifiant de transaction fourni sont absents"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Rétrogradé"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Plus ancien"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Plus récent"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Identifiant de transaction :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Temps de début :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Début de RPMDB :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u secondes)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minutes)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u heures)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u jours)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Temps de fin :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Fin de RPMDB :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Utilisateur :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Code retour :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Avorté"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Échecs :"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Échec :"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Réussi"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Ligne de commande :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Informations supplémentaires stockées : %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transaction effectuée avec :"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Paquets modifiés :"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Paquets ignorés :"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problèmes RPMDB :"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Sortie du scriplet :"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Erreurs :"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Installation "
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Installation déps."
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Obsolète"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Supprimé"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Réinstallation"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Retour à la version précédente"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Mise à jour"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Heure"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Dernier jour"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Semaine dernière"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Deux dernières semaines"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Trois derniers mois"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Six derniers mois"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "L'année dernière"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Il y a plus d'un an"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Aucune transaction %s n'a été trouvée"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Identifiant de transaction :"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Informations additionnelles disponibles dans l'historique :"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s : aucune donnée supplémentaire trouvée avec ce nom"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Paquet         :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "État           :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Taille         :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Hôte de construction :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Date de construction :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Empaqueteur    :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Vendeur        :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licence        :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "RPM source     :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Date de validation :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Proposé par    :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Motif          :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Depuis le dépôt :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Installé par   :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Changé par     :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installé"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "la mise à jour"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "effacé"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "réinstallé"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "une rétrogradation"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "obsolète"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "mis à jour"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "obsolète"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Le paquet %s.%s %s:%s-%s sera %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Lancement de la transaction de test"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Redémarrage de la résolution des dépendances avec les nouveaux "
+ "changements."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Résolution des dépendances terminée"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Traitement de la dépendance : %s pour le paquet : %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Conservation du paquet : %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Dépendance non résolue : %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paquet : %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1341,7 +1421,7 @@ msgstr ""
+ "\n"
+ "    Requiert : %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1350,7 +1430,7 @@ msgstr ""
+ "\n"
+ "    %s : %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1359,7 +1439,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1368,88 +1448,88 @@ msgstr ""
+ "        Non trouvé"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Mis à jour par"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Rétrogradé par"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Rendu obsolète par"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Disponible"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Traitement du conflit : %s entre en conflit avec %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Peuplement du jeu de transaction avec les paquets sélectionnés. Merci de"
+ " patienter."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "--> Téléchargement de l'en-tête de %s pour l'ajouter à la transaction."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Exécution"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Mise en attente"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Impossible d'interrompre"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Tracé/Stoppé"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Inconnu"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  L'autre application est : PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  L'autre application est : %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Mémoire : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Débuté : il y a %s - %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    État : %s, pid : %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1459,7 +1539,7 @@ msgstr ""
+ "\n"
+ "Sortie sur annulation par l'utilisateur"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1469,7 +1549,7 @@ msgstr ""
+ "\n"
+ "Sortie suite à une redirection cassée"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1480,7 +1560,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1488,36 +1568,36 @@ msgstr ""
+ "Une autre application verrouille actuellement l'utilisation de yum ; "
+ "fermeture en cours conformément à la configuration de exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Erreur de PluginExit : %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Erreur de yum : %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Erreur : %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Vous pouvez essayer d'utiliser --skip-broken pour contourner le problème"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Vous pouvez essayer d'exécuter : rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Erreur inconnue : code de sortie %d :"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1525,7 +1605,7 @@ msgstr ""
+ "\n"
+ "Dépendances résolues"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Terminé !"
+ 
+@@ -1537,7 +1617,7 @@ msgstr " Usage minimal :\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Vous devez être super-utilisateur pour lancer cette commande."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1567,53 +1647,53 @@ msgstr ""
+ "\n"
+ "Pour plus de renseignements, contactez le fournisseur de paquets de votre distribution.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problème avec le dépôt : %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Erreur : il faut passer une liste de paquets à %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Erreur : un élément de correspondance est requis"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Erreur : un groupe ou une liste de groupes est requise"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Erreur : clean requiert une option : %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Erreur : argument invalide pour clean : %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Pas d'options à passer au terminal"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nom de fichier passé au terminal : %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Le fichier %s passé en argument au shell n'existe pas."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Erreur : plus d'un fichier passé en argument au shell."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1623,309 +1703,302 @@ msgstr ""
+ " Exécutez « yum repolist all » pour consulter la liste des dépôts installés.\n"
+ " Vous pouvez activer des dépôts avec la commande yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAQUETAGE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Installe un ou plusieurs paquets sur votre système"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Configuration du processus d'installation"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAQUET…]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Met à jour un ou plusieurs paquets sur votre système"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Configuration du processus de mise à jour"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Synchronise les paquets installés vers leurs versions les plus récentes"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Configuration du processus de synchronisation de la distribution"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Affiche les détails d'un paquet ou d'un groupe de paquets"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Paquets installés"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Paquets disponibles"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Paquets supplémentaires"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Paquets mis à jour"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Obsolescence des paquets"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Paquets récemment ajoutés"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Aucun paquet correspondant à lister"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Liste un paquet ou un groupe de paquets"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Supprime un ou plusieurs paquets de votre système"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Configuration du processus de suppression"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Afficher ou utiliser les informations des groupes"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Configuration du processus de gestion des groupes"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Aucun groupe sur lequel lancer la commande"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Liste les groupes de paquets disponibles"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Installe les paquets d'un groupe sur votre système"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Supprime les paquets d'un groupe de votre système"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Affiche des détails sur un groupe de paquets"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Sous-commande de groupes invalides, utiliser %s"
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Génère le cache des méta données"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ "Création des fichiers de cache pour tous les fichiers de méta données."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Cela peut prendre du temps en fonction de la vitesse de cet ordinateur"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Cache des méta données créé"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Supprime les données en cache"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Cherche à quel paquet correspond la valeur donnée"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Cherche les mises à jour de paquets disponibles"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Cherche les détails du paquet en fonction de la chaîne entrée"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Recherche dans les paquets :"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Met à jour en tenant compte des paquets obsolètes"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Configuration du processus de mise à jour"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Installe un RPM local"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Configuration du processus de paquets locaux"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Détermine quel paquet fournit une dépendance donnée"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Recherche dans les paquets pour la dépendance :"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Lance un shell yum interactif"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Configuration du shell Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Liste les dépendances d'un paquet"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Recherche de dépendances :"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Affiche les dépôts logiciels configurés"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "activé"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "désactivé"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Id du dépôt      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Nom du dépôt    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "État du dépôt  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Révision du dépôt :"
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Tags du dépôt    :"
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags : "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Mise à jour du dépôt :"
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Paquets du dépôt    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Taille du dépôt    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Baseurl du dépôt : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Méta-lien du dépôt :"
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Mis à jour    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Miroirs du dépôt :"
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Jamais (dernier : %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Instant (dernier : %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s secondes (en date du : %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Expiration du dépôt : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Exclus du dépôt :"
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Inclus au dépôt :"
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Exclus du dépôt : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Nom du dépôt : "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "id du dépôt"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "statut"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nom du dépôt"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Affiche un message d'aide à l'utilisation"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Aucune aide disponible pour %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1935,7 +2008,7 @@ msgstr ""
+ "\n"
+ "alias : "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1945,85 +2018,125 @@ msgstr ""
+ "\n"
+ "alias : "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Configuration du processus de réinstallation"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Réinstaller un paquet"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Configuration du processus de retour à une version antérieure"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Restaure un paquet à une version antérieure"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Affiche une version de la machine ou des dépôts disponibles"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr "Groupes de version de yum :"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr "Groupe   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr "Paquets :"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installés :"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Groupe installé :"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Disponible :"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Groupes disponibles :"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Affiche ou utilise l'historique de transaction"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transactions"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Heure de début  :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Heure de fin    :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Compteurs   :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Sous-commande de l'historique invalide, utilisez : %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Vous n'avez pas accès à la base de données de l'historique."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Recherche des problèmes dans RPMDB"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "charge une transaction sauvegardée à partir d'un nom de fichier"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Aucun fichier de sauvegarde de transaction spécifié."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "Chargement de la transaction à partir de %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transaction chargée à partir de %s avec %s membres"
+@@ -2034,30 +2147,37 @@ msgstr "Transaction chargée à partir de %s avec %s membres"
+ msgid " Yum checks failed: %s"
+ msgstr " Échec du vérificateur de Yum : %s"
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++"Pas d'accès en lecture/écriture dans le répertoire courant, déplacé vers /"
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Impossible de créer le fichier verrou, arrêt"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Une autre application verrouille actuellement l'utilisation de yum ; attente"
+ " de déverrouillage..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr "Impossible de créer le fichier verrou, arrêt"
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Résolution des dépendances"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Votre transaction a été sauvegardée, relancez-là avec : yum load-transaction"
+-" %s"
++"Votre transaction est sauvegardée, relancez-la avec : \n"
++"yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2067,74 +2187,74 @@ msgstr ""
+ "\n"
+ "Sortie sur annulation par l'utilisateur."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Mise en place de l'ensemble des transactions avant configuration"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "tsflag invalide dans le fichier de configuration : %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Recherche dans le regroupement pour la dépendance : %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Membre : %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s converti pour installation"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Ajout du paquet %s en mode %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Suppression du paquet %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s requiert : %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s requiert %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Le prérequis a déjà été trouvé, on triche"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Le prérequis n'est pas un nom de paquet. Recherche de : %s "
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Fournisseur potentiel : %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Le mode est %s pour le fournisseur de %s : %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Mode pour le paquet qui fournit %s : %s"
+@@ -2142,119 +2262,119 @@ msgstr "Mode pour le paquet qui fournit %s : %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Éssai de mise à jour de %s pour résoudre les dépendances"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Pas de chemin de mise à jour pour %s. Échec !"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO : le paquet %s requiert la suppression de %s"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO : Obsolescence de %s avec %s pour résoudre les dépendances."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO : Mise à jour de %s pour la résolution des dépendances."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ "Impossible de trouver un chemin de mise à jour pour la dépendance de : %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Correspondance %s trouvée pour %s "
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s est dans les paquets fournis mais est déjà installé, suppression."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "ts contient une version plus récente du paquet %s susceptible de résoudre la"
+ " dépendance."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "Le paquet susceptible de résoudre la dépedence %s est déjà installé dans une"
+ " version plus récente."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s déjà dans ts, omission de celui-ci"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO : Sélection de %s pour mise à jour de %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO : Sélection de %s pour installation de %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Succès - transaction vide"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Re-démarrage de la boucle"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Finalisation du processus de dépendance"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Succès - dépendances résolues"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Recherche des dépendances pour %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "recherche de %s comme prérequis de %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Lancement de compare_providers() pour %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "meilleure architecture dans l'objet paquet %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s rend obsolète %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2263,144 +2383,144 @@ msgstr ""
+ "architecture %s comparée à %s sur %s\n"
+ "  Gagnant : %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "rpm source commun pour %s et %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "le paquet de base %s est installé pour %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "préfixe commun %s entre %s et %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "requiert au minimum : %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Vainqueur : %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Perdant (avec %d) : %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Meilleur ordre : %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Dépôt %r : erreur lors de l'analyse de la configuration : %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "Il manque le nom du dépôt %r dans la configuration, utilisation de "
+ "l'identifiant"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "modules complémentaires déjà initialisés"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Lecture de la base de données RPM locale"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Configuration du groupe de paquets"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "une méthode _resetSack est manquante pour l'objet dépôt du dépôt %s\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "en conséquence ce dépôt ne peut être réinitialisé.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Construction de l'objet de mises à jour"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() sera supprimé dans une future version de Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Obtention des méta données du groupe"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Ajout du ficher de groupes depuis le dépôt : %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Échec d'ajout du fichier de groupes pour le dépôt : %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Aucun groupe disponible dans les dépôts"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Obtention des méta-données de pkgtags"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Ajout des tags depuis le dépôt : %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Échec d'ajout des tags du paquet pour le dépôt : %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Import d'informations additionnelles sur la liste de fichiers"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Le programme %s%s%s est présent dans le paquet yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2408,22 +2528,22 @@ msgstr ""
+ "Il reste des transactions non terminées. Vous devriez envisager de lancer de"
+ " yum-complete-transaction pour les terminer."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Recherche de dépendances inutiles"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ "protection contre les différentes versions de bibliothèques : %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Tentative de retrait de « %s », qui est protégé"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2431,90 +2551,93 @@ msgstr ""
+ "\n"
+ "Paquets omis en raison de problèmes de dépendances :"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s depuis %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** %d problèmes RPMDB préexistants trouvés, la sortie de « yum check » est "
+ "la suivante :"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ "Avertissement : RPMDB a été modifiée par une autre application que yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "dépendances manquantes"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "conflit installé"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Attention : scriptlet ou autres erreurs non fatales pendant la transaction."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "La transaction n'a pas pu démarrer :"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Impossible d'exécuter la transaction."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Échec de la suppression du fichier de transaction %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s est censé être installé, mais ne l'est pas !"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s est censé être supprimé, mais ne l'est pas !"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Impossible de libérer le verrou %s : %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Impossible de vérifier si le PID %s est actif"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Verrou %s existant : une autre copie est lancée avec le pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Impossible de créer le verrou sur %s : %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2523,42 +2646,31 @@ msgstr ""
+ "Le paquet ne correspond pas au téléchargement attendu. Suggestion : exécutez"
+ " yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Ne peut procéder à la vérification des sommes de contrôle"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Le paquet ne correspond pas à sa somme de contrôle"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "Le paquet ne correspond pas à la somme de contrôle mais le cache est activé "
+ "pour %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "utilisation de la copie locale de %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Espace disque insuffisant dans le dossier de téléchargement %s\n"
+-"    * libre   %s\n"
+-"    * nécessaire %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "L'en-tête est incomplet."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2566,62 +2678,64 @@ msgstr ""
+ "L'en-tête n'est pas dans le cache et le mode cache uniquement est activé. "
+ "Impossible de télécharger %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "La clé publique pour %s n'est pas installée"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problème à l'ouverture du paquet %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "La clé publique pour %s n'est pas de confiance"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Le paquet %s n'est pas signé"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Impossible de supprimer %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s supprimé"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Impossible de supprimer depuis %s le fichier %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "fichier de %s : %s supprimé"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d fichiers de %s supprimés"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s fichier supprimé"
++msgstr[1] "%d %s fichiers supprimés"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Plus d'une correspondance identique dans le regroupement pour %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Rien ne correspond à %s.%s %s:%s-%s dans la mise à jour"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2629,56 +2743,58 @@ msgstr ""
+ "searchPackages() sera supprimé dans une future version de Yum."
+ "                      Utilisez searchGenerator() à la place. \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Recherche de %d paquets"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Recherche %d paquet"
++msgstr[1] "Recherche %d paquets"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "recherche du paquet %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "recherche dans les entrées de fichiers"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "recherche dans les entrées de correspondance"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Aucune donnée sur les groupes disponible pour les dépôts configurés"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Aucun groupe nommé %s n'existe"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "le paquet %s n'a pas été marqué dans le groupe %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Ajout du paquet %s pour le groupe %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Aucun paquet nommé %s n'est disponible pour installation"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Attention : le goupe %s ne contient aucun paquets."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+@@ -2687,66 +2803,66 @@ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Impossible de trouver le tuple de paquet %s dans le regroupement"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Impossible de trouver le tuple de paquet %s dans RPMDB"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Version de drapeau invalide : %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Aucun paquet trouvé pour %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "L'objet paquet n'était pas une instance correcte d'objet paquet"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Rien de spécifié pour installation"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ "Recherche de correspondance virtuelle ou de correspondance fichier pour %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Aucune correspondance pour l'argument : %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Le paquet %s est installé et n'est pas disponible"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Aucun paquet disponible pour installation"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paquet : %s - déjà dans le jeu de transaction"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Le paquet %s est rendu obsolète par %s qui est déjà installé"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2755,19 +2871,19 @@ msgstr ""
+ "Le paquet %s est rendu obsolète par %s, mais l'obsolescence n'affecte pas "
+ "les dépendances"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "Le paquet %s est rendu obsolète par %s, tentative d'installation de %s à la "
+ "place"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Le paquet %s est déjà installé dans sa dernière version"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+@@ -2775,69 +2891,75 @@ msgstr ""
+ "jour."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Mise à jour complète"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ "Pas de mise à jour des paquets qui ont déjà été rendus obsolètes : %s.%s "
+ "%s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Aucun paquet correspondant à mettre à jour : %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paquet déjà rendu obsolète : %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Pas de mise à jour du paquet qui est obsolète : %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "Pas de mise à jour des paquets qui ont déjà été mis à jour : %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Aucun paquet sélectionné pour suppression"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Aucun paquet correspondant à supprimer : %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Omission du noyau en cours d'exécution : %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Suppression de %s de la transaction"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Impossible d'ouvrir : %s. Omission."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Examen de %s : %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Impossible d'exécuter localinstall sur le deltarpm : %s. Omission."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2845,14 +2967,14 @@ msgstr ""
+ "Impossible d'ajouter le paquet %s à la transaction. Architecture "
+ "incompatible : %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Impossible d'installer le paquet %s. Il est rendu obsolète par le paquet %s "
+ "installé"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2861,7 +2983,7 @@ msgstr ""
+ "Le paquet %s n'est pas installé, il est impossible de le mettre à jour. "
+ "Lancez plutôt yum install pour l'installer."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2870,97 +2992,102 @@ msgstr ""
+ "Le paquet %s.%s n'est pas installé, il ne peut pas être mis à jour. Utilisez"
+ " « yum install » pour l'installer."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Exclusion de %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Sélection de %s pour installation "
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Sélection de %s pour mise à jour de %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s : ne met pas à jour le paquet installé."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Impossible d'ouvrir le fichier : %s. Omission."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Problème dans la réinstallation : aucun paquet correspondant à supprimer"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Problème dans la réinstallation : aucun paquet %s correspondant à installer"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Aucun paquet disponible pour retour à une version antérieure"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Le paquet %s autorise des installations multiples, omission"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Aucune correspondance pour le paquet disponible : %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Mise à jour uniquement disponible pour le paquet : %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Échec lors du lors du retour à la version précédente : %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Échec de la mise à jour : %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Récupération de la clé à partir de %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Échec de la récupération de la clé GPG : "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "La signature de la clé GPG %s ne correspond pas à celle du dépôt : %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "Signature de clé GPG vérifiée avec un certificat d'autorité de clés."
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Clé GPG invalide depuis %s :%s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Échec d'analyse de la clé GPG : la clé n'a pas de valeur %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2973,7 +3100,7 @@ msgstr ""
+ " Paquet       : %s (%s)\n"
+ " À partir de : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2984,25 +3111,25 @@ msgstr ""
+ " Utilisateur : « %s »\n"
+ " À partir de : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "La clé GPG %s (0x%s) est déjà installée"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "L'import de la clé à échoué (code %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "La clé a été importée avec succès"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Toutes les clés n'ont pas été installées"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -3011,26 +3138,26 @@ msgstr ""
+ "Les clés GPG listées pour le dépôt « %s » sont déjà installées mais sont incorrectes pour ce paquet.\n"
+ "Vérifiez que les URL des clés pour ce dépôt soient correctes."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ "L'import de la ou des clés n'a pas résolu le problème, clés incorrectes ?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "La clé GPG %s (0x%s) est déjà importée"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "L'import de la clé à échoué"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Aucune clé n'a été installée pour le dépôt %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3039,170 +3166,194 @@ msgstr ""
+ "Les clés GPG listées pour le dépôt « %s » sont déjà installées mais sont incorrectes.\n"
+ "Vérifiez que les URL des clés pour ce dépôt soient correctes."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Impossible de trouver un miroir adapté."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Des erreurs ont été rencontrée durant le téléchargement des paquets."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Veuillez reporter cette erreur dans %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Erreurs de la transaction de test : "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Impossible de configurer cachedir : %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Les dépendances ne sont pas résolues. Les transactions non résolues ne "
+ "seront pas sauvegardées."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Impossible de sauvegarder le fichier de transaction %s : %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Impossible de lire le fichier de transaction sauvegardé %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ "La version de rpmdb ne correspond pas à la version de la transaction "
+ "enregistrée,"
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ignoré, comme spécifié."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " arrêt."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "impossible de trouver de tsflags, ou alors ce n'est pas un entier."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "txmbr est dans un état inconnu : %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Impossible de trouver txmbr : %s dans l'état %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Impossible de trouver txmbr : %s depuis : %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ "Des composants ou relations de la transactions sont manquant, ou la "
+ "transaction a été modifiée,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ " ignoré, comme spécifié. Vous devez résoudre les dépendances à nouveau !"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s a déjà été examiné et ne peut pas être supprimé."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Examiner les dépendances de %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s a une dépendance %s qui a été installée par l'utilisateur."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s n'a pas de dépendances installées par l'utilisateur."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Modules complémentaires chargés : "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Aucun plugin correspondant pour : %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Le module complémentaire « %s » est désactivé, il ne sera pas chargé"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "L'extension « %s » ne peut pas être importé"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ "Le module complémentaire « %s » ne spécifie pas la version de l'API requise"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ "Le module complémentaire « %s » requiert l'API %s. L'API supportée est %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Chargement du module complémentaire « %s »"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Au moins deux modules complémentaires avec le même nom « %s » existent dans "
+ "le chemin de recherche des modules complémentaires"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Fichier de configuration %s non trouvé"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ "Impossible de trouver le fichier de configuration pour le module "
+ "complémentaire %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "enregistrement de commandes non supporté"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "a des dépendances manquantes de"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "des conflits sont installés"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s est un doublon de %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s est rendu obsolète par %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s fournit %s mais est introuvable"
+@@ -3211,6 +3362,17 @@ msgstr "%s fournit %s mais est introuvable"
+ msgid "Repackaging"
+ msgstr "Réempaquetage"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Espace disque insuffisant dans le dossier de téléchargement %s\n"
++"    * libre   %s\n"
++"    * nécessaire %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/gu.po b/po/gu.po
+index e9ad955..090a90e 100644
+--- a/po/gu.po
++++ b/po/gu.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# sweta <swkothar at redhat.com>, 2011
++# Translators:
++# sweta <swkothar at redhat.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Gujarati (http://www.transifex.net/projects/p/yum/team/gu/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: gu\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "સુધારી રહ્યા છે"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "દૂર કરી રહ્યા છે"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "સ્થાપિત કરી રહ્યા છે"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "અપ્રચલિત થયેલ"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "સુધારેલ"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "દૂર કરેલ"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "સ્થાપિત થયેલ"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "ભૂલ: અયોગ્ય આઉટપુટ સ્થિતિ: %s માટે %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "દૂર કરેલ: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "દૂર કરી રહ્યા છે"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "સાફ કરો"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "આદેશ \"%s\" પહેલેથી જ વ્યાખ્યાયિત થયેલ છે"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "રિપોઝીટરીઓને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "સ્થાનિય ફાઇલોમાંથી રિપોઝીટરી મેટાડેટાને વાંચી રહ્યા છે"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "રૂપરેખાંકન ભૂલ: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "વિકલ્પો ભૂલ: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  સ્થાપિત થયેલ: %s-%s પર %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "તમારે અમુક આદેશને આપવાની જરૂર છે"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "આવો આદેશ નથી: %s. મહેરબાની કરીને %s --help વાપરો"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "ડિસ્ક જરૂરિયાતો:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,292 +143,315 @@ msgstr ""
+ "ભૂલ સારાંશ\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "વપરાશકર્તા આદેશ પર બહાર નીકળી રહ્યા છે"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "પેકેજોને ડાઉનલોડ કરી રહ્યા છે:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "પેકેજોને ડાઉનલોડ કરતી વખતે ભૂલ:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM ને સુધારવાની જરૂર છે"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "મહેરબાની કરીને %s માં આ ભૂલનો અહેવાલ કરો"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "પેકેજ(ઓ) %s%s%s ઉપલબ્ધ છે, પરંતુ સ્થાપિત થયેલ છે."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "પેકેજ %s%s%s ઉપલબ્ધ નથી."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ)"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "કંઇ કરવાનુ નથી"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "સુધારવા માટે %d પેકેજો ચિહ્નિત થયેલ છે"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "સુધારવા માટે પેકેજો ચિહ્નિત થયેલ નથી"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "દૂર કરવા માટે %d પેકેજો ચિહ્નિત થયેવ છે"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "દૂર કરવા માટે પેકેજો ચિહ્નિત થયેલ નથી"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (%s માંથી)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "સ્થાપિત થયેલ પેકેજ %s%s%s%s ઉપલબ્ધ નથી."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "પુન:સ્થાપિત કરવા માટે પેકેજ (ઓ)"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "પેકેજો પૂરા પાડેલ નથી"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ)"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "ચેતવણી: તેની માટે બંધબેસતુ મળ્યુ નથી: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "%s માટે પેકેજ મળ્યુ નથી"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "બધુ જ સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "હેડરો સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "પેકેજો સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "xml મેટાડેટા સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "ડેટાબેઝ કેશ સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "પ્લગઇનને સાફ કરી રહ્યા છે"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "સ્થાપિત થયેલ જૂથો:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "ઉપલબ્ધ જૂથો:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "ચેતવણી: જૂથ %s અસ્તિત્વ ધરાવતુ નથી."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "સ્થાપિત અથવા સુધારવા ઉપલબ્ધ કોઇપણ સૂચિત થયેલ જૂથમાં પેકેજો નથી"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "સ્થાપિત કરવા માટે %d પેકેજ(ઓ)"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "જૂથોમાંથી દૂર કરવા માટે પેકેજો નથી"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "દૂર કરવા માટે %d પેકેજ(ઓ)"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "પેકેજ %s પહેલેથી જ સ્થાપિત થયેલ છે, છોડી રહ્યા છે"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "પ્લગઇન વિકલ્પો"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "આદેશ વાક્ય ભૂલ: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -436,285 +462,289 @@ msgstr ""
+ "\n"
+ "%s: %s વિકલ્પને દલીલની જરૂર છે"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "રૂપરેખાંકન ફાઇલ સ્થાન"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "ડિબગીંગ આઉટપુટ લેવલ"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "ભૂલ આઉટપુટ લેવલ"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm માટે ડિબગીંગ આઉટપુટ લેવલ"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "બધા પ્રશ્ર્નો માટે જવાબ હાં"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "Yum આવૃત્તિ બતાવો અને બહાર નીકળો"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "સ્થાપન રુટ સુયોજિત કરો"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "એક અથવા વધારે રિપોઝીટરીઓને સક્રિય કરો (વાઇલ્ડકાર્ડને પરવાનગી આપેલ છે)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "એક અથવા વધારે રિપોઝીટરીઓને નિષ્ક્રિય કરો (વાઇલ્ડકાર્ડને પરવાનગી આપેલ છે)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "Yum પ્લગઇનને નિષ્ક્રિય કરો"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "નામ પ્રમાણે પ્લગઇનને નિષ્ક્રિય કરો"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "નામ પ્રમાણે પ્લગઇનને સક્રિય કરો"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "જાન્યુઆરી"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "ફેબ્રુઆરી"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "માર્ચ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "એપ્રિલ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "મે"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "જુન"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "જુલાઇ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "ઑગસ્ટ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "સપ્ટેમ્બર"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "ઑક્ટોમ્બર"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "નવેમ્બર"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "ડિસેમ્બર"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "બીજા મિરર માટે પ્રયત્ન કરી રહ્યા છે."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "નામ        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "આવૃત્તિ     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "માપ        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "સારાંશ     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "લાઇસન્સ     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "વર્ણન : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "હાં"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "નાં"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "શું આ બરાબર છે [y/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -723,154 +753,156 @@ msgstr ""
+ "\n"
+ "જૂથ: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " જૂથ-Id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " વર્ણન: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " ફરજિયાત પેકેજો:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " મૂળભૂત પેકેજો:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " વૈકલ્પિક પેકેજો:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " શરતી પેકેજો:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "પેકેજ: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "લાઇસન્સ     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "ફાઇલનામ    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "બીજા       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "કુલ માપ: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "કુલ ડાઉનલોડ માપ: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "સ્થાપિત થયેલ માપ: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "પુન:સ્થાપિત કરી રહ્યા છે"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "સ્થાપિત થયેલ નથી"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "પેકેજ"
++msgid_plural "Packages"
++msgstr[0] "પેકેજ"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "આવૃત્તિ"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "રિપોઝીટરી"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "માપ"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -878,57 +910,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr ""
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "પુન:સ્થાપિત કરો"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "દૂર કરેલ"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "નિષ્ફળ"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "બે"
+ 
+@@ -936,7 +963,7 @@ msgstr "બે"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -944,371 +971,423 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "કુલ"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<unset>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "સિસ્ટમ"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "તારીખ અને સમય"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "ક્રિયા (ઓ)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "વપરાશકર્તા           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "નિષ્ફળતા:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "સફળતા"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "આદેશ વાક્ય   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb સમસ્યાઓ:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "ભૂલો:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "ભૂંસી નાખો"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "પુન:સ્થાપિત કરો"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "સુધારવું"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "સમય"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "છેલ્લો દિવસ"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "છેલ્લુ અઠવાડિયું"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "છેલ્લા 2 અઠવાડિયાઓ"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "છેલ્લા 3 મહિનાઓ"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "છેલ્લા 6 મહિનાઓ"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "છેલ્લુ વર્ષ"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "ઉપલબ્ધ વધારાની ઇતિહાસ જાણકારી:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: આ નામ પ્રમાણે વધારાની માહિતી મળી નથી"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "સ્થાપિત થયેલ"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "ભૂંસી નાખેલ"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "પુન:સ્થાપિત થયેલ"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "સુધારેલ"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "અપ્રચલિત થયેલ"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> પેકેજને રાખી રહ્યા છે: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "પેકેજ: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1317,7 +1396,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1326,7 +1405,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1335,99 +1414,99 @@ msgstr ""
+ "        મળ્યુ નથી"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "ઉપલબ્ધ"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "ચાલી રહ્યુ છે"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "અજ્ઞાત"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    મેમરી : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1438,47 +1517,47 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit ભૂલ: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum ભૂલ: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "ભૂલ: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "સમાપ્ત!"
+ 
+@@ -1490,7 +1569,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "આ આદેશને ચલાવવા માટે તમારે રુટમાં હોવુ જરૂરી છે."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1507,451 +1586,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PACKAGE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "તમારી સિસ્ટમ પર પેકેજ અથવા પેકેજોને સ્થાપિત કરો"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "સ્થાપન પ્રક્રિયાને સુયોજિત કરી રહ્યા છે"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PACKAGE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "તમારી સિસ્ટમ પર પેકેજ અથવા પેકેજોને સુધારવું"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "સુધારવાની પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "સ્થાપિત થયેલ પેકેજો"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "ઉપલબ્ધ પેકેજો"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "વધારાનાં પેકેજો"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "સુધારેલ પેકેજો"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "પેકેજોને અપ્રચલિત કરી રહ્યા છે"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "હમણાંજ ઉમેરેલ પેકેજો"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "દૂર કરવાની પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "જૂથ પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "ઉપલબ્ધ પેકેજ જૂથોની યાદી કરો"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "તમારી સિસ્ટમ પર જૂથમાં પેકેજોને સ્થાપિત કરો"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "તમારી સિસ્ટમમાંથી જૂથમાં પેકેજોને દૂર કરો"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "પેકેજ જૂથ વિશે વિગતોને દર્શાવો"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "બધી મેટાડેટા ફાઇલો માટે કેશ ફાઇલો બનાવી રહ્યા છે."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "મેટાડેટા કેશ બનાવી"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "કેશ થયેલ માહિતીને દૂર કરો"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "ઉપલબ્ધ પેકેજ સુધારાઓ માટે ચકાસો"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "પેકેજોને શોધી રહ્યા છે: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "અદ્યતન બનાવવાની પ્રક્રિયા સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "સ્થાનિય RPM ને સ્થાપિત કરો"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "સ્થાનિય પેકેજ પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Yum Shell ને સુયોજિત કરી રહ્યા છીએ"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "રૂપરેખાંકિત થયેલ સોફ્ટવેર રિપોઝીટરીઓને દર્શાવો"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "સક્રિય"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "નિષ્ક્રિય"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "પરિસ્થિતિ"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "રિપોઝીટરી નામ"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "%s માટે ઉપલબ્ધ મદદ નથી"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "પેકેજને પુન:સ્થાપિત કરો"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum આવૃત્તિ જૂથો:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " જૂથ   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " પેકેજો:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "સ્થાપિત થયેલ:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "ઉપલબ્ધ:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "જૂથ-ઉપલબ્ધ:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "rpmdb માં સમસ્યાઓ માટે ચકાસો"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1962,100 +2074,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "સભ્ય: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "પેકેજ %s ને દૂર કરી રહ્યા છે"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2063,774 +2181,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "લુપ પુન:શરૂ કરી રહ્યા છે"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "%s માટે compare_providers() ચલાવી રહ્યા છે"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "સામાન્ય sourcerpm %s અને %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " વિજેતા: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "પ્લગઇન પહેલેથી જ પ્રારંભ થયેલ છે"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "સ્થાનિય RPMDB ને વાંચી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "જૂથ મેટાડેટાને મેળવી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "રિપોઝીટરી માથી જૂથ ફાઇલને ઉમેરી રહ્યા છે: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "કોઇપણ રિપોઝીટરીમાં જૂથો ઉપલબ્ધ નથી"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "રિપોઝીટરીમાંથી ટૅગને ઉમેરી રહ્યા છે: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "વધારાની ફાઇલયાદી જાણકારીને આયાત કરી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "\"%s\" દૂર કરવા માટે પ્રયત્ન કરી રહ્યા છે, કે જે સુરક્ષિત થયેલ છે"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "તાળુ %s ને ખોલી શક્યા નહિં: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "ચકાસવાનું અસમર્થ જો PID %s સક્રિય છે"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "%s ની સ્થાનિક નકલને વાપરી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "હેડર પૂર્ણ નથી."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s માટે સાર્વજનિક કી સ્થાપિત થયેલ નથી"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "પેકેજ %s ને ખોલી રહ્યા હોય ત્યારે સમસ્યા"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "પેકેજ %s હસ્તાક્ષર થયેલ નથી"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "%s ને દૂર કરી શકાતુ નથી"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s દૂર થયેલ છે"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s ફાઇલો દૂર થયેલ છે"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "%d પેકેજોને શોધી રહ્યા છે"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "પેકેજ %s ને શોધી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "રૂપરેખાંકિત થયેલ રિપોઝીટરીઓ માટે ઉપલબ્ધ જૂથ માહિતી નથી"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "નામ થયેલ જૂથ %s અસ્તિત્વ ધરાવતુ નથી"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "જૂથ %s માંથી પેકેજ %s ને ઉમેરી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "સ્થાપિત કરવા માટે નામ થયેલ પેકેજ %s ઉપલબ્ધ નથી"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "%s માટે પેકેજ મળ્યુ નથી"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "સ્થાપિત કરવા માટે કઇ જ સ્પષ્ટ થયેલ નથી"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "પેકેજ %s સ્થાપિત થયેલ છે અને ઉપલબ્ધ નથી"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ) ઉપલબ્ધ નથી"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "બધુ જ સુધારી રહ્યા છે"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "પેકેજ પહેલેથી જ અપ્રચલિત થયેલ છે: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "પેકેજને સુધારી રહ્યા નથી કે જે અપ્રચલિત થયેલ છે: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "પેકેજને સુધારી રહ્યા નથી કે જે પહેલેથી જ સુધારેલ છે: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "%s નું પરિક્ષણ કરી રહ્યા છે: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: સ્થાપિત પેકેજોને સુધારાતુ નથી."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "ઉપલબ્ધ પેકેજ માટે બંધબેસતુ નથી: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "%s માંથી અયોગ્ય GPG કી: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2839,7 +2967,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2847,207 +2975,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "cachedir ને સુયોજિત કરી શક્યા નહિં: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "લોડ થયેલ પ્લગઇન: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "પ્લગઇન \"%s\" ને આયાત કરી શકાતુ નથી"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "\"%s\" પ્લગઇનને લાવી રહ્યા છે"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "રૂપરેખાંકન ફાઇલ %s મળ્યુ નથી"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "પ્લગઇન %s માટે રૂપરેખાંકન ફાઇલ શોધવામાં અસમર્થ"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "આદેશોનું રજીસ્ટ્રેશન આધારભૂત નથી"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3056,6 +3208,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/hi.po b/po/hi.po
+index 988a7a5..cb6b64e 100644
+--- a/po/hi.po
++++ b/po/hi.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Hindi (http://www.transifex.net/projects/p/yum/team/hi/)\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,438 @@ msgstr ""
+ "Language: hi\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +456,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +901,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +954,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +962,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1499,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1551,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1568,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2056,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2163,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2949,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2957,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3190,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/hu.po b/po/hu.po
+index db7c07f..7b2d097 100644
+--- a/po/hu.po
++++ b/po/hu.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# András Bögöly <ebogoly at gmail.com>, 2011
++# Translators:
++# András Bögöly <ebogoly at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Hungarian (http://www.transifex.net/projects/p/yum/team/hu/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,123 +18,125 @@ msgstr ""
+ "Language: hu\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Frissítés"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Törlés"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Telepítés"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Elévült"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Frissítve"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Törölve"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Telepítve"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Hiányzik a fejléc - hm?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Újracsomagolás"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Hiba: érvénytelen kimeneti állapot: %s %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Eltávolítva: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Eltávolítás"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Tisztítás"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "A(z) \"%s\" nevű parancs már létezik"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Tárolók beállítása"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Tárolók metaadatainak beolvasása helyi fájlokból"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Beállítási hiba: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Opció hiba: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Telepítve : %s-%s at %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Létrehozva: %s at %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Hozzáadva: %s at %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Egy parancs megadása szükségeltetik"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Nincs ilyen parancs: %s. Kérjük használja a következőt: %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Szükséges hely:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
+ "  Legalább %dMB-tal több helyre van szükség az alábbi fájlrendszeren: %s\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,61 +144,61 @@ msgstr ""
+ "Hiba összegzés\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "A tranzakciót megpróbáltuk végrehajtani, de nincs semmi tennivaló. Kilépünk."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Felhasználói parancs miatt kilépés."
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Csomagok letöltése:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Hiba ezen csomagok letöltésekor:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Tranzakció-ellenőrzés futtatása"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "HIBA frissíteni kell az rpmet, hogy kezeljük:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "HIBA a tranzakció ellenőrzés- és függőségfeloldásnál:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM frissítésére van szükség"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Kérem jelentse ezt a hibát a következőben: %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Tranzakció teszt futtatása"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Tranzakció hibaellenőrzése:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "A Tranzakció teszt sikeres"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Tranzakció futtatása"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -203,233 +206,262 @@ msgstr ""
+ "Felügyelet nélküli futás közben kulcsok nem importálhatóak.\n"
+ "Használjuk az \"-y\" kapcsolót a felülbíráláshoz."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "* Lehet, hogy erre gondolt:"
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "A(z) %s%s%s elérhető, de nincs telepítve."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Nincs ilyen csomag: %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Telepítendő csomagok"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nincs tennivaló"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d csomag kijelölve frissítésre"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Nincs csomag kijelölve frissítésre"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d csomag van kijelölve Disztribúció Szinkronizáláshoz"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Nincs csomag kijelölve Disztribúció Szinkronizáláshoz"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d csomag van kijelölve eltávolításra"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Nincs csomag kijelölve eltávolításra"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Visszaállítandó csomagok"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr "(ebből: %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "A következő telepített csomag nem elérhető: %s%s%s%s"
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Újratelepítendő csomagok"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nem találhatóak csomagok"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Telepítendő csomagok"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "N/S Megegyezett: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  A névből és a leírásból csak %s egyezik ezzel: %s, használja a \"search "
++"all\" parancsot bárki kereséséhez."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  A teljes névből és leírásból csak %s egyezik ezzel: %s, használja a "
++"\"search all\" parancsot bárki kereséséhez."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Találat: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
++"  A névből és a leírásból többnyire %s egyezik meg ezzel: %s, használja a "
++"\"search all\" parancsot bárki kereséséhez."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Figyelem: Nincs találat a következőnél: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nincsenek találatok"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nem találhatóak csomagok a következőre: %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Tárolók tisztítása"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Minden tisztítása"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Fejlécek tisztítása"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Csomagok tisztítása"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "xml metaadat tisztítása"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Adatbázis-gyorsítótár tisztítása"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Elévülési gyorsítótár tisztítása"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Gyorsítótárazott rpmdb adatok tisztítása"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Bővítmények tisztítása"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Figyelem: Egy csoport sem azonos a következővel: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Telepített csoportok:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Telepített nyelvi csoportok:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Elérhető csoportok:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Elérhető nyelvi csoportok:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Kész"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Figyelem: Az alábbi csoport nem létezik: %s"
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "Nincs telepítendő vagy frissítendő csomag a kiválasztott csoportokból"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Telepítendő csomag"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Nincs ilyen csoport: %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Nincs szükség csomag eltávolítására csoportokból"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d Eltávolítandó csomag"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "A(z) %s nevű csomag már telepítve van, ezért továbblépünk."
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Megválunk a következőtől: pkg %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "Nincs más %s telepítve, ezért hozzáadjuk a listához."
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Bővítmény beállítások"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Parancssori hiba a következőben: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -440,289 +472,293 @@ msgstr ""
+ "\n"
+ "%s: %s opciónak szüksége van egy argumentumra"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--Szín egyikét veszi fel: auto, mindig, soha"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "A(z) --instalroot -nak abszolút elérési útnak kell lennie: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "ezen segítség mutatása"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "a hibák figyelmen kívül hagyása"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ "futtatás a rendszer gyorsítótárából anélkül, hogy a csomagok vagy "
+ "tárolóinformációk frissítve lennének"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "konfigurációs fájl elérésí útja"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "leghosszabb várakozási idő meghatározása"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "a hibakeresés szintje"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "ismétlődések mutatása a tárolókban és a keresési parancsokban"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "hiba kimeneti szintje"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm hibakereső szint"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "csendes működés"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "visszajelzés működés közben"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "igennel válaszol minden felmerülő kérdésre"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "Yum verziójának mutatása és kilépés"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "telepítési root beállítása"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "egy vagy több tároló engedélyezése (helyettesítő karakterek megengedettek)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "egy vagy több tároló tiltása (helyettesítő karakterek megengedettek)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "csomagok kizárása név vagy glob szerint"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "kizárás letiltása alapkomponensre, tárolókra ill. bármire"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "elavult komponensek feldolgozásának engedélyezése"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "Yum bővítmények tiltása"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "gpg-aláírás ellenőrzés kihagyása"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "bővítmények tiltása név szerint"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "bővítmények engedélyezése név szerint"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "azon csomagok átugrása, melyeknek függőségi problémáik vannak"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "szín használatának befolyásolása"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "az alábbi érték beállítása a yum tároló és konfigurációs fájljaiban: "
+ "$releasever"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "tetszőleges konfiguráció- és tárolóbeállítások"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "jan."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "feb."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "márc."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "ápr."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "máj."
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "jún."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "júl."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "aug."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "szept."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "okt."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "nov."
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "dec."
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Próbálkozás másik tükörszerverről."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Név         : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arch        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Verzió      : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Kiadás      : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Méret       : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Tároló      : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Tárolóból   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Beküldő     : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Beküldési idő: %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Kiállítási idő : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Telepítési idő: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Telepítette: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Módosította  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Összegzés   : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licenc      : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Leírás      : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "igen"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nem"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Ez így jó? [y/N]"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -731,154 +767,156 @@ msgstr ""
+ "\n"
+ "Csoport: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Csoport azonosító: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Leírás: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Nyelv: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Szükséges csomagok:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Alapértelmezett csomagok:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Opcionális csomagok:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Feltételes csomagok:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "csomag: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Ezen csomaghoz nincs függőség"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  függőség: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Teljesítetlen függőség"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Találat a következőtől:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licenc      : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Fájlnév     : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Egyéb       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Hiba történt a teljes letöltési méret számítása során"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Teljes méret: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Teljes letöltési méret: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Telepített méret: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Hiba történt a telepített méret számítása során"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Újratelepítés"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Visszaállítás"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Telepítés a függőségeknek"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Frissítés a függőségeknek"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Eltávolítás a függőségeknek"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Kihagyva (függőségi problémák)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Nem telepítve"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Nem elérhető"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Csomag"
++msgid_plural "Packages"
++msgstr[0] "Csomag"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arch"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Verzió"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Tároló"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Méret"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     lecserélés  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -889,57 +927,52 @@ msgstr ""
+ "Tranzakció Összegzés\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "%5.5s csomag telepítése\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Telepítés"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "%5.5s csomag frissítése\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "%5.5s csomag eltávolítása\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "%5.5s csomag újratelepítése\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Újratelepítés"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "%5.5s csomag visszaállítva\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Visszaállítás"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Eltávolítva"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Függőség Eltávolítva"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Függőség Telepítve"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Függőség Frissítve"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Lecserélve"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Sikertelen"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "kettő"
+ 
+@@ -947,7 +980,7 @@ msgstr "kettő"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -958,364 +991,416 @@ msgstr ""
+ "A jelenlegi letöltés megszakítva, %s megszakítás (ctrl-c) mégegyszer %s, %s%s%s másodperc alatt\n"
+ "a kilépéshez.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "Felhasználó által megszakítva"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Összesen"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<üres>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Rendszer"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+-msgstr ""
++msgstr "Egyesített tranzakció kihagyása: %d, mivel fedi a %d tranzakciót."
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Nincsenek tranzakciók"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Rossz tranzakció azonosító vagy csomagnév lett megadva"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Parancssor"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Felhasználó"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "azonosító"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Dátum és idő"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Művelet(ek)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Változtatta"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Nem lett megadva tranzakció azonosító"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Rossz tranzakció azonosító lett megadva"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Nem található a megadott tranzakció azonosítója"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Több, mint egy tranzakció azonosító található!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Nem lett megadva tranzakció azonosító vagy csomag"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Visszaállítva"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Régebbi"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Újabb"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Tranzakció azonosító:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Kezdés ideje   :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "rpmdb kezdete:"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u másodperc)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u perc)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u óra)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u nap)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Befejezés ideje:"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "rpmdb befejezése:"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Felhasználó    :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Visszatérési érték:"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Megszakítva"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Hibák:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Hiba:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Siker"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Parancssor     :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "További nem alapértelmezett információ lett eltárolva: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "A tranzakció lezajlott a következővel:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Módosított csomagok:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Kihagyott csomagok:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb hibák:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptlet kimenet:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Hibák:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Telepítés"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Függőség-Telepítés"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Elavulttá tevés"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Törlés"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Újratelepítés"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Visszaállítás"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Frissítés"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Időpont"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "1 napja"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "1 hete"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "2 hete"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "3 hónapja"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "6 hónapja"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "1 éve"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Több, mint egy éve"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Nem található a következő tranzakció: %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Tranzakció azonosító:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Rendelkezésre álló további információ az előzményekről:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Nem található további adat erre a névre"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "telepítve"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "egy frissítés"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "törölve"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "újratelepítve"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "egy visszaállítás"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "visszaállítás"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "frissítve"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "elavult"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> A(z) %s.%s %s:%s-%s csomaggal a következő történik: %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Tranzakció ellenőrzés futtatása"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Függőségvizsgálat újraindítása az új változásokkal."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> A függőségvizsgálat véget ért"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> A(z) %s függőség feldolgozása a következő csomaghoz: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Csomag megtartása: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Nem talált függőség: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Csomag: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1324,7 +1409,7 @@ msgstr ""
+ "\n"
+ "    Megkövetel: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1333,7 +1418,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1342,7 +1427,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1351,86 +1436,86 @@ msgstr ""
+ "        Nem található"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Frissítette"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Visszaállította"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Elavulttá tette"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Elérhető"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Konfliktus feldolgozása: %s ellentétben áll: %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> A tranzakció feltöltése csomagokkal. Kis türelmet."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> A(z) %s fejlécének betöltése, hogy a tranzakcióhoz hozzáadhassuk."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Fut"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Alszik"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Nem megszakítható"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Nyomozott/Megállított"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Ismeretlen"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  A másik alkalmazás: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  A másik alkalmazás: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memória : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Elindítva: %s - %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Állapot  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1440,7 +1525,7 @@ msgstr ""
+ "\n"
+ "Felhasználó által megszakítva"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1450,7 +1535,7 @@ msgstr ""
+ "\n"
+ "Kilépés megtört cső miatt (broken pipe)"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1461,7 +1546,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1469,35 +1554,35 @@ msgstr ""
+ "Egy másik alkalmazás használja a yum zárat, ezért kilépünk, ahogy be van "
+ "állítva az exit_on_lock szerint"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Bővítmény-Összeomlási Hiba: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum Hiba: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Hiba: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Próbálja meg használni --skip kapcsolót a probléma elkerüléséhez"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Próbálja meg futtatni: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Ismeretlen Hiba: Kilépési Kód: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1505,7 +1590,7 @@ msgstr ""
+ "\n"
+ "Függőségek Megtalálva"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Kész!"
+ 
+@@ -1517,7 +1602,7 @@ msgstr " Használat:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Csak a root felhasználó futtathatja ezt a parancsot."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1546,53 +1631,53 @@ msgstr ""
+ "\n"
+ "További információért lépjen kapcsolatba a disztribúciójával ill. a csomagszolgáltatójával.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Hibás tároló: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Hiba: Meg kell adni a csomagok listáját a következőhöz: %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Hiba: egy elemnek legalább egyeznie kell"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Hiba: Szükség van legalább egy csoportra"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Hiba: a clean parancsnak szüksége van egy opcióra: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Hiba: helytelen clean argumentum: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Nincs argumentum a héj felé"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Fájlnév átadva a héjnak: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "A(z) %s nevű fájl nem létező argumentumot adott át a héjnak."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Hiba: több, mint egy fájl lett átadva argumentumként a héjnak."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1603,306 +1688,299 @@ msgstr ""
+ "A következő paranccsal engedélyezhet tárolót:\n"
+ " yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "CSOMAG..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Csomag(ok) telepítése a rendszerre"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Telepítési folyamat megkezdése"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[CSOMAG...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Csomag(ok) frissítése a rendszeren"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Frissítési folyamat megkezdése"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Telepített csomagok szinkronizálása a legfrissebb verzióhoz"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Disztribúció szinkronizálási folyamat megkezdése"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Részletek megjelenítése egy csomagról vagy egy csomagcsoportról"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Telepített csomagok"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Elérhető csomagok"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Extra csomagok"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Frissített csomagok"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Elavult csomagok"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Nemrégiben hozzáadott csomagok"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Nem található csomag"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Csomag vagy csomagcsoport listázása"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Csomag(ok) eltávolítása a rendszerből"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Eltávolítási folyamat megkezdése"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Csoport folyamat megkezdése"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Nem található csoport, amin futtatható a parancs"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Elérhető Csomagcsoportok listázása"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Csoportban lévő csomagok telepítése"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Csoportban lévő csomagok eltávolítása"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Részletek megjelenítése egy csoportról"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Metaadat-gyorsítótár generálása"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Gyorsítótár készítése az összes metaadat fájlhoz."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Ez eltarthat egy darabig a számítógép sebességétől függően"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metaadat gyorsítótár létrehozva"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Gyorsítótárazott adat eltávolítása"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Megtalálja, mely csomag tartalmazza a megadott értéket"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Csomagfrissítések ellenőrzése"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Csomagrészletek keresése egy megadott szöveg alapján"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Csomagok keresése: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Csomagok frissítése az elavultakat is számításba véve"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Frissítési folyamat megkezdése"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Helyi RPM telepítése"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Helyi csomagolási folyamat megkezdése"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Megállapítja, melyik csomag tartalmazza a megadott függőséget"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Csomagfüggőségek keresése:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Interaktív yum shell futtatása"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Yum Shell indítása"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Egy csomag függőségeinek listázása"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Függőségek keresése: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Beállított szoftverforrások megjelenítése"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "engedélyezett"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "tiltott"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Tároló-azonosító: "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Tároló-név   : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Tároló-állapot: "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Tároló-vizsgálat:"
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Tároló-címkék : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Tároló-diszt.-címkék: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Tároló-frissítve: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Tároló-csomagok: "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Tároló-méret  : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Tároló-baseurl: "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Tároló-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Frissítve  : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Tároló-tükrök: "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Soha (utoljára: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Most (utoljára: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s másodperc (utoljára: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Tároló-lejárat: "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Tároló-kizárás:"
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Tároló-tartalmaz: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Tároló-kizárt: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Tároló-fájlnév: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "tároló azon"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "állapot"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "tároló név"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Egy használati tipp mutatása"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Nincs súgó az alábbi témakörben: %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1912,7 +1990,7 @@ msgstr ""
+ "\n"
+ "alias-ok: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1922,117 +2000,163 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Újratelepítő folyamat indítása"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "egy csomag újratelepítése"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Visszaállítási folyamat indítása"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "egy csomag visszaállítása"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Verzió és/vagy elérhető tárolók megjelenítése"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum verzió csoportok:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Csoport   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr "Csomagok:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Telepített:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Telepített csoport:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Elérhető:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Elérhető csoport:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Korábbi tranzakciók használata vagy megjelenítése"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Helytelen alparancs az előzményekhez, használja a következőt: %s"
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Ön nem tudja elérni az előzmények adatbázisát."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Hibák keresése az rpmdb-ben"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "egy elmentett tranzakció betöltése fájlnév alapján"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "Nincs meghatározva az elmentett tranzakció fájlja."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "tranzakciók betöltések a következőből: %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+-msgstr ""
++msgstr "Tranzakció betöltve innen: %s, %s taggal"
+ 
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
++msgstr " Yum ellenőrzés meghiúsult: %s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Nem sikerült lezárni; kilépés..."
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Egy másik alkalmazás jelenleg használja a yum zárolást; várakozás annak "
+ "kilépésére..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Függőségek megállapítása"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2042,74 +2166,74 @@ msgstr ""
+ "\n"
+ "Kilépés felhasználói megszakítás miatt."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "A doTsSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Tranzakciók indítása a konfigurációs osztályok felállása előtt"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Hibás tsflag a következő konfigurációs fájlban: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Keresés a pkgSack-ben függőség után: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Tag: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "A(z) %s át lett konvertálva telepítéshez"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "A(z) %s nevű csomag hozzáadása %s módban"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "A következő csomag eltávolítása: %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "A(z) %s megköveteli a következőket: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "A(z) %s megköveteli a következőt: %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "A szükséges dolognak már utánanéztek, lecsaljuk"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "A megkövetelt dolog nem csomag, ezért utánanézünk: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Lehetséges Szolgáltató: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "A mód %s a(z) %s kiszolgáló felé: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "A(z) %s nevű csomag szolgáltatásának módja: %s"
+@@ -2117,117 +2241,117 @@ msgstr "A(z) %s nevű csomag szolgáltatásának módja: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "Kisérlet a(z) %s frissítésére a függőségek feloldásához"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+-msgstr ""
++msgstr "Nem található frissítési útvonal a következőhöz: %s."
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: A(z) %s nevű csomaghoz szükséges a(z) %s törlése"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: %s lecserélése függőség miatt a következőre: %s."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: %s frissítése függőség miatt."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Nem található frissítési útvonal a következőhöz: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "A(z) %s követelménye %s (gyors találattal)"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s az ellátandó csomagoknál található, bár telepítve van, ezért "
+ "eltávolítjuk."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "A lehetséges %s nevű csomag már újabb verzióval szerepel a tranzakcióban."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "A lehetséges %s nevű csomagból már újabb verzió van telepítve."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "A(z) %s már szerepel a tranzakcióban, kihagyás"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: %s bejelölése a(z) %s frissítéseként"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: A(z) %s telepítésre való bejelölése a következőhöz: %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Siker - üres tranzakció"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Folyamat újraindítása"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Függőségkezelő folyamat végetért"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Siker - függőségek megoldva"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Függőségek keresése a következőre: %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "A(z) %s keresése, mint a(z) %s szükséglete."
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "A compare_providers() parancs futtatása a következőhöz: %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "Jobb architektúra a következőben: %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "A(z) %s már újabb, mint a(z) %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2236,144 +2360,144 @@ msgstr ""
+ "archdist osszehasonlítva %s a következőhöz: %s a következőn: %s\n"
+ "  Nyertes: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "gyakori forrásrpm %s és %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "legjobb %s nevű csomag telepítve van a következőhöz: %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "gyakori előtag a következőre: %s, %s és %s között"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "minimum szükséges: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Nyertes: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Vesztes(ezzel: %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Legjobb sorrend: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "A doConfigSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "%r tároló: Hiba a konfigurációs fájl elemzése során: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "A %r tárolónak hiányzik a neve a konfigurációban, ezért azonosítót "
+ "használunk."
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "a bővítmények már betöltődtek"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "A doRpmDBSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Helyi RPMDB beolvasása"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "A doRepoSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "A doSackSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Tárolók csomagjainak előkészítése"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "A következő tárolóobjektumból hiányzik a _resetSack metódus: %s\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "ezért ezt a tárolót nem lehet visszaállítani.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "A doUpdateSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Frissítési objektum létrehozása"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "A doGroupSetup() már nem lesz elérhető a későbbi Yum verziókban.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Csoport metaadatok beszerzése"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Csoportfájl hozzáadása a következő tárolóból: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Sikertelen a csoportfájl hozzáadása a következő tárolónál: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Nincsenek elérhető csoportok egy tárolóban sem"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "pkgtags metaadatok beszerzése"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Címkék hozzáadása a következő tárolóból: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Sikertelen a címkék hozzáadása a következő tárolóból:%s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "További fájllista információk importálása"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "A következő program megtalálható a yum-utils csomagban: %s%s%s"
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2381,21 +2505,21 @@ msgstr ""
+ "Félbehagyott tranzakciók találhatóak. Ha be kívánja azokat fejezni, "
+ "használja a yum-complete-transaction parancsot."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+-msgstr ""
++msgstr "--> Szükségtelen függőségek keresése"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+-msgstr ""
++msgstr "Védett multilib verzió: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Próbálkozás a(z) \"%s\" eltávolításával, ami védett"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2403,54 +2527,54 @@ msgstr ""
+ "\n"
+ "Az alábbi csomagok ki lettek hagyva függőségi problémák miatt:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s a következőből: %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** %d már meglévő rpmdb probléma található, 'yum check' kimenet pedig a "
+ "következő:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Figyelem: RPMDB a yumon kívülről lett megváltoztatva."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "követelmények hiányoznak"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "konfliktusokat teremtett"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Figyelem: scriptlet vagy egyéb nem végzetes hiba adódott a tranzakció során."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "A tranzakció nem indítható:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Tranzakció futtatása meghiúsult."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "A következő tranzakció-fájl eltávolítása meghiúsult: %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+@@ -2458,37 +2582,40 @@ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ "A(z) %s nevű csomagok már el kellett volna távolítani, habár ez még nem "
+ "történt meg."
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "A zárolás feloldása nem lehetséges: %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Nem lehetséges az ellenőrzés, ha a %s PID aktív"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Már le van zárva %s: egy másik példány fut a következő pid-vel: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Nem zárható le a következő: %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2497,42 +2624,31 @@ msgstr ""
+ "A csomag nem egyezik a várt letöltéssel. Ajánlott futtatni az alábbi parancsot:\n"
+ "yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Ellenőrzőösszeg végrehajtása nem lehetséges"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "A csomag nem egyezik az ellenőrzőösszeggel"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "A csomag nem egyezik az ellenőrzőösszeggel, de a gyorsítótárazás "
+ "engedélyezett a következőhöz: %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "helyi másolat használata a következőhöz: %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Nincs elég hely a letöltési könyvtárban: %s\n"
+-"    * szabad    %s\n"
+-"    * szükséges %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "A fejléc nem teljes."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2540,62 +2656,64 @@ msgstr ""
+ "A fejléc nem található meg a helyi gyorsítótárban és a \"csak "
+ "gyorsítótárazás\" mód be van kapcsolva. Nem tölthető le a következő: %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "A publikus kulcs nincs telepítve a következőhöz: %s"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Hiba a következő csomag megnyitásánál: %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "A publikus kulcs nem megbízható a következőhöz: %s"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "A következő csomag nincs aláírva: %s"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Nem távolítható el: %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s eltávolítva"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Nem távolítható el a %s nevű fájl: %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s fájl %s eltávolította"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s fájl eltávolítva"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Több, mint egy azonos találat a tömbben a következőre: %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Semmi sem egyezik a következővel: %s.%s %s:%s-%s a frissítésből"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2603,122 +2721,126 @@ msgstr ""
+ "A searchPackages() parancs már nem lesz elérhető a későbbi Yum verziókban.\n"
+ "Kérjük, inkább használja a searchGenerator() parancsot helyette.\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "%d csomag keresése"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "A következő csomag keresése: %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "Keresés fájlbejegyzésekben"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "Keresés ellátási bejegyzésekben"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Nincsenek elérhető csoportadatok a beállított tárolókban"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Nincs %s nevű csoport"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "A(z) %s nevű csomag nem lett bejelölve a következő csoportban: %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "A(z) %s nevű csomag hozzáadás a következő csoportból: %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Nincs telepíthető csomag %s néven."
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "Figyelem: A(z) %s csoport nem tartalmaz egyetlen csomagot sem."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
++"A(z) %s csoportnak %u feltételes csomagja van, amelyek lehet, hogy "
++"telepítésre kerülnek."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "A csomagtömbben nem található leíró a következőre: %s"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Az rpmdb nem tartalmaz csomagleírót a következőre: %s"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+-msgstr ""
++msgstr "Érvénytelen verzió: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nem található csomag a következőre: %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "A Csomag Objektum nem egy csomag-objektum példány"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Semmi sem lett megadva telepítésnek"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ "Virtuális szolgáltatása vagy fájlszolgáltatás ellenőrzése a következőre: %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Nincs találat a következő argumentumra: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "A(z) %s nevű csomag telepítve, bár nem érhető el"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Nincsenek elérhető csomagok telepítésre"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Csomag: %s  - már szerepel a tranzakcióban"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "A csomag %s cserélve lett a következőre: %s, ami már telepítve van"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2727,19 +2849,19 @@ msgstr ""
+ "A(z) %s nevű csomag már elavult a következő miatt: %s, bár ez nem teljesíti "
+ "a követelményeket"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "A(z) %s nevű csomag már elavult a következő miatt: %s, próbálkozás inkább "
+ "a(z) %s telepítésével"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "A(z) %s nevű csomag már a legfrissebb verzióval rendelkezik"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+@@ -2747,70 +2869,76 @@ msgstr ""
+ " keresése."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Minden frissítése"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ "Azon csomagok nem lesznek frissítve, melyek már elavultak: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "A következő csomag már elavult: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "A következő elavult csomag nem lesz frissítve: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "Azon csomagok nem lesznek frissítve, melyek már frissítve vannak: %s.%s "
+ "%s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nem található csomag eltávolításra"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "A futó kernel kihagyása: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "%s eltávolítása a tranzakcióból"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Nem nyitható meg a következő: %s. Kihagyás."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "%s felülvizsgálata: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ "Nem lehet helyileg telepíteni a következő deltarpm fájlt: %s. Kihagyás."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2818,14 +2946,14 @@ msgstr ""
+ "Nem lehet a(z) %s csomagot hozzáadni a tranzakcióhoz. Nincs kompatibilis "
+ "architektúra: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Nem lehet telepíteni a következő csomagot: %s. Ez már elavultnak számít a "
+ "ezen telepített csomag miatt: %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2834,103 +2962,110 @@ msgstr ""
+ "A(z) %s nevű csomag már telepítve van, frissítése nem lehetséges. Kérjük, "
+ "használja ehelyett a yum install parancsot a telepítéséhez."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
++"A következő csomag nincs telepítve: %s.%s, ezért nem lehet frissíteni. "
++"Futtassa a \"yum install\" parancsot a telepítéshez."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "%s kizárása"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s megjelölése telepítésre"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s megjelölése, mint %s frissítése"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: nem frissíti a telepített csomagot."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Nem nyitható meg a következő fájl: %s. Kihagyás."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Probléma az újratelepítésnél: egy csomag sem eltávolítandó"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Probléma az újratelepítésnél: nem található %s nevű csomag telepítéshez"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Nincsenek elérhető csomagok visszaállításhoz"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "A(z) %s csomag többször is telepíthető, kihagyás"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Nem található csomag a következőre: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Csak frissítés érhető el a következő csomagnál: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Visszaállítás meghiúsult: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
+ #, python-format
+-msgid "Retrieving key from %s"
++msgid "Failed to upgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4958
++#, python-format
++msgid "Retrieving key from %s"
++msgstr "GPG kulcs beszerzése a következőből: %s"
++
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG kulcs beszerzés meghiúsult: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+-msgstr ""
++msgstr "A(z) %s GPG kulcs aláírása nem egyezik a tároló CA kulcsával: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+-msgstr ""
++msgstr "A GPG kulcs sikeresen ellenőrizve lett a CA kulcsokkal"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Hibás GPG kulcs a következőből: %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG kulcs elemzés meghiúsult: a kulcs nem tartalmaz értéket: %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2938,34 +3073,41 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"%s GPG kulcs 0x%s importálása:\n"
++"Felhasználó: %s\n"
++"Csomag   : %s (%s)\n"
++"Származás: %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"%s GPG kulcs 0x%s importálása:\n"
++"Felhasználó: %s\n"
++"Származás: %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "A következő GPG kulcs már telepítve van: %s (0x%s)"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "A kulcs importálása meghiúsult (hibakód %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "A kulcs importálása sikeres"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "Nem lett telepítve egyetlen kulcs sem"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2974,25 +3116,25 @@ msgstr ""
+ "A GPG kulcsok a(z) \"%s\" nevű tárolóhoz már telepítve vannak, de nem jók ehhez a csomaghoz.\n"
+ "Kérjük, ellenőrizze, hogy az URL címek helyesen vannak-e megadva ezen tárolóhoz."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "A kulcsok importálása nem segített, rossz kulcsok?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "A következő GPG kulcs már telepítve van: %s (0x%s)"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "A kulcs importálása meghiúsult"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "Nem lett telepítve egyetlen kulcs sem a következő tárolóhoz: %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3001,158 +3143,186 @@ msgstr ""
+ "A GPG kulcsok a(z) \"%s\" nevű tárolóhoz már telepítve vannak, de nem jók.\n"
+ "Kérjük, ellenőrizze, hogy az URL címek helyesen vannak-e megadva ezen tárolóhoz."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Nem található megfelelő tükörszerver."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Hiba történt a csomagok letöltése közben."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Kérjük, jelentse ezt a hibát a következő címen: %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Tranzakció teszt hibák: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Gyorsítótár-mappa beállítása meghiúsult: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
++"A függőségek feloldása még nincs kész. Nem lehet a függőben lévő tranzakciót"
++" menteni."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "A következő tranzakciófájl mentése meghiúsult: %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
++msgstr "Az elmentett tranzakció beolvasása meghiúsult: %s: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
++msgstr "Az rpmdb verziója nem egyezik a mentett tranzakció verziójával, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr " kihagyva, ahogy kértük."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr "megszakítás."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+-msgstr ""
++msgstr "Nem található a tsflags, vagy a tsflags nem egész szám."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+-msgstr ""
++msgstr "txmbr található a jelenleg ismeretlen állapotban: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+-msgstr ""
++msgstr "Nem található txmbr: %s állapotban %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+-msgstr ""
++msgstr "Nem található txmbr: %s, innen: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
++"A tranzakció elemek, tranzakció-viszonyok hiányoznak, vagy a ts feltehetően "
++"megváltozott,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
++msgstr " átugorva, ahogy kérte. Szükséges a redepsolve!"
++
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
+ msgstr ""
+ 
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Betöltött bővítmények: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Nem találhatóak bővítmények a következőre: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "A(z) \"%s\" nevű bővítmény betöltésének kihagyása, mert le van tiltva"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "A(z) \"%s\" nevű bővítmény nem importálható"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "A(z) \"%s\" nevű bővítmény nem felel meg a megkövetelt API verziónak"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "A(z) \"%s\" nevű bővítmény megköveteli a %s APIt. Támogatott API: %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "A következő bővítmény betöltése: %s"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Kettő vagy több plugin már léteik a keresési útvonalon a következő néven: %s"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "A következő konfigurációs fájl nem található: %s"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Nem található konfigurációs fájl a következő bővítményhez: %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "parancsok regisztrációja nem támogatott"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "hiányoznak követelmények"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "konfliktusokat teremtett"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s egy másolat a következőhöz: %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s már elavult a következő miatt: %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s ellátja a következőt: %s, de nem található"
+@@ -3161,6 +3331,17 @@ msgstr "%s ellátja a következőt: %s, de nem található"
+ msgid "Repackaging"
+ msgstr "Újracsomagolás"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Nincs elég hely a letöltési könyvtárban: %s\n"
++"    * szabad    %s\n"
++"    * szükséges %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/id.po b/po/id.po
+index 2fbdf46..f3ad415 100644
+--- a/po/id.po
++++ b/po/id.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Indonesian (http://www.transifex.net/projects/p/yum/team/id/)\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,429 @@ msgstr ""
+ "Language: id\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +447,443 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +891,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +944,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +952,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1489,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1541,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1558,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2046,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2153,782 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2937,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2945,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3178,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/id_ID.po b/po/id_ID.po
+index 964c239..ec2d379 100644
+--- a/po/id_ID.po
++++ b/po/id_ID.po
+@@ -2,13 +2,14 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Teguh Dwicaksana <dheche at songolimo.net>, 2011
++# Translators:
++# Teguh Dwicaksana <dheche at songolimo.net>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -17,415 +18,431 @@ msgstr ""
+ "Language: id_ID\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Memutakhirkan"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Menghapus"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Memasang"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Usang"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Termutakhirkan"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Dihapus"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Terpasang"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Tidak ada header - huh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Memaket Ulang"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Dihapus: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Menghapus"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Pembersihan"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Menyiapkan repositori"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Membaca metadata repositori dari berkas lokal"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Kesalahan Konfigurasi: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Kesalahan Opsi: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Terpasang: %s-%s di %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Anda perlu memberi beberapa perintah"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Persyaratan Disk:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Setidaknya dibutuhkan ruang %dMB lagi di sistem berkas %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Setidaknya dibutuhkan ruang %dMB lagi di sistem berkas %s.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Mencoba untuk menjalankan transaksi tetapi tidak ada yang harus dikerjakan. "
+ "Keluar."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Mengunduh Paket-paket:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Kesalahan Saat Mengunduh Paket-paket:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "GALAT Anda perlu memperbarui rpm untuk menangani:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM perlu dimutakhirkan"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Laporkan kesalahan di %s ini"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Menjalankan Uji Transaksi"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Kesalahan Pengujian Transaksi:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Uji Transaksi Berhasil"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Menjalankan Transaksi"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Mungkin maksud Anda: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Paket %s%s%s tersedia, tapi tidak terpasang."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Tidak ada paket %s%s%s yang tersedia."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paket yang akan dipasang"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Tak ada tindakan yang dilakukan"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paket telah ditandai untuk dimutakhirkan"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Tidak ada Paket yang ditandai untuk dimutakhirkan"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paket ditandai untuk dihapus"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Tidak ada paket yang ditandai untuk dihapus"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (dari %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Paket %s%s%s%s yang terpasang tidak tersedia."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paket yang akan dipasang ulang"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Tidak ada paket yang tersedia"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paket yang akan dipasang"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Cocok: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Peringatan: Tidak ada yang cocok: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Tidak ada yang cocok"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Tidak ada paket yang ditemukan untuk %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Membersihkan repo: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Membersihkan Semuanya"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Membersihkan Header"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Membersihkan Paket-paket"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Membersihkan metadata xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Membersihkan singgahan basis data"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Membersihkan metadata singgahan yang kadaluarsa"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Membersihkan data rpmdb yang disinggahkan"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Membersihkan pengaya"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Grup yang terpasang:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Grup yang Tersedia:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Selesai"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Peringatan: Grup %s tidak ada."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Paket yang akan dipasang"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Tidak ada nama grup %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Tidak ada paket yang akan dihapus dari grup"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d Paket akan dihapus"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paket %s sudah diinstal, lewati"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opsi Pengaya"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Galat di perintah baris: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -436,287 +453,291 @@ msgstr ""
+ "\n"
+ "%s: opsi %s membutuhkan argumen"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "tampilkan pesan bantuan ini dan keluar"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "toleran terhadap kesalahan"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ "jalankan sepenuhnya dari singgahan sistem, jangan memutakhirkan persinggahan"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "lokasi berkas konfigurasi"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "waktu tunggu perintah maksimum"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "operasi senyap"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "jawab ya untuk semua pertanyaan"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "tampilkan versi Yum dan keluar"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "aktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "nonaktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "nonaktifkan pengaya Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "nonaktifkan pemeriksaan tanda tangan gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "nonaktifkan pengaya berdasarkan nama"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "aktifkan pengaya berdasarkan nama"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "tentukan nilai $releasever di berkas konfigurasi yum dan repo"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mei"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Agu"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Des"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nama        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arst        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versi     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Rilis     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Ukuran        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repo        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Dari repo   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Waktu pemasangan: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Dipasang oleh: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Diubah oleh  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Ringkasan     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Lisensi     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Keterangan : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ya"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -725,154 +746,155 @@ msgstr ""
+ "\n"
+ "Grup: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " ID-Grup: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Deskripsi: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Paket-paket Wajib:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Paket-paket Opsional:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paket: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Lisensi     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nama berkas    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Lainnya       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Ada kesalahan saat menghitung ukuran total pengunduhan"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Ukuran total: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Total ukuran pengunduhan: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Ukuran terpasang: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Ada kesalahan saat menghitung ukuran terpasang"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Memasang ulang"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Tidak terpasang"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paket"
++msgid_plural "Packages"
++msgstr[0] "Paket"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arst"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versi"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repositori"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Ukuran"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -883,57 +905,52 @@ msgstr ""
+ "Ringkasan Transaksi\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Pasang   %5.5s Paket\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instal"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Hapus    %5.5s Paket\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Pasang Ulang %5.5s Paket\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Instal Ulang"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Dihapus"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Ketergantungan Dihapus"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Ketergantungan Dipasang"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Ketergantungan Dimutakhirkan"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Diganti"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Gagal"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dua"
+ 
+@@ -941,7 +958,7 @@ msgstr "dua"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -949,364 +966,416 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "diinterupsi pengguna"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<unset>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistem"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Tanggal dan waktu"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Tindakan"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Diubah"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Tak ada ID transaksi yang diberikan"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Tidak ditemukan ID transaksi yang diberikan"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Ditemukan lebih dari satu ID transaksi!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Tidak ada ID transaksi, atau paket, yang diberikan"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Lebih Lama"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Lebih Baru"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ID Transaksi:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Waktu mulai     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Waktu selesai       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Pengguna           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Kode-Balikan    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Dibatalkan"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Kegagalan:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Sukses"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Perintah Baris   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transaksi dilakukan dengan:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Paket Diubah:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Paket Dilewati:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Permasalahan rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Keluaran scriptlet:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instal"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Hapus"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Instal Ulang"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Mutakhirkan"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Waktu"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Hari terakhir"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Minggu lalu"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "2 minggu terakhir"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "3 bulan terakhir"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "6 bulan terakhir"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Setahun terakhir"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Lebih dari setahun yang lalu"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "terpasang"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "dihapus"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "dipasang ulang"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "termutakhirkan"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "usang"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Menjalankan pemeriksaan transaksi"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paket: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1315,7 +1384,7 @@ msgstr ""
+ "\n"
+ "    Dibutuhkan: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1324,7 +1393,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1333,7 +1402,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1342,99 +1411,99 @@ msgstr ""
+ "        Tidak ditemukan"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Dimutakhirkan Oleh"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Tersedia"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Berjalan"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Tak dapat diinterupsi"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Tak diketahui"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Aplikasi lainnya adalah: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Aplikasi lainnya adalah: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memori : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Dijalankan: %s - %s yang lalu"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    State  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1445,47 +1514,47 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Selesai!"
+ 
+@@ -1497,7 +1566,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1514,53 +1583,53 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nama berkas telah diteruskan ke shell: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1570,398 +1639,431 @@ msgstr ""
+ "Jalankan \"yum repolist all\" untuk melihat repo apa yang Anda miliki.\n"
+ "Anda dapat mengaktifkan repo dengan yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Memasang paket di sistem Anda"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Menyiapkan Proses Pemasangan"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Memutakhirkan paket-paket di sistem Anda"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Menyiapkan Proses Pemutakhiran"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Paket Terpasang"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Paket Tersedia"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Paket Tambahan"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Paket Termutakhirkan"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Paket Usang"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Paket yang baru ditambah"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Tidak ada Paket yang cocok dalam daftar"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Daftar paket atau kelompok paket"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Hapus paket dari sistem Anda"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Menyiapkan Proses Penghapusan"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Menyiapkan Proses Grup"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr ""
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr ""
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr ""
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instal RPM lokal"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Menyiapkan Proses Paket Lokal"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Pencarian Paket untuk Ketergantungan:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Jalankan shell yum interaktif"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Menyiapkan Shell Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Daftar ketergantungan paket"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Mencari ketergantungan: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Tampilkan repositori perangkat lunak yang terkonfigurasi"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "aktif"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "nonaktif"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "ID-Repo      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Nama-Repo    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Status-Repo  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Revisi-Repo: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Tag-Repo    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Ukuran-Repo    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Tak Pernah (terakhir: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Menampilkan versi mesin dan/atau repo yang tersedia."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Grup versi Yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grup   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Paket:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Terpasang:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Grup-Terpasang:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Tersedia"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Grup-Tersedia:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Tampilkan, atau gunakan, riwayat transaksi"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Anda tidak memiliki akses ke DB riwayat"
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Memeriksa masalah di rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1972,100 +2074,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Anggota: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s telah dikonversi untuk instalasi"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Menghapus Paket: %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s membutuhkan: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s membutuhkan %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2073,774 +2181,782 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2849,7 +2965,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2857,207 +2973,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3066,6 +3206,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/it.po b/po/it.po
+index 44b6091..f66ac5c 100644
+--- a/po/it.po
++++ b/po/it.po
+@@ -2,13 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
++# Guido Grazioli <guido.grazioli at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:25+0000\n"
++"Last-Translator: guidograzioli <guido.grazioli at gmail.com>\n"
+ "Language-Team: Italian (http://www.transifex.net/projects/p/yum/team/it/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -16,122 +18,124 @@ msgstr ""
+ "Language: it\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Aggiornamento"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Eliminazione"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installazione"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Reso obsoleto"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Aggiornato"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Eliminato"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installato"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Nessun header - come?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Reimpacchetto"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Errore: stato di output non valido: %s per %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Eliminato: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Rimozione in corso"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Pulizia"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Comando \"%s\" già definito"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Settaggio repository"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Lettura dei metadati dei repository dai file locali"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Errore di configurazione: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Errore opzioni: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installato: %s-%s da %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Build    : %s su %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Committed: %s su %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "È necessario specificare un comando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Comando sconosciuto: %s. Eseguire %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Requisiti disco:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Servono almeno altri %dMB sul filesystem %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Servono almeno altri %dMB sul filesystem %s.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -139,60 +143,60 @@ msgstr ""
+ "Riepilogo errori\n"
+ "----------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "La transazione non contiene alcuna operazione da eseguire."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Uscita richiesta dall'utente"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Download dei pacchetti:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Errore nel download dei pacchetti:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+-msgstr ""
++msgstr "Esecuzione del controllo di transazione"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERRORE Occorre aggiornare rpm per gestire:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+-msgstr ""
++msgstr "ERRORE del controllo di transazione nei confronti di depsolve:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM deve essere aggiornato"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Riportare questo errore su %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Test di transazione in corso"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Errore nel controllo transazione:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Test di transazione eseguito con successo"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Transazione in corso"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -200,237 +204,266 @@ msgstr ""
+ "L'importazione automatica delle chiavi è disabilitata in modalità non interattiva.\n"
+ "Usare \"-y\" per abilitarla."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Forse si intendeva: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Pacchetto %s%s%s disponibile, ma non installato."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Nessun pacchetto %s%s%s disponibile."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Pacchetto(i) da installare"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d pacchetto da installare"
++msgstr[1] "%d pacchetti da installare"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Niente da fare"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pacchetti marcati per l'aggiornamento"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d pacchetto marcato per l'aggiornamento"
++msgstr[1] "%d pacchetti marcati per l'aggiornamento"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Nessun pacchetto marcato per l'aggiornamento"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pacchetti marcati per la Distribution Synchronization"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d pacchetto marcato per la Distribution Synchronization"
++msgstr[1] "%d pacpacchetti marcati per la Distribution Synchronization"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Nessun pacchetto marcato per la Distribution Synchronization"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pacchetti marcati per la rimozione"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d pacchetto marcato per la rimozione"
++msgstr[1] "%d pacchetti marcati per la rimozione"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Nessun pacchetto marcato per la rimozione"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Downgrade dei pacchetti"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d pacchetto marcato per il downgrade"
++msgstr[1] "%d pacchetti marcati per il downgrade"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (da %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Pacchetto installato %s%s%s%s non disponibile."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Pacchetto(i) da reinstallare"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d pacchetto da reinstallare"
++msgstr[1] "%d paccchetti "
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nessun pacchetto specificato"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Pacchetto(i) da installare"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+-msgstr ""
++msgstr "N/D trovati: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  Ricerca effettuata %ssolamente%s in nome e descrizione breve, usare "
++"\"search all\" per cercare in tutti i campi."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  Ricerca effettuata %ssolamente%s in nome completo e descrizione breve, "
++"usare \"search all\" per cercare in tutti i campi."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Trovato: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
++"  Ricerca effettuata %sper lo più%s in nome e descrizione breve, usare "
++"\"search all\" per cercare in tutti i campi."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Attenzione: Nessun pacchetto trovato per: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nessuna corrispondenza trovata"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nessun pacchetto trovato per %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Pulizia dei repository:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Pulizia completa"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Pulizia header"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Pulizia pacchetti"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Pulizia metadati xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Pulizia cache database"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Pulizia metadati expire-cache"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Pulizia cache di rpmdb"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Pulizia plugin"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "Attenzione: nessun gruppo trovato per: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Gruppi installati:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "Gruppi lingua installati:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Gruppi disponibili:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "Gruppi lingua disponibili:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Fatto"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Attenzione: Il gruppo %s non esiste."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Nessun pacchetto in alcun gruppo richiesto è disponibile per l'installazione"
+ " o l'aggiornamento"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pacchetto(i) da installare"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d pacchetto da installare"
++msgstr[1] "%d pacchetti da installare"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Non esiste nessun gruppo con nome %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Nessun pacchetto da rimuovere dai gruppi"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pacchetto(i) da eliminare"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d pacchetto da eliminare"
++msgstr[1] "%d pacchetti da eliminare"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Il pacchetto %s è già installato, verrà ignorato"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Esclusione del pacchetto non comparabile %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Nessun altro %s installato, inserimento in lista per potenziale "
+ "installazione"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opzioni plugin"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Errore di linea di comando: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -441,284 +474,288 @@ msgstr ""
+ "\n"
+ "%s: l'opzione %s richiede un argomento"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color deve specificare uno tra: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "--installroot deve essere un percorso assoluto: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "mostra questo messaggio di aiuto ed esce"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "tollera gli errori"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "esegui esclusivamente in cache, senza aggiornarla"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "percorso del file di configurazione"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "tempo massimo di attesa comando"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "livello output di debug"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "mostra i duplicati nei repo, per i comandi list/search"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "livello output per gli errori"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "livello output di debug per rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "modalità silenziosa"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "mostra più messaggi di log"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "risponde si a tutte le domande"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "risponde no a tutte le domande"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "mostra la versione di yum ed esce"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "imposta la root d'installazione"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "abilita uno o più repository (wildcard consentite)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "disabilita uno o più repository (wildcard consentite)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "esclude pacchetti per nome o glob"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "disabilita l'esclusione dal main, per un repo o per tutto"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "abilita l'elaborazione degli obsoleti durante l'aggiornamento"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "disabilita i plugin di Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "disabilita il controllo della firma gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "disabilita i plugin per nome"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "abilita i plugin per nome"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "ignora pacchetti con problemi di risoluzione dipendenze"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+-msgstr "controlla se il colore è usato"
++msgstr "imposta l'uso del colore"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "imposta $releasever nella configurazione di yum e nei file dei repo"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "imposta configurazioni arbitrarie e opzioni dei repository"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Gen"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mag"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Giu"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Lug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Ago"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Set"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Ott"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dic"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Connessione ad un altro mirror in corso."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nome         : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arch         : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch        : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versione     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Rilascio     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Dimensione   : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repo         : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Dal repo     : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Committer    : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Data commit  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Data build   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Data inst.   : %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installato da: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Modificato da: %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Sommario     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL          : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licenza      : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Descrizione  : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "s"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "si"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Procedere [s/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -727,157 +764,159 @@ msgstr ""
+ "\n"
+ "Gruppo: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Id-Gruppo: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Descrizione: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " Lingua: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Pacchetti necessari:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Pacchetti di default:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr "Pacchetti opzionali:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Pacchetti condizionali:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "pacchetto: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Nessuna dipendenza per questo pacchetto"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  dipendenze: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Dipendenza non soddisfatte"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Corrispondenza trovata in:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licenza     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nome file   : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Altro       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ "Si è verificato un errore nel calcolo della dimensione totale di download"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Dimensione totale: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Dimensione totale del download: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Dimensione installata: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ "Si è verificato un errore nel calcolo della dimensione del pacchetto "
+ "installato"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Reinstallazione"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Downgrade"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Installazioni per dipendenze"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Aggiornamenti per dipendenze"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Rimozioni per dipendenze"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Saltato (problemi di dipendenze)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Non installato"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Non disponibile"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Pacchetto"
++msgid_plural "Packages"
++msgstr[0] "Pacchetto"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arch"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versione"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repository"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Dim."
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     in sostituzione di %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -888,57 +927,52 @@ msgstr ""
+ "Riepilogo della transazione\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Installa %5.5s pacchetti\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Install"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Aggiorna %5.5s pacchetti\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Aggiornamento"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Elimina %5.5s pacchetti\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Rimozione"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Reinstalla %5.5s pacchetti\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Reinstall"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Downgrade %5.5s pacchetti\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Downgrade"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Eliminato"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dipendenza rimossa"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dipendenza installata"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dipendenza aggiornata"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Sostituito"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Fallito"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "due"
+ 
+@@ -946,7 +980,7 @@ msgstr "due"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -957,365 +991,417 @@ msgstr ""
+ " Download interrotto, %spremi nuovamente (ctrl-c)%s entro %s%s%s secondi\n"
+ "per uscire.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "interruzione utente"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Totale"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<non impostato>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistema"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+-msgstr ""
++msgstr "Ignoro la transazione importata %d a %d, perchè genera conflitti"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "Nessuna transazione"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "L'ID transazione, o il pacchetto specificato, non è corretto"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "Linea di comando"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Utente loggato"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Data e ora"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Azione/i"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Modifiche"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "ID transazione non specificato"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "L'ID transazione specificato non è corretto"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "L'ID transazione specificato non è stato trovato"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Sono stati trovati ID transazione multipli!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "ID transazione o pacchetto non specificato"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Downgraded"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Meno recente"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Più recente"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ID transazione :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Ora inizio     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "rpmdb iniziale :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u secondi)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u minuti)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u ore)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u giorni)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Ora termine    :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "rpmdb finale   :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Utente         :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Return-Code    : "
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Interrotto"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "Operazioni fallite:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Errore:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Completato"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Linea di comando :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Informazioni non predefinite addizionali salvate: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transazione eseguita con:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Pacchetti modificati:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Pacchetti ignorati:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problemi di rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Output della scriptlet:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Errori:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Install"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Dep-Install"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Obsoleto"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Eliminato"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Reinstall"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Downgrade"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Update"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Data"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Ultime 24 ore"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Ultima settimana"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Ultime 2 settimane"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Ultimi 3 mesi"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Ultimi 6 mesi"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Ultimi 12 mesi"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Più di un anno"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Transazione %s non trovata"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "ID transazione:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Informazioni addizionali sulla cronologia:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: nessuna informazione addizionale trovata con questo nome"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Pacchetto      :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Stato          :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Dimensione     :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Build host     :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Build time     :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Packager       :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Vendor         :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licenza        :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "RPM sorgente   :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Data Commit    :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Committer      :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Motivo         :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Dal repo       :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Installato da  :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Modificato da  :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installato"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+-msgstr ""
++msgstr "un aggiornamento"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "eliminato"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "reinstallato"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+-msgstr ""
++msgstr "un downgrade"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+-msgstr ""
++msgstr "reso obsoleto"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "aggiornato"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "reso obsoleto"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+-msgstr ""
++msgstr "---&gt; Pacchetto %s.%s %s:%s-%s settato per essere %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Esecuzione del controllo di transazione"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Riavvio della risoluzione delle dipendenze con i nuovi cambiamenti."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Risoluzione delle dipendenze completata"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Elaborazione dipendenza: %s per il pacchetto: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Pacchetto mantenuto: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Dipendenza non risolta: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Pacchetto: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1324,7 +1410,7 @@ msgstr ""
+ "\n"
+ "    Richiede: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1333,7 +1419,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1342,7 +1428,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1351,87 +1437,87 @@ msgstr ""
+ "        Non trovato"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Aggiornato da"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Downgraded da"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Reso obsoleto da"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Disponibile"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Analisi conflitto: %s va in conflitto con %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Inizializzazione della transazione con i pacchetti selezionati. "
+ "Attendere prego."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Download dell'header per includere %s nel set di transazione."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "In esecuzione"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "In attesa"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Non interrompibile"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Traced/Interrotto"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Sconosciuto"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  L'altra applicazione è: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  L'altra applicazione è: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memoria : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Avviato: %s - %s fa"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Stato  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1441,7 +1527,7 @@ msgstr ""
+ "\n"
+ "Uscita forzata da utente"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1451,7 +1537,7 @@ msgstr ""
+ "\n"
+ "Uscita per broken pipe"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1462,7 +1548,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1470,35 +1556,35 @@ msgstr ""
+ "Un'altra applicazione sta bloccando l'esecuzione di yum; arresto come "
+ "configurato da exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Errore ritorno del plugin: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Errore di yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Errore: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Si può provare ad usare --skip-broken per aggirare il problema"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Provare ad eseguire: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Errore sconosciuto: Codice di uscita: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1506,19 +1592,19 @@ msgstr ""
+ "\n"
+ "Dipendenze risolte"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Completo!"
+ 
+ #: ../yumcommands.py:42
+ msgid " Mini usage:\n"
+-msgstr ""
++msgstr " Uso comune:\n"
+ 
+ #: ../yumcommands.py:52
+ msgid "You need to be root to perform this command."
+ msgstr "Occorre avere i privilegi di root per eseguire questo comando."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1548,53 +1634,53 @@ msgstr ""
+ "\n"
+ "Per altre informazioni contattare il supporto della distribuzione.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Repository del problema: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Errore: occorre passare una lista di pkg a %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Errore: richiesto un elemento per testare il match"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Errore: un gruppo o una lista di gruppi sono necessari"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Errore: il comando clean richiede l'opzione: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Errore: argomento per il comando clean non valido: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Nessun argomento per la shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nome file passato alla shell: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Il file %s dato come argomento per la shell non esiste."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Errore: più di un file passato come argomento alla shell."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1604,307 +1690,300 @@ msgstr ""
+ " Eseguire \"yum repolist all\" per vedere la lista dei repository.\n"
+ " E' possibile abilitare i repository desiderati con yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PACCHETTO..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Installa uno o più pacchetti nel sistema"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Impostazione processo di installazione"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PACCHETTO...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Aggiorna uno o più pacchetti nel sistema"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Impostazione processo di aggiornamento"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Sincronizza i pacchetti installati con le ultime versioni disponibili"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Impostazione processo di Distribution Synchronization"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Visualizza dettagli su un pacchetto o un gruppo di pacchetti"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Pacchetti installati"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Pacchetti disponibili"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Pacchetti extra"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Aggiornamenti disponibili"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Pacchetti resi obsoleti"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Pacchetti aggiunti di recente"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Nessun pacchetto presente in lista"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Elenca un pacchetto o un gruppo di pacchetti"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Elimina uno o più pacchetti dal sistema"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Impostazione processo di eliminazione"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Mostra o utilizza le informazioni sui gruppi"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Impostazione processo di gruppo"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Nessun gruppo sul quale eseguire il comando"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Elenca i gruppi di pacchetti disponibili"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Installa nel sistema i pacchetti di un gruppo"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Elimina dal sistema i pacchetti di un gruppo"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Visualizza i dettagli di un gruppo di pacchetti"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Sottocomando di groups non valido, usare: %s"
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Genera la cache dei metadati"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Creazione dei file di cache per i metadati."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "L'operazione impiegherà del tempo che dipende dalla velocità del computer"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Cache dei metadata creata"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Elimina i dati nella cache"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+-msgstr "Determina il pacchetto che fornisce il valore dato"
++msgstr "Determina quale pacchetto fornisce un dato valore"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Controlla la disponibilità di aggiornamenti per i pacchetti"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Cerca il termine passato nei dettagli dei pacchetti"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Ricerca dei pacchetti: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Aggiorna i pacchetti tenendo conto degli obsoleti"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Impostazione processo di upgrade"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Installa un RPM in locale"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Impostazione processo per pacchetti in locale"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Determina quale pacchetto soddisfa la dipendenza specificata"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Ricerca dei pacchetti per le dipendenze:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Esegue una shell di yum interattiva"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Impostazione della shell di yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Elenca le dipendenze di un pacchetto"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Ricerca delle dipendenze: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Mostra i repository di software configurati"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "abilitato"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "disabilitato"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Id-Repo       : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Nome-Repo     : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Stato-Repo    : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Revisione-Repo: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tags     : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo-updated : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Repo-pkgs    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Dim.-Repo    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Aggiornato :"
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-mirrors : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Mai (ultimo: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Istantaneo (ultimo: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s secondi (ultimo: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Repo-expire  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-exclude : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-include :"
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repo-excluded: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Repo-filename: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "id repo"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "stato"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nome repo"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Mostra un'utile guida all'uso"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Nessun aiuto disponibile per %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1914,7 +1993,7 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1924,117 +2003,167 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Impostazione processo di reinstallazione"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Reinstalla un pacchetto"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Impostazione processo di downgrade"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Esegue il downgrade di un pacchetto"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Mostra una versione del sistema e/o dei repo disponibili."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Gruppi della versione di yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Gruppo  :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Pacchetti:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installato:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Group-Installed:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Disponibile:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Group-Available:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Visualizza e gestisci la cronologia delle transazioni"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transazioni:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Ora inizio  :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Ora fine    :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Conteggi   :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Sotto comando per history non valido, usare: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Non si dispone dell'accesso alla cronologia."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Identifica gli errori nell'rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "carica una transazione salvata da un file"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "Nessun file specificato per la transazione salvata."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "caricamento transazione da %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+-msgstr ""
++msgstr "Transazione caricata da %s con %s membri"
+ 
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
++msgstr " Controlli Yum falliti: %s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
++"Accesso in lettura/scrittura non disponibile nella directory corrente, mi "
++"sposto su /"
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Impossibile creare il file di lock; uscita"
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Un'altra applicazione sta bloccando l'esecuzione di yum; in attesa che "
+ "esca..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Risoluzione dipendenze"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
++"La transazione è stata salvata; per eseguirla nuovamente:\n"
++" yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2044,74 +2173,74 @@ msgstr ""
+ "\n"
+ "Uscita su richiesta utente."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Impostazione del TransactionSets prima che sia attivo config class"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "tsflag non valido nel file di configurazione: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+-msgstr "Ricerca di pkgSack per dip: %s"
++msgstr "Ricerca nel pkgSack per dip: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Membro: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s convertito in installazione"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Aggiunto il pacchetto %s in modo %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Rimozione pacchetto %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s richiede: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s richiede %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Il requisito necessario è già stato controllato, imbroglio"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Il requisito necessario non è il nome di un pacchetto. Ricerca di: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Provider potenziale: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "La modalità è %s per il provider di %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Modalità per il pacchetto che fornisce %s: %s"
+@@ -2119,120 +2248,121 @@ msgstr "Modalità per il pacchetto che fornisce %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "Tentativo di aggiornare %s per risolvere una dipendenza"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
++"Nessun percorso di aggiornamento trovato per %s. Aggiornamento fallito!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: il pacchetto %s richiede che %s sia marcato per la rimozione"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: Verrà reso obsoleto %s sostituendolo con %s per risolvere una "
+ "dipendenza."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Aggiornamento di %s per risolvere dip."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ "Impossibile trovare un percorso di aggiornamento delle dipendenze per: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Individuato %s come requisito per %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s è nei pacchetti fornitori ma è già installato, viene rimosso."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "Il potenziale pacchetto risolutore %s ha già una più recente istanza in ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "Il potenziale pacchetto risolutore %s ha una più recente istanza già "
+ "installata."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s è gia nel set delle transazioni (ts), verrà saltato"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: %s marcato come aggiornamento per %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: %s marcato come da installare per %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Successo - transazione vuota"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Riavvio del ciclo"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Elaborazione delle dipendenze terminata"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Successo - dipendenze risolte"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Controllo delle dipendenze per %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "ricerca di %s come requisito di %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Esecuzione di compare_providers() per %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "migliore architettura in po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s rende obsoleto %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2241,143 +2371,143 @@ msgstr ""
+ "archdist ha comparato %s a %s su %s\n"
+ "  Vincitore: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "sourcerpm comune %s e %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "il pacchetto base %s è installato per %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "prefisso comune di %s tra %s e %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr " richiede almeno: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Vincitore: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Perdente (con %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Ordine migliore: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Repository %r: errore nella lettura della configurazione: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "Nella configurazione non è presente il nome del repo %r, viene usato l'id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "plugin già inizializzati"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Lettura del RPMDB locale"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Impostazione dei Package Sack"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "l'oggetto repo per il repository %s non dispone del metodo _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "quindi questo repository non può essere resettato.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() verrà eliminato in una futura versione di yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Costruzione oggetto aggiornamenti"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() verrà eliminato in una futura versione di Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Scaricamento metadati del gruppo"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Aggiunta file group dal repository: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Errore durante l'aggiunta del file groups per il repository: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Nessun gruppo disponibile in alcun repository"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Scaricamento metadati pkgtags"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Aggiunta tag dal repository: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Errore aggiungendo i Pkg Tags per il repository: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Import di informazioni addizionali sulla lista di file"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Il programma %s%s%s si trova nel pacchetto yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2385,21 +2515,21 @@ msgstr ""
+ "Ci sono transazioni non completate. Si consiglia di eseguire prima yum-"
+ "complete-transaction per portarle a termine."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+-msgstr ""
++msgstr "--&gt; Ricerca di dipendenze non necessarie"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+-msgstr ""
++msgstr "Versioni multilib protette: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Tentativo di rimozione di \"%s\", che è protetto"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2407,89 +2537,92 @@ msgstr ""
+ "\n"
+ "Pacchetti ignorati a causa di problemi di dipendenze:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s da %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Trovati %d problemi pre-esistenti nel rpmdb, l'output di 'yum check' è:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Attenzione: RPMDB modificato al di fuori di yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "dipendenze mancanti"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "conflitto installato"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Attenzione: durante la transazione si sono verificati errori di scriptlet o "
+ "altri errori non fatali."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Non è stato possibile iniziare la transazione:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Impossibile eseguire la transazione."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Eliminazione del file di transazione %s fallita"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s doveva essere installato, ma non sembra esserlo!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s doveva essere eliminato, ma non lo è stato!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Impossibile creare il lock su %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Non è possibile controllare se il PID %s è attivo"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Lock %s attivo: altro processo in esecuzione con pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Impossibile creare il lock su %s: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2498,40 +2631,29 @@ msgstr ""
+ "Il pacchetto non corrisponde al download desiderato. Suggerimento: eseguire "
+ "yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Non è stato possibile calcolare il checksum"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Il pacchetto non corrisponde al checksum"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "il pacchetto ha fallito il checksum ma la cache è abilitata per %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "utilizzo di una copia locale di %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Spazio insufficiente nella cartella di download %s\n"
+-"    * libero     %s\n"
+-"    * necessario %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "L'header non è completo."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2539,62 +2661,64 @@ msgstr ""
+ "Header non presente in cache locale e modalità solo-cache abilitata. "
+ "Impossibile scaricare %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "La chiave pubblica per %s non è installata"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problemi nell'apertura di %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "La chiave pubblica per %s non è trusted"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Il pacchetto %s non è firmato"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Non posso rimuovere %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s eliminato"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Impossibile rimuovere %s file %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s file %s rimosso"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s file rimossi"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s file rimosso"
++msgstr[1] "%d %s file rimossi"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Più di una corrispondenza identica nel sack per %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nessuna corrispondenza per %s.%s %s:%s-%s dall'aggiornamento"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2602,121 +2726,125 @@ msgstr ""
+ "searchPackages() verrà eliminato in una futura versione di yum. In "
+ "sostituzione usare searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Ricerca dei pacchetti %d"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Ricerca di %d pacchetto"
++msgstr[1] "Ricerca di %d pacchetti"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "ricerca del pacchetto %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "ricerca nelle file entries"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "ricerca nelle provides entries"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Non ci sono informazioni sui gruppi per i repository configurati"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Il gruppo %s non esiste"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "il pacchetto %s non è stato contrassegnato nel gruppo %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Aggiunta del pacchetto %s dal gruppo %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Nessun pacchetto con nome %s disponibile per l'installazione"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "Attenzione: il gruppo %s non contiene alcun pacchetto."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
++"Il gruppo %s contiene %u pacchetti facoltativi, che potrebbero essere "
++"installati."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Il pacchetto con tupla %s non è stato trovato nel packagesack"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Il pacchetto con tupla %s non è stato trovato nel rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+-msgstr ""
++msgstr "Flag di versione non valido da: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nessun pacchetto trovato per %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Package Object non è un'istanza di un oggetto package"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Non è specificato niente da installare"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Controllo dei virtual provide o file-provide per %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Nessuna corrispondenza per l'argomento: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Il pacchetto %s è installato e non disponibile"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Nessun pacchetto disponibile per l'installazione"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Pacchetto: %s - già nel set di transazione"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Il pacchetto %s è reso obsoleto da %s, che è già installato"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2725,85 +2853,91 @@ msgstr ""
+ "Il pacchetto %s è reso obsoleto da %s, ma quest'ultimo non fornisce i "
+ "provide richiesti"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "Il pacchetto %s è reso obsoleto da %s, tentativo di installare %s al suo "
+ "posto"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Il pacchetto %s è già installato e aggiornato all'ultima versione"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Il pacchetto corrispondente a %s è già installato. Controllo aggiornamenti."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Aggiornamento completo"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Il pacchetto obsoleto non verrà aggiornato: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Nessun pacchetto trovato per l'aggiornamento: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Il pacchetto era già obsoleto: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Il pacchetto obsoleto non verrà aggiornato: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Il pacchetto è già aggiornato: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nessun pacchetto selezionato per l'eliminazione"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Nessun pacchetto trovato per la rimozione: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Ignoro il kernel in esecuzione: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Rimozione di %s dalla transazione"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Impossibile aprire: %s. Verrà ignorato."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Analisi di %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "localinstall del deltarpm fallito: %s. Verrà ignorato."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2811,14 +2945,14 @@ msgstr ""
+ "Impossibile aggiungere il pacchetto %s alla transazione. Architettura non "
+ "compatibile: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Impossibile installare il pacchetto %s. E' reso obsoleto dal pacchetto "
+ "installato %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2827,106 +2961,115 @@ msgstr ""
+ "Non è possibile aggiornare il pacchetto %s perchè non è installato. Eseguire"
+ " yum install per installarlo."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
++"Il pacchetto %s.%s non è installato, non è quindi possibile aggiornarlo. "
++"Eseguire yum install se si desidera installarlo."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Esclusione di %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s contrassegnato per l'installazione"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s contrassegnato come aggiornamento di %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: non aggiorna il pacchetto installato."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Impossibile aprire il file: %s. Verrà ignorato."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Problema nella reinstallazione: nessun pacchetto corrispondente per la "
+ "rimozione"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Problema nella reinstallazione: nessun pacchetto corrispondente a %s per "
+ "l'installazione"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Nessun pacchetto disponibile per il downgrade"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Il pacchetto %s permette installazioni multiple, lo salto"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Nessuna corrispondenza per il pacchetto disponibile: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Solo l'upgrade è disponibile per il pacchetto: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Downgrade fallito: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Impossibile aggiornare: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+-msgstr ""
++msgstr "Recupero chiave da %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Recupero chiave GPG fallito: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
++"La firma della chiave GPG %s non corrisponde alla chiave della CA per il "
++"repository: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+-msgstr ""
++msgstr "Verifica della firma della chiave GPG con la chiave della CA fallita "
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Chiave GPG non valida da %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Analisi chiave GPG fallita: la chiave non ha il valore %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2934,34 +3077,41 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"Importazione chiave %s 0x%s:\n"
++" Userid  : %s\n"
++" Pacchetto: %s (%s)\n"
++" Da       : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"Importazione chiave %s 0x%s:\n"
++" Userid: %s\n"
++" Da    : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "Chiave GPG in %s (0x%s) già installata"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Importazione chiave fallita (codice %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Chiave importata correttamente"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "Non è stata installata alcuna chiave"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2970,25 +3120,25 @@ msgstr ""
+ "Le chiavi GPG elencate per il repository \"%s\" sono attualmente installate ma non sono corrette per questo pacchetto.\n"
+ "Controllare che gli URL delle chiavi di questo repository siano configurati correttamente."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Importazione delle chiavi non sufficiente, chiave sbagliata?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "Chiave GPG in %s (0x%s) è già stata importata"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Importazione chiave fallita"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "Non è stata installata alcuna chiave per il repository %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2997,158 +3147,189 @@ msgstr ""
+ "Le chiavi GPG elencate per il repository \"%s\" sono attualmente installate ma non sono corrette.\n"
+ "Controllare che gli URL delle chiavi di questo repository siano configurati correttamente."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Impossibile trovare un mirror adatto."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Si sono verificati degli errori durante il download dei pacchetti."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Riportare questo errore su %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Errori nel test di transazione: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Impossibile impostare la cachedir: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
++"Dipendenze non risolte. La transazione con dipendenze non risolte non verrà "
++"salvata."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "Impossibile salvare il file di transazione %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
++msgstr "Impossibile accedere/leggere la transazione salvata %s: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
++"la versione di rpmdb non corrisponde alla versione della transazione "
++"salvata, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr " ignorato, come richiesto."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr " esecuzione annullata."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+-msgstr ""
++msgstr "impossibile trovare tsflags o tsflags non intero."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+-msgstr ""
++msgstr "Membro di transazione trovato in stato attuale sconosciuto: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+-msgstr ""
++msgstr "Impossibile trovare il membro di transazione: %s in stato %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+-msgstr ""
++msgstr "Impossibile trovare il membro di transazione: %s dall'origine: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
++"Membri della transazione, ci sono relazioni mancanti oppure ts è stata "
++"modificata,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
++" ignorati, come richiesto. E' necessario eseguire nuovamente depsolve."
++
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s è già stato visitato e non è possibile rimuoverlo."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Esame delle revdeps di %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s ha come revdep %s che è stato installato dall'utente."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s non ha revdep installate dall'utente."
+ 
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Plugin abilitati:"
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Nessun plugin corrisponde a: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Il plugin \"%s\" non è stato caricato, perchè è disabilitato"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Il plugin \"%s\" non può essere importato"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Il plugin \"%s\" non specifica la versione API richiesta"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Il plugin \"%s\" richiede l'API %s. L'API supportata è %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Caricamento del plugin \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Esiste più di un plugin con nome \"%s\" nel percorso di ricerca dei plugin"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "File di configurazione %s non trovato"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Impossibile trovare il file di configurazione per il plugin %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registrazione dei comandi non supportata"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "ha una dipendenza mancante di"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "ha conflitti con pacchetti installati"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s è un duplicato di %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s è reso obsoleto da %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s fornisce %s, ma non è stato possibile trovarlo"
+@@ -3157,6 +3338,17 @@ msgstr "%s fornisce %s, ma non è stato possibile trovarlo"
+ msgid "Repackaging"
+ msgstr "Reimpacchettamento"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Spazio insufficiente nella cartella di download %s\n"
++"    * libero     %s\n"
++"    * necessario %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/ja.po b/po/ja.po
+index a232b0c..fd3f905 100644
+--- a/po/ja.po
++++ b/po/ja.po
+@@ -2,14 +2,16 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Hajime Taira <htaira at redhat.com>, 2011
++# Translators:
++# Hajime Taira <htaira at redhat.com>, 2011.
++# Tadashi Jokagi <elf at elf.no-ip.org>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-10-10 03:08+0000\n"
++"Last-Translator: elf <elf at elf.no-ip.org>\n"
+ "Language-Team: Japanese (http://www.transifex.net/projects/p/yum/team/ja/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +19,123 @@ msgstr ""
+ "Language: ja\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "更新"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "削除中"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "インストールしています"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "不要"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "更新"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "削除"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "インストール"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "ヘッダーがありません - はて?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "再パッケージ"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "エラー: 不正な出力状態: %s for %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "削除しました: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "削除"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "整理中"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "コマンド「%s」はすでに定義済みです"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "リポジトリーの設定"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "ローカルファイルからリポジトリーのメタデータを読み込んでいます"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "設定エラー: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "オプションエラー: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "インストール: %s-%s (日時: %s)"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  構築      : %s  (日時: %s)"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  コミット  : %s (日時: %s)"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "いくつかのコマンドを指定する必要があります"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "コマンド「%s」が見つかりません。「%s --help」を実行してください。"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "ディスク要求:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  少なくとも %dMB の空き容量がファイルシステム %s で必要です。\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  少なくとも %dMB の空き容量がファイルシステム %s で必要です。\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,292 +143,307 @@ msgstr ""
+ "エラーの要約\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "トランザクションの実行を試みましたが、何もありませんでした。終了します。"
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "ユーザーコマンドを終了しています"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "パッケージをダウンロードしています:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "パッケージのダウンロードでエラー:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "トランザクションのチェックを実行してします。"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "エラー: RPM の更新のためのハンドルを更新する必要があります"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "更新には RPM が必要です"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "%s にこのエラーを報告してください"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "トランザクションのテストを実行しています"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "トランザクションの確認エラー\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "トランザクションのテストを成功しました"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "トランザクションを実行しています"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * おそらくの意味: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "パッケージ %s%s%s は利用できますが、インストールしませんでした。"
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "パッケージ %s%s%s は利用できません。"
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "インストールするパッケージ"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "何もしません"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d 個のパッケージが更新の設定しました。"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "更新と設定されたパッケージがありません。"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d 個のパッケージを同期配信に設定しました。"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "パッケージが同期配信に設定したパッケージはありません。"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d 個のパッケージを削除に設定しました。"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "削除と設定したパッケージはありません。"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "ダウングレードするパッケージ"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (%s から)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "インストール済みパッケージ %s%s%s%s は利用できません。"
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "再インストールするパッケージ"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "パッケージが提供されていません。"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "インストールするパッケージ"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "一致: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "警告: 一致するものが見つかりません: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "見つかりませんでした"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "%s のパッケージが見つかりません"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "リポジトリーを清掃しています: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "すべて掃除しています"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "ヘッダーを掃除しています"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "パッケージを掃除しています"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "XML メタデータを掃除しています"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "データベースキャッシュを掃除しています"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "期限切れのメタデータキャッシュを掃除しています"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "キャッシュ済み rpmdb データを掃除しています"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "プラグインを掃除しています"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "警告: 一致するグループがありません: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "インストール済みグループ:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "インストール済みの言語グループ:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "利用可能なグループ"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "利用できる言語グループ:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "完了"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "警告: グループ %s が存在しません。"
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "インストールまたは更新に利用できるいくつかの要求されたグループにパッケージがありません"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d 個のパッケージをインストールします"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "グループ名 %s が存在しません"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "グループから削除するパッケージがありません"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d 個のパッケージを削除します"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "パッケージ %s は既にインストールされているので飛ばします"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "非互換のパッケージ %s.%s を破棄しています"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "プラグインのオプション"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "コマンドライン エラー: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -436,284 +454,288 @@ msgstr ""
+ "\n"
+ "%s: オプション %s は引数が必要です "
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color がとることができる値な次のうちひとつです: auto、always、never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "--installroot は絶対パスでなければなりません: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "このヘルプ メッセージを表示して終了する"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "エラーを黙認する"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "キャッシュから完全に実行し、キャッシュを更新しません"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "構成ファイルの場所"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "コマンドの最大待ち時間"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "デバッグ情報の出力レベル"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "一覧/検索コマンドのリポジトリーの重複の表示"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "エラー出力レベル"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm のデバッグ情報の出力レベル"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "静かに処理をする"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "冗長に処理をする"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "すべての問い合わせに「yes」で答える"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "Yum のバージョンを表示して終了する"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "インストールのベース ディレクトリーを設定する"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "ひとつ以上のリポジトリーを有効にする (ワイルドカード許可)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "ひとつ以上のリポジトリーを無効にする (ワイルドカード許可)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "名前かワイルドカードでパッケージを除外する"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "main、あるリポジトリー、またはすべてからの除外を無効にします。"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "更新中に不要な処理を有効にします"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "Yum プラグインを無効にする"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "GPG 署名の確認を無効にする"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "名前でプラグインを無効にする"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "名前でプラグインを有効にする"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "依存性に問題があるパッケージを飛ばす"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "色を使うかどうか制御する"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "yum 設定と repo ファイルに $releasever の値を設定する"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "全体設定とリポジトリー オプションの任意に設定する"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "1 月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "2 月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "3 月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "4 月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "5 月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "6 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "7 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "8 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "9 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "10 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "11 月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "12 月"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "他のミラーを試します。"
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "名前                : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "アーキテクチャ      : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "エポック            : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "バージョン          : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "リリース            : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "容量                : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "リポジトリー        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "提供元リポジトリー  : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "コミット者          : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "コミット日時        : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "ビルド日時          : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "インストール日時    : %s "
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "インストール済み容量: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "変更者              : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "要約                : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL                 : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "ライセンス          : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "説明                : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "はい"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "いいえ"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "これでいいですか? [y/N]"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -722,154 +744,155 @@ msgstr ""
+ "\n"
+ "グループ: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " グループ ID: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " 説明: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " 言語: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " 強制的なパッケージ:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " 標準パッケージ:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " オプション パッケージ:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " 条件付パッケージ:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "パッケージ    : %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  このパッケージの依存はありません"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  依存性      : %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "  満たされていない依存性"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "一致          :"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "ライセンス    : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "ファイル名    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "その他        : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "総ダウンロード容量の計算中にエラーです。"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "合計容量: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "総ダウンロード容量: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "インストール済み容量: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "インストール容量の計算中にエラーです。"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "再インストール中"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "ダウングレード中"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "依存性関連でのインストールをします。"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "依存性関連での更新をします。"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "依存性関連での削除をします。"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "飛ばしました (依存性の問題)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "未インストール"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "利用できません"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "パッケージ"
++msgid_plural "Packages"
++msgstr[0] "パッケージ"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "アーキテクチャ"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "バージョン"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "リポジトリー"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "容量"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     置き換えています  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -880,57 +903,52 @@ msgstr ""
+ "トランザクションの要約\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "インストール     %5.5s パッケージ\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "インストール"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "アップグレード   %5.5s パッケージ\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "アップグレード"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "削除             %5.5s パッケージ\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "削除"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "再インストール   %5.5s パッケージ\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "再インストール"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "ダウングレード   %5.5s パッケージ\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "ダウングレード"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "削除しました"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "依存性の削除をしました"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "依存性関連をインストールしました"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "依存性を更新しました"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "置換"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "失敗"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "2"
+ 
+@@ -938,7 +956,7 @@ msgstr "2"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -948,364 +966,416 @@ msgstr ""
+ "\n"
+ "現在のダウンロードをキャンセルしました。終了するには %s再度割り込み ([Ctrl][C]キー)%s を %s%s%s 秒以内に押してください。\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "ユーザーの割り込み"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "合計"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<未設定>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "システム"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "トランザクションがありません"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "指定されたトランザクション ID、またはパッケージがおかしいです"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "コマンドライン"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "ログイン ユーザー"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "日時"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "操作"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "変更"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "指定されたトランザクション ID がありません。"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "指定されたトランザクション ID がおかしいです"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "指定されたトランザクション ID が見つかりません"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "ひとつ以上のトランザクション ID が見つかりません!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "指定されたトランザクション ID、またはパッケージが見つかりません。"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "ダウングレード済み"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "より古い"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "より新しい"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "トランザクション ID :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "開始時間            :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "開始 rpmdb          :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u 秒)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u 分)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u 時間)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u 日)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "終了時間            :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "終了 rpmdb          :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "ユーザー            :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "終了コード          :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "中断しました"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "失敗:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "失敗しました:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "成功"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "コマンドライン      :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "保存済みの追加の非標準な情報: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "トランザクションの実行:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "切り替えたパッケージ:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "パッケージを飛ばします:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb の問題:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "スクリプトの出力:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "エラー:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "インストール"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "依存インストール"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "不要削除"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "削除"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "再インストール"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "ダウングレード"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "更新"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "時間"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "昨日"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "先週"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "最近の 2 週間"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "最近の 3 ヶ月間"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "最近の 6 ヶ月間"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "昨年"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "1 年以上前"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "トランザクション %s が見つかりません。"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "トランザクション ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "追加の履歴情報が利用できます:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: この名前から追加のデータが見つかりません。"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "インストール"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "削除"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "再インストール"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "更新"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "不要"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> トランザクションの確認を実行しています。"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> 新しい変更と依存性の解決を再開しています。"
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> 依存性解決を終了しました。"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> 依存性の処理をしています: %s のパッケージ: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> 維持しています: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> 未解決の依存性: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "パッケージ: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1314,7 +1384,7 @@ msgstr ""
+ "\n"
+ "     要求: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1323,7 +1393,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1332,7 +1402,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1341,85 +1411,85 @@ msgstr ""
+ "        見つかりません"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "次のものにより更新された: "
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "次のものによりダウングレードされた: "
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "次のものにより不要にされた: "
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "利用可能"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> 衝突を処理しています: %s は %s と衝突しています"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> トランザクションセットに束ねるために %s のヘッダーをダウンロードしています"
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "実行中"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "スリープ中"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "割り込み不可"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "ゾンビ"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "トレース/停止"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "不明"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr " 他のアプリケーション: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr " 他のアプリケーション: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "   メモリー: %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    開始   : %s - %s 秒経過"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    状態   : %s、PID: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1429,7 +1499,7 @@ msgstr ""
+ "\n"
+ "ユーザーのキャンセルで終了しています"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1439,7 +1509,7 @@ msgstr ""
+ "\n"
+ "パイプが壊れたため終了しています"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1450,41 +1520,41 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr "別のアプリケーションが現在 yum のロックを持っています。exit_on_lock による設定が存在します"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "プラグインのエラー終了: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum エラー: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "エラー: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+-msgstr " 問題を回避するために --skip-broken を用いることができません"
++msgstr " 問題を回避するために --skip-broken を用いることができます。"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " これらを試行できます: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "不明なエラー: 終了コード: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1492,7 +1562,7 @@ msgstr ""
+ "\n"
+ "依存性を解決しました"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "完了しました!"
+ 
+@@ -1504,7 +1574,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "このコマンドを実行するには root である必要があります。"
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1521,53 +1591,53 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "問題のリポジトリー: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "エラー: パッケージの一覧を %s に渡す必要があります"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "エラー: 一致する項目が必要です"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "エラー: グループ化グループの一覧が必要です"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "エラー: clean は引数をひとつ要求します: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "エラー: 不正な clean の引数です: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "シェルへの引数がありません"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "シェルに渡すファイル名: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "シェルへの引数として渡したファイル %s は存在しません。"
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "エラー: シェルへの引数としてひとつ以上のファイルを渡しました。"
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1577,306 +1647,299 @@ msgstr ""
+ " 「yum repolist all」を実行し、所持するリポジトリーを参照してください。\n"
+ " 「yum-config-manager --enable <repo>」でリポジトリーを有効にできます。"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "パッケージ..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "システムにパッケージをインストールする"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "インストール処理の設定をしています"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[パッケージ...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "システムのパッケージを更新する"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "更新処理の設定をしています"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "最新の利用可能なバージョンへインストール済みパッケージを同期する"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "同期配信処理の準備をしています"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "パッケージもしくはパッケージのグループについての詳細を表示する"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "インストール済みパッケージ"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "利用可能なパッケージ"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "外部パッケージ"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "更新したパッケージ"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "パッケージを不要にしています"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "最近追加したパッケージ"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "表示するパッケージはありません"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "パッケージグループの一覧を表示する"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "システムから削除するパッケージ"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "削除処理の設定をしています"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "グループ処理の設定をしています"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "コマンドを実行するグループがありません"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "利用できるパッケージグループの一覧"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "システムのグループのパッケージをインストールする"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "システムからグループのパッケージを削除する"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "パッケージグループについての詳細を表示する"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "メタデータキャッシュを生成する"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "すべて飲めたデータファイルのキャッシュを作成します。"
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "これは、このコンピューターの速度に依存する時間をとるかもしれません"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "メタデータのキャッシュを作成しました"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "キャッシュデータを削除する"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "指定値を提供するパッケージを検索する"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "更新に利用できるパッケージを確認する"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "指定した文字列でパッケージの詳細を検索する"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "パッケージの検索中: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "不要になったパッケージを考慮しながらパッケージを更新する"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "更新処理の設定をしています"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "ローカル RPM のインストール"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "ローカルパッケージ処理の設定をしています"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "指定の依存性を提供するパッケージがどれか特定する"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "依存性のパッケージ検索:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "対話型の yum シェルを実行する"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Yum シェルの設定をしています"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "パッケージの依存性の一覧を表示する"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "依存性の検索中: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "ソフトウェアリポジトリーの構成を表示する"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "有効"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "無効"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "リポジトリー ID            : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "リポジトリーの名前         : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "リポジトリーの状態         : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "リポジトリーのリビジョン   : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "リポジトリーのタグ         : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "リポジトリー更新日         : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "リポジトリー内パッケージ数 : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "リポジトリー容量           : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "リポジトリー基準 URL       : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "リポジトリーメタリンク     : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  更新日                   : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "リポジトリーのミラー       : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "ずっと (最終: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "インスタント (最終: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s 秒 (最終: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "リポジトリーの期限         : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "リポジトリーの除外         : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "リポジトリーの内包         : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "リポジトリーの除外数       : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "リポジトリー ID"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "状態"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "リポジトリー名"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "役立つ使い方のメッセージを表示する"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "%s のヘルプは利用できません"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1886,7 +1949,7 @@ msgstr ""
+ "\n"
+ "別名: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1896,85 +1959,125 @@ msgstr ""
+ "\n"
+ "別名: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "再インストール処理の設定をしています"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "パッケージの再インストール"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "ダウングレード処理の設定をしています"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "パッケージのダウングレード"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "ホストの利用できるリポジトリーのバージョンを表示する"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum バージョン グループ"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " グループ                :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr "パッケージ               :"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "インストール済み         :"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "グループ インストール済み:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "利用可能                 :"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "利用可能なグループ       :"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "トランザクション履歴を表示、使用する"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "トランザクション:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "使用した history のサブコマンドが正しくありません: %s"
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "履歴 DB にアクセスできません。"
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "rpmdb の問題を確認する"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "filename から保存済みトランザクションを読み込む"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "指定したトランザクション ファイルに保存していません"
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "%s からトランザクションを読み込んでいます"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1983,28 +2086,34 @@ msgstr ""
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
++msgstr " Yum のチェックに失敗failed: %s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "ロック ファイルの作成に失敗しました。終了します"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr "別のアプリケーションが現在 yum のロックを持っています。終了するまで待っています..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "依存性の解決をしています"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2015,74 +2124,74 @@ msgstr ""
+ "\n"
+ "ユーザーによるキャンセルで終了しています。"
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "構成クラスが終わる前にトランザクションセットを設定しています"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "構成ファイルの tsflag が不正です: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "依存性の pkgSack を検索しています: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "メンバー: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s をインストールに変更しました"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "モード %s にパッケージ %s を追加しています"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "パッケージ %s の削除をしています"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s の要求: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s は %s を要求します"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "必要な要求は既に調べましたが不正をしています"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "必要な要求はパッケージ名ではありません。調べています: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+-msgstr ""
++msgstr "%s が提供するモードは %s です: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2090,277 +2199,277 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "依存解決のために %s の更新を試みます"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "依存する更新パスを見つけられません: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s を提供するパッケージはすでにインストールされています。削除しています。"
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s はすでに ts にあります。これを飛ばします"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: %s を更新として %s で設定しています"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: %s をインストールとして %s で設定しています"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "成功 - 空のトランザクション"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "ループを再開しています"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "依存性の処理を終了しています"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "成功 - 依存性を解決しました"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "%s の依存性を確認しています"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "%s の要求として %s を検索しています"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "%s の compare_providers() を実行しています"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s は %s で不要です"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "%s と %s の共通ソース RPM(SRPM)"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "ベースパッケージ %s は %s のためにインストールしています"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "%s から %s と %s の共通接頭辞"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "最低限の要求: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " 勝者: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " 敗者(%d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "最適の順序: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "リポジトリー %r: 設定の解析中にエラー: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "リポジトリー %r は構成中に名前がありませんので ID を使います"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "プラグインは既に初期化されています"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "dbRpmDBSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "ローカルの RPMDB を読み込んでいます"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "したがって、このリポジトリーはリセットできません。\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "オブジェクトの更新を構築しています"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() は Yum の将来のバージョンでなくなります。\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "グループメタデータを取得しています"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "リポジトリーからグループファイルを追加しています: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "リポジトリーのグループファイルに追加できませんでした: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "いずれかのリポジトリーに利用できるグループはありません"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "メタデータ pkgtags を取得しています"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "リポジトリーからタグを追加しています: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "リポジトリーからパッケージタグの追加に失敗しました: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "追加のファイル一覧情報にインポートしています"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "プログラム %s%s%s は yum-utils パッケージ内で見つかりました。"
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ "終了していない残作業があります。それらを終了するために、まず yum-complete-transaction の実行を検討すべきかもしれません。"
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2368,187 +2477,180 @@ msgstr ""
+ "\n"
+ "パッケージは依存関係に問題があるため、飛ばします:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "警告: RPMDB は yum 以外で変更されました。"
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "要求されたもの不足"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "インストール済みとの衝突"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr "警告: スクリプト、もしくはその他で処理の間に致命的ではないエラーが発生しました。"
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "トランザクションを解しできません:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "トランザクションを実行できません。"
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "トランザクションファイル %s の削除に失敗しました"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s のインストールを想定したがそうではなかった!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s の削除を想定したがそうではなかった!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "%s のロックを開けません: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "PID %s がアクティブかどうかの確認に失敗しました"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "ロックファイル %s が存在します: PID %s として別に実行されています。"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "%s でロックを作成できません: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr "パッケージは予定したダウンロードと一致しません。 提案: 「yum --enablerepo=%s clean metadata」の実行"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "チェックサムの実行ができません"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "パッケージのチェックサムが一致しません"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "%s のためにキャッシュを有効にしていますが、パッケージのチェックサム演算に失敗します。"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "%s のローカルコピーを使う"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"ダウンロードディレクトリー %s の空きが不十分です\n"
+-"    * 空き容量 %s\n"
+-"    * 必要容量 %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "ヘッダーが完了していません。"
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr "ヘッダーはキャッシュのみのモードが有効で、ローカルにありません。%s のダウンロードができません"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s の公開鍵がインストールされていません"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "パッケージ %s を開いている最中に問題です"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "%s の公開鍵が信頼されません"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "パッケージ %s は署名されていません"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "%s を削除できません"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s を削除しました"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "%s のファイル %s を削除できませんでした"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s のファイル %s を削除しました"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %sファイルを削除しました"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "更新から %s.%s %s:%s-%s に一致しません"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2556,316 +2658,328 @@ msgstr ""
+ "searchPackages() は Yum の将来のバージョンでなくなります。                      代わりに "
+ "searchGenerator() を使います。\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "%d 個のパッケージを検索しています"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "パッケージ %s を検索しています"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "ファイルのエントリーから検索しています"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "提供されたエントリーを検索しています"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "構成されたリポジトリーに利用できるグループはありません"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "グループ名 %s が存在しません"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "パッケージ%s はグループ %s で設定されていません"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "パッケージ %s をグループ %s から追加しています"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "インストールに利用できるパッケージ名 %s がありません"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "%s のパッケージが見つかりません"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "パッケージ オブジェクトはパッケージ オブジェクト インスタンスではありません"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "インストールへの指定がありません"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "%s の仮想提供かファイル提供を確認しています"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "引数に一致しません: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "パッケージ %s はインストール済みか利用できません"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "インストールに利用できるパッケージはありません"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "パッケージ: %s - すでにトランザクション設定をしています。"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "パッケージ %s は既にインストール済みの %s によって不要扱いになりました。"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr "パッケージ %s は %s によって不要になりました。しかし、不要のパッケージは要求を提供していません。"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "パッケージ %s は %s によって不要になりました。代わりに %s のインストールを試みています。"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "パッケージ %s はインストール済みか最新バージョンです"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "一致したパッケージ %s はすでにインストールされています。更新を確認しています。"
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "すべて更新しています"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "既に不要なパッケージの更新はありません: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "upgrade に一致するパッケージがありません: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "パッケージは既に不要です: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "既に不要なパッケージの更新はありません: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "既にアップデートされているのでパッケージをアップデートしません: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "削除に一致するパッケージはありません"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "remove に一致するパッケージがありません: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "実行中のカーネルを飛ばします: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "トランザクションの中から %s を削除しています。"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "ファイルが開けません:  %s を飛ばします。"
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "%s を調べています: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr "トランザクションにパッケージ %s を追加できません。アーキテクチャに互換性がありません: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "パッケージ %s をインストールできません。それはパッケージ %s により不要になっています。"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr "パッケージ %s はインストールされていないので更新できません。代わりに「yum install」を実行してインストールしてください。"
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "%s の除外中"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s をインストール済みとして設定しています"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "次のリポジトリーへの更新として %s を設定します: %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: インストールされたパッケージを更新しません。"
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "ファイル %s が開けません。飛ばします。"
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "再インストール中に問題: 削除するパッケージがありません"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "再インストールでの問題: インストールのための %s に一致するパッケーがありません"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "ダウングレードに利用できるパッケージはありません"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "パッケージ %s は複数インストールが許可されています。飛ばします"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "利用できるパッケージに一致しません: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "アップグレードにのみ利用できるパッケージ: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "ダウングレードに失敗: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "アップグレードに失敗: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "%s から鍵を取得中です。"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG 鍵の取得に失敗しました: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "キー %s のGPGキーの署名は、次のレポジトリーのCA鍵と一致していません。: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "%s からの GPG 鍵が正しくありません: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG 鍵の解析に失敗しました: 鍵は値 %s を持っていません"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2874,7 +2988,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2882,207 +2996,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG 鍵 %s (0x%s) はすでにインストールしています"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "鍵のインポートに失敗しました (コード: %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "鍵のインポートに成功しました"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "鍵のインポートを助けられません。鍵が壊れていませんか?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG 鍵 %s (0x%s) はすでにインポートしています"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "鍵のインポートに失敗しました"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "適当なミラーを見つけることができませんでした。"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "パッケージのダウンロード中にエラーに遭遇しました。"
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "%s にこのエラーを報告してください"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "テストトランザクションでエラー: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "cackedir が設定できません: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "トランザクションファイル %s が保存できません。: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "保存されているトランザクションファイル %s にアクセスできません。: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "保存されているトランザクションファイルの rpmdb のバージョンがマッチしていません。"
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "読み込んだプラグイン:"
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "プラグインが一致しません: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "無効になっているため、プラグイン「%s」は読み込みません"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "プラグイン「%s」はインポートできませんでした"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "プラグイン「%s」は要求された API バージョンを明記していません"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "プラグイン「%s」は API %s を要求しています。サポートした API は %s です。"
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "プラグイン「%s」を読み込んでいます"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "プラグイン検索パスの中に \"%s\" に該当する名前のプラグインが複数存在します。"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "構成ファイル %s が見つかりません"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "プラグイン %s の構成ファイルの検索に失敗しました"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "コマンドの登録をサポートしていません"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "は次の要求が不足ています: "
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "は次のインストール済みと衝突しています: "
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s は %s の複製です"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s は %s によって不要になりました。"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s は %s を提供していますが、見つかりません。"
+@@ -3091,6 +3229,17 @@ msgstr "%s は %s を提供していますが、見つかりません。"
+ msgid "Repackaging"
+ msgstr "再パッケージをしています"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"ダウンロードディレクトリー %s の空きが不十分です\n"
++"    * 空き容量 %s\n"
++"    * 必要容量 %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/lt_LT.po b/po/lt_LT.po
+index 4a1d933..3826bcf 100644
+--- a/po/lt_LT.po
++++ b/po/lt_LT.po
+@@ -2,13 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# aurisc4 <aurisc4 at gmail.com>, 2011
++# Translators:
++# aurisc4 <aurisc4 at gmail.com>, 2011.
++#   <aurisc4 at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/yum/team/lt_LT/)\n"
+ "MIME-Version: 1.0\n"
+@@ -17,122 +19,125 @@ msgstr ""
+ "Language: lt_LT\n"
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Atnaujinama"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Šalinama"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Diegiama"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Pažymėta pasenusiu"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Atnaujinta"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Pašalinta"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Įdiegta"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Nėra antraštės - keista?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Perpakuoti"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Klaida: neteisinga išvesties būsena: %s %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Pašalinta: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Šalinama"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Valymas"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Komanda „%s“ jau apibrėžta"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Nustatomos saugyklos"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Skaitoma saugyklų informacija iš vietinių failų"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Konfigūracijos klaida: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Parinkčių klaida: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Įdiegta: %s-%s %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Sukurta  : %s %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Pateikta : %s %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Reikia pateikti kokią nors komandą"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Nėra komandos: %s. Naudokite %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Disko reikalavimai:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Reikia bent %dMB daugiau vietos failų sistemoje %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Reikia bent %dMB daugiau vietos failų sistemoje %s.\n"
++msgstr[1] ""
++msgstr[2] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +145,60 @@ msgstr ""
+ "Klaidos santrauka\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Bandoma paleisti transakciją, bet nėra veiksmų. Išeinama."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Išeinama po naudotojo komandos"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Parsiunčiami paketai:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Klaida parsiunčiant paketus:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Vykdomas transakcijos tikrinimas"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "KLAIDA Reikia atnaujinti rpm norint apdoroti:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "KLAIDA su transakcijos ir priklausomybių tikrinimu:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM turi būti atnaujintas"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Praneškite apie šią klaidą adresu %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Vykdomas transakcijos tikrinimas"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Transakcijos tikrinimo klaida:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transakcijos tikrinimas sėkmingas"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Vykdoma transakcija"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,91 +206,116 @@ msgstr ""
+ "Atsisakoma automatiškai importuoti raktus, kai vykdoma neprižiūrint.\n"
+ "Naudokite „-y“ veiksenos pakeitimui."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Gal turėjote omenyje:"
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Paketas(-ai) %s%s%s prieinami, bet neįdiegti."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Nėra prieinamo paketo %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paketas(-ai) diegimui"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nėra ką atlikti"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paketas(-ai) pažymėti atnaujinimui"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Nėra paketų, pažymėtų atnaujinimui"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d paketas(-ai) pažymėtas(-i) distribucijos sinchronizavimui"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Nėra paketų, pažymėtų distribucijos sinchronizavimui"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paketas(-ai) pažymėtas(-i) pašalinimui"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Nėra paketų, pažymėtų pašalinimui"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paketas(-ai) grąžinimui"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (iš %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Įdiegtas paketas %s%s%s%s neprieinamas."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paketas(-ai) pakartotiniam diegimui"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nėra pateiktų paketų"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paketas(-ai) diegimui"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "Paieškos atitikmenu: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  %sTik%s pavadinimo ir santraukos atitikmenys, naudokite „search all“ "
+ "paieškai visur."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -293,147 +323,153 @@ msgstr ""
+ "  %sTik%s pilno pavadinimo ir santraukos atitikmenys, naudokite „search all“"
+ " paieškai visur."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Atitinka: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  %sDaugiausia%s pavadinimo ir santraukos atitikmenys, naudokite „search "
+ "all“ paieškai visur."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Įspėjimas: nerasta atitikmenų: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nerasta atitikmenų"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nerasta paketų užklausai %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Išvalomos saugyklos:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Išvaloma viskas"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Išvalomos antraštės"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Išvalomi paketai"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Išvalomi xml metaduomenys"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Išvalomas duomenų bazės podėlis"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Išvalomas pasenę podėlio metaduomenys"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Išvalomi podėlio rpmdb duomenys"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Išvalomi įskiepiai"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Įspėjimas: nėra grupių atitikmenų: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Įdiegto grupės:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Įdiegtos kalbų grupės:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Prieinamos grupės:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Prieinamos kalbų grupės:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Atlikta"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Įspėjimas: nėra grupės %s."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "Nėra paketų diegimui ar atnaujinimui jokioje pageidaujamoje grupėje"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d diegtinas(-i) paketai(-ai)"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Nėra grupės %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Nėra paketų pašalinimui iš grupių"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d paketas(-ai) pašalinimui"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paketas %s jau įdiegtas, praleidžiama"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Atmetami nepalyginami paketai %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "Nėra įdiegto kito %s, įtraukiama į sąrašą galimam diegimui"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Įskiepių parinktys"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Komandinės eilutės klaida: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -444,285 +480,289 @@ msgstr ""
+ "\n"
+ "%s: %s parinktis reikalauja argumento"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color gali būti: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot turi būti absoliutus kelias: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "rodyti šį pagalbos pranešimą ir išeiti"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "toleruoti klaidas"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "vykdyti tik iš sistemos podėlio jo neatnaujinant"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "konfigūracijos failo vieta"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "didžiausias komandos laukimo laikas"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "derinimo išvesties lygmuo"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "rodyti dublikatus saugyklose, sąrašo/paieškos komandose"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "klaidų išvesties lygmuo"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "derinimo išvesties lygmuo rpm komandai"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "tyli operacija"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "išsami operacija"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "atsakyti „taip“ į visus klausimus"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "rodyti Yum versiją ir išeiti"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "nustatyti diegimo šaknį"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "leisti vieną ar daugiau saugyklų (leidžiami pakaitos simboliai)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "drausti vieną ar daugiau saugyklų (leidžiami pakaitos simboliai)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "išskirti paketą(-us) pagal pavadinimą arba globalų vardą"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "drausti iškyrimą iš pagrindinio saugyklai arba viskam"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "leisti pasenusių apdorojimą atnaujinimo metu"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "drausti Yum įskiepius"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "drausti gpg parašo tikrinimą"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "drausti įskiepius pagal pavadinimą"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "leisti įskiepius pagal pavadinimą"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "praleisti paketus su priklausomybių tikrinimo problemomis"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "valdyti, ar naudojama spalva"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "nustatyti $releasever reikšmę yum konfigūracijoje ir saugyklų failuose"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "nustatyti savavališkas konfigūracijos ir saugyklų parinktis"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Sau"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Vas"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Kov"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Bal"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Ge"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Bir"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Lie"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Rug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Rgs"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Spa"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Lap"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Gr"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Bandoma kita dubliuojamoji tinklavietė"
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Pavadinimas : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Architektūra: %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epocha      : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versija     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Leidimas    : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Dydis       : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Saugykla    : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Iš saugyklos   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Pateikėjas  : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Pateikta    : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Sukūrimo laikas: %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Įdiegimo laikas: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Įdiegė      : %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Pakeitė     : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Santrauka   : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licencija   : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Aprašymas   : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "t"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "taip"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ne"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Ar tai tinka [t/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -731,154 +771,157 @@ msgstr ""
+ "\n"
+ "Grupė: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Grupės id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Aprašymas: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr "Kalba: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Privalomi paketai:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Numatytieji paketai:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Papildomi paketai:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Sąlyginiai paketai:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paketas: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Šis paketas neturi priklausomybių"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  priklausomybė: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Nepatenkinta priklausomybė"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Atitinka:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licencija   : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Failo pavadinimas: %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Kita        : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Įvyko klaida skaičiuojant visą parsiuntimo dydį"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Visas dydis: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Visas parsiuntimo dydis: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Įdiegimo dydis: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Įvyko klaida skaičiuojant įdiegimo dydį"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Perdiegiama"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Grąžinama"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Diegiamos priklausomybės"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Atnaujinama priklausomybėms"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Šalinama dėl priklausomybių"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Praleista (priklausomybių problemos)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Neįdiegtas"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Neprieinama"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paketas"
++msgid_plural "Packages"
++msgstr[0] "Paketas"
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Architektūra"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versija"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Saugykla"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Dydis"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "      pakeičiama  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -889,57 +932,52 @@ msgstr ""
+ "Transakcijos santrauka\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Įdiegti   %5.5s pektą(-us)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Įdiegti"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Atnaujinti %5.5s paketą(-us)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Pašalinti %5.5s paketą(-us)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Perdiegti %5.5s paketą„-u)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Perdiegti"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Grąžinti %5.5s paketą(-us)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Grąžinti"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Pašalinta"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Priklausomybė pašalinta"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Priklausomybė įdiegta"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Priklausomybė atnaujinta"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Pakeista"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Nepavyko"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "du"
+ 
+@@ -947,7 +985,7 @@ msgstr "du"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -958,365 +996,417 @@ msgstr ""
+ " Dabartinis parsiuntimas atšauktas, %snutraukite (ctrl-c) vėl%s per %s%s%s sekundes\n"
+ "išėjimui.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "naudotojo nutraukimas"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Iš viso"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<atstatyti>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistema"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Praleidžiama persidengianti transakcija %d, apjungta į %d"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Nėra transakcijų"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Pateikti blogi transakcijų ID arba paketai"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Komandų eilutė"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Prisijungęs naudotojas"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Data ir laikas"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Veiksmas(-ai)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Pakeista"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Nepateiktas transakcijos ID"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Pateiktas blogas transakcijos ID"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Nerastas pateiktas transakcijos ID"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Rastas daugiau nei vienas transakcijos ID!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Nepateiktas transakcijos ID arba paketas"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Grąžintas"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Senesnis"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Naujesnis"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transakcijos ID:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Pradžios laikas:"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Pradėti rpmdb  :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u sekundžių)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minučių)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u valandų)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u dienų)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Pabaigos laikas:"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Baigti rpmdb   :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Naudotojas     :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Grąžinimo kodas:"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Nutraukta"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Klaidos:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Klaida:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Sėkminga"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Komandų eilutė :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Išsaugota papildoma nenumatyta informacija: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transakcija atlikta su:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Pakeisti paketai:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Praleisti paketai:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb problemos:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scenarijaus išvestis:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Klaidos:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Įdiegti"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Įdiegti priklausomybes"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Pažymima pasenusiu"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Pašalinti"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Perdiegti"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Grąžinti"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Atnaujinti"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Laikas"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Vakar"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Praėjusią savaitę"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Praėjusias 2 savaites"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Praėjusius 3 mėnesius"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Praėjusius 6 mėnesius"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Praėjusiais metais"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Daugiau nei prieš metus"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Nerasta transakcija %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transakcijos ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Prieinama papildoma istorijos informacija:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: nerasta papildomų duomenų su šiuo pavadinimu"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "įdiegta"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "atnaujinimas"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "pašalinta"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "perdiegta"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "grąžinimas"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "žymima pasenusiu"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "atnaujinta"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "pažymėta pasenusiu"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Paketas %s.%s %s:%s-%s bus %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Vykdomas transakcijos tikrinimas"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ "--> Iš naujo paleidžiamas priklausomybių sprendimas su naujais pakeitimais"
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Baigtas priklausomybių sprendimas"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Apdorojama priklausomybė: %s paketui: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Paliekamas paketas: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Nerasta priklausomybė: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paketas: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1325,7 +1415,7 @@ msgstr ""
+ "\n"
+ "    Reikalauja: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1334,7 +1424,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1343,7 +1433,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1352,85 +1442,85 @@ msgstr ""
+ "        Nerasta"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Atnaujino"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Grąžino"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Pažymėjo pasenusiu"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Prieinamas"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Sprendžiamas konfliktas: %s konfliktuoja su %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Tęsiama transakcija su pasirinktais paketais. Palaukite."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Grąžinama %s antraštė įpakavimui į transakcijos aibę."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Vykdoma"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Miegama"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Nepertraukiama"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombis"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Sekamas/Sustabdytas"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Nežinomas"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Kita programa yra: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Kita programa yra: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "  Atmintis : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "   Paleista: %s - prieš %s"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Būsena : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1440,7 +1530,7 @@ msgstr ""
+ "\n"
+ "Išeinama naudotojui nutraukus"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1450,7 +1540,7 @@ msgstr ""
+ "\n"
+ "Išeinama dėl nutraukto konvejerio"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1461,7 +1551,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1469,35 +1559,35 @@ msgstr ""
+ "Kita programa šiuo metu turi yum užraktą; išeinama, kaip nustatyta parametru"
+ " exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit klaida: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum klaida: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Klaida: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Galite mėginti --skip-broken problemai apeiti"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Galite pamėginti paleisti: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Nežinoma(-os) klaida(-os): išėjimo kodas: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1505,7 +1595,7 @@ msgstr ""
+ "\n"
+ "Išspręstos priklausomybės"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Baigta!"
+ 
+@@ -1517,7 +1607,7 @@ msgstr " Mini naudojimas:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Jūs turite būti root šiai komandai atlikti."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1547,54 +1637,54 @@ msgstr ""
+ "\n"
+ "Daugiau informacijos gausite susisiekę su jūsų distribucijos ar paketo tiekėju.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problemų saugykla: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Klaida: %s reikia perduoti paketų sąrašą"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Klaida: reikia atitikimens"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Klaida: reikia grupės arba grupių sąrašo"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Klaida: clean reikalauja parinkties: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Klaida: netinkamas clean argumentas: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Nėra argumento apvalkalui"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Failo pavadinimas, perduotas apvalkalui: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Failas %s, perduotas kaip argumentas apvalkalui, neegzistuoja."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Klaida: daugiau nei vienas failas perduotas kaip argumentas apvalkalui."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1604,306 +1694,299 @@ msgstr ""
+ " Paleiskite „yum repolist all“ visam saugyklų sąrašui gauti.\n"
+ " Jūs galite įjungti saugyklas su yum-config-manager --enable <saugykla>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKETAS..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Įdiegti paketą arba paketus jūsų sistemoje"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Nustatomas diegimo procesas"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKETAS...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Atnaujinti paketą arba paketus jūsų sistemoje"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Nustatomas atnaujinimo procesas"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Sinchronizuoti įdiegtus paketus į naujausias prieinamas versijas"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Nustatomas distribucijos sinchronizacijos procesas"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Rodyti informaciją apie paketą arba paketų grupę"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Įdiegti paketai"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Prieinami paketai"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Papildomi paketai"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Atnaujinti paketai"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Paketai žymimi pasenusiais"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Neseniai pridėti paketai"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Nėra atitinkančių paketų išvardinimui"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Išvardinti paketus arba paketų grupes"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Pašalinti paketą arba paketus iš sistemos"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Nustatomas šalinimo procesas"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Nustatomas grupės procesas"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Nėra grupių, kurioms vykdyti komandą"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Išvardinti prieinamas paketų grupes"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Įdiegti grupės paketus jūsų sistemoje"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Pašalinti grupės paketus iš jūsų sistemos"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Parodyti informaciją apie paketų grupę"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Generuoti metaduomenų podėlį"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Kuriami podėlio failai visiems metaduomenų failams."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Tai gali užtrukti priklausomai nuo šio kompiuterio greičio"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metaduomenų podėlis sukurtas"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Pašalinti podėlio duomenis"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Rasti, kuris paketas teikia pateiktą reikšmę"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Tikrinti prieinamus paketų atnaujinimus"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Ieškoti paketų informacijos pateiktai eilutei"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Ieškoma paketų:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Atnaujinti paketus įvertinant pasenusius"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Nustatomas atnaujinimo procesas"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Įdiegti vietinį RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Nustatomas vietinio paketo procesas"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Nustatyti, kuris paketas teikia pateiktą priklausomybę"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Ieškoti paketų priklausomybei:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Paleisti interaktyvų yum apvalkalą"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Nustatomas Yum apvalkalas"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Išvardinti paketo priklausomybes"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Randamos priklausomybės:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Rodyti nustatytas programinės įrangos saugyklas"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "įjungta"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "išjungta"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Saugyklos id : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Saugyklos pavadinimas: "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Saugyklos būsena: "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Saugyklos poversijis: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Saugyklos žymos: "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Saugyklos distribucijos žymos: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Saugykla atnaujinta: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Saugyklos paketai: "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Saugyklos dydis: "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Saugyklos bazinis url: "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Saugyklos metasaitas: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Atnaujinta : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Saugyklos tinklavietės: "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Niekada (paskutinis: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Neatdėliotinas (paskutinis: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekundė(s) (paskutinis: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Saugykla pasensta: "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Saugykla išskiria: "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Saugykla įtraukia: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Saugykloje išskirta: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Saugyklos failas: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "Saugyklos id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "būsena"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "saugyklos pavadinimas"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Parodyti naudingą naudojimo pranešimą"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Nėra pagalbos veiksmui %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1913,7 +1996,7 @@ msgstr ""
+ "\n"
+ "alternatyvūs vardai: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1923,85 +2006,125 @@ msgstr ""
+ "\n"
+ "alternatyvus vardas: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Nustatomas perdiegimo procesas"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "perdiegti paketą"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Nustatomas grąžinimo procesas"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "grąžinti paketą"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Parodyti mašinos ir prieinamų saugyklų versiją."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr "Yum versijų grupės:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grupė   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr "  Paketai:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "  Įdiegti:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Įdiegti per grupes:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Prieinami:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Prieinami per grupes:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Parodyti arba naudoti transakcijų istoriją"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Netinkama istorijos po-komanda, naudokite: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Jūs neturite priėjimo prie istorijos DB."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Ieškoti problemų rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "įkelti išsaugotą transakciją iš failo"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Nenurodytas įšsaugotos transakcijos failas."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "įkeliama transakcija iš %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transakcija, įkelta iš %s su %s nariais"
+@@ -2012,28 +2135,32 @@ msgstr "Transakcija, įkelta iš %s su %s nariais"
+ msgid " Yum checks failed: %s"
+ msgstr " Yum ckeck nepavyko: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "Kita programa turi yum užraktą; laukiama jos pabaigos..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "Nepavyko sukurti užrakto failo; išeinama"
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr "Kita programa turi yum užraktą; laukiama jos pabaigos..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Spredžiamos priklausomybės"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Jūsų transakcija išsaugota, paleiskite ją su komanda: yum load-transaction "
+-"%s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2043,74 +2170,74 @@ msgstr ""
+ "\n"
+ "Išeinama po naudotojo atšaukimo."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Nustatoma TransactionSets prieš konfigūracijos klasės pakrovimą"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Netinkama tsflag konfigūracijos faile: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Ieškoma pkgSack priklausomybei: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Narys: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s pakeistas diegimui"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Pridedamas paketas %s veiksenoje %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Šalinamas paketas %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s reikalauja: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s reikalauja %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Reikalingo reikalavimo jau ieškota, apgaunama"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Reikalavimas nėra paketo pavadinimas. Ieškoma: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potencialus tiekėjas: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Veiksena %s %s tiekėjui : %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Veiksena paketui, teikiančiam %s: %s"
+@@ -2118,114 +2245,114 @@ msgstr "Veiksena paketui, teikiančiam %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Bandoma atnaujinti %s priklausomybių išsprendimui"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Nerasta %s atnaujinimo kelių. Klaida!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s paketas, reikalaujantis %s pažymėtas pašalinimui"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: %s žymimas pasenusiu su %s, siekiant išspręsti priklausomybę."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Atnaujinamas %s, siekiant išspręsti priklausomybę."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Nepavyko rasti priklausomybės atnaujinimo kelio: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Greitas atitikmuo %s %s reikalavimui"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s yra teikiančių paketų sąraše, bet jis jau įdiegtas, pašalinama."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Potencialiai sprendžiantis paketas %s ts turi naujesnį variantą."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Potencialiai sprendžiantis paketas %s turi įdiegtą naujesnį variantą."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s jau ts, praleidžiama"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: pažymima %s kaip %s atnaujinimą"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: pažymima %s kaip %s diegimą"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Sėkminga - tuščia transakcija"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Iš naujo paleidžiamas ciklas"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Užbaigiamas priklausomybių procesas"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Sėkminga - priklausomybės išspręstos"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Ieškoma %s priklausomybių"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "ieškoma %s kaip %s reikalavimo"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "%s vykdoma compare_providers()"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "po %s geresnė architektūra"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s žymi pasenusiu %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2234,142 +2361,142 @@ msgstr ""
+ "archdist palygino %s su %s vietoje %s\n"
+ "  Nugalėtojas: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "bendras išeities rpm %s ir %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "bazinis paketas %s įdiegtas paketui %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "bendras priešdėlis %s abiems %s ir %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "reikalauja mažiausiai: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Nugalėtojas: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Pralaimėtojas (su %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Geriausia tvarka: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Saugykla %r: klaida skaitant konfigūraciją: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Saugyklai %r trūksta pavadinimo konfigūracijoje, naudojamas id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "įskiepiai jau pakrauti"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Skaitoma vietinė RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Nustatomos paketų aibės"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "saugyklos objektui %s trūksta metodo _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "todėl ši saugykla negali būti išjungta.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Kuriami atnaujinimo objektai"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() bus pašalinta ateities Yum versijose.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Gaunami grupės metaduomenys"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Pridedamas grupės failas iš saugyklos: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Nepavyko pridėti grupių failo saugyklai: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Nėra prieinamų grupių jokioje saugykloje"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Gaunami pkgtags metaduomenys"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Pridedamos žymos iš saugyklos: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Nepavyko pridėti paketų žymų saugyklai: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importuojama papildoma failų sąrašų informacija"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Programa %s%s%s rasta yum-utils pakete."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2377,21 +2504,21 @@ msgstr ""
+ "Yra likusių nebaigtų transakcijų. Jūs turbūt norite paleisti yum-complete-"
+ "transaction joms užbaigti."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Randamos nereikalingos paliktos priklausomybės"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Apsaugotos daugiabibliokekės versijos: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Bandoma pašalinti „%s“, kuris yra apsaugotas"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2399,88 +2526,91 @@ msgstr ""
+ "\n"
+ "Paketai, praleisti dėl priklausomybių problemų:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s iš %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr "** Rasta %d esamų rpmdb problemų, „yum check“ išvestis:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Įspėjimas: RPMDB pakeista už yum ribų."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "trūksta reikalavimų"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "įdiegtas konfliktas"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Įspėjimas: scenarijaus arba kitos negalutinės klaidos įvyko transakcijos "
+ "metu."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transakcijos paleisti nepavyko:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Nepavyko paleisti transakcijos."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Nepavyko pašalinti transakcijos failo %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s turėjo būti įdiegtas, bet nebuvo!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s turėjo būti pašalintas, bet nebuvo!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Nepavyko atverti užrakto %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Nepavyksta patikrinti, ar PID %s yra aktyvus"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Esamas užraktas %s: kito kopija veikia kaip pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Nepavyko sukurti užrakto %s: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2489,40 +2619,29 @@ msgstr ""
+ "Paketai nesutampa su pageidautu parsiuntimu. Pasiūlymas: paleisti yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Nepavyko patikrinti kontrolinės sumos"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paketo kontrolinė suma nesutampa"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "paketo kontrolinė suma nesutampa, bet %s podėlis yra įjungtas"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "naudojama vietinė %s kopija"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Nepakanka vietos parsiuntimų kataloge %s\n"
+-"    * laisva %s\n"
+-"    * reikia %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Antraštė nepilna."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2530,62 +2649,65 @@ msgstr ""
+ "Antraštė ne vietiniame podėlyje, o tik podėlio veiksena yra įjungta. "
+ "Negalima parsiūsti %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s viešas raktas neįdiegtas"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problema atveriant paketą %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "%s viešasis raktas nepatikimas"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Paketas %s nepasirašytas"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Nepavyksta pašalinti %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s pašalintas"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Nepavyksta pašalinti %s failo %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s failas %s pašalintas"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s failai pašalinti"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Daugiau nei vienas identiškas atitikmuo ieškomam %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nėra %s.%s %s:%s-%s atitikmenų atnaujinime"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2593,121 +2715,124 @@ msgstr ""
+ "searchPackages() bus pašalinta ateities Yum versijose.                      "
+ "Naudokite searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Ieškoma %d paketų"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "ieškoma paketo %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "ieškoma failų įrašuose"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "ieškoma teikimo įrašuose"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Nėra prieinamų grupių duomenų nustatytose saugyklose"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Nėra grupės %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "paketas %s nebuvo pažymėtas grupėje %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Pridedamas paketas %s iš grupės %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Nėra paketo %s, prieinamo diegimui"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Įspėjimas: grupė %s neturi jokių paketų."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "Grupė %s turi %u sąlyginių paketų, kurie gali būti įdiegti."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Nepavyksta rasti paketų rinkinio %s krepšyje"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Nepavyksta rasti paketų rinkinio %s rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Netinkamas versijos požymis iš: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nerastas paketas %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Paketo objektas nebuvo paketo objekto egzempliorius"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nieko nenurodyta įdiegti"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Tikrinamas virtualus tiekimas arba failo tiekimas %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Nėra atitikmens argumentui: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Paketas %s įdiegtas ir neprieinamas"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Nėra paketo(-ų), prieinamo diegimui"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paketas: %s - jau transakcijos aibėje"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Paketas %s yra pažymėtas pasenusiu paketo %s, kuris jau įdiegtas"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2716,95 +2841,101 @@ msgstr ""
+ "Paketas %s pažymėtas pasenusiu paketo %s, bet žymėjimas pasenusiu neatitinka"
+ " reikalavimų"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Paketas %s pažymėtas pasenusiu paketo %s, todėl bandoma įdiegti %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Paketas %s jau įdiegtas ir paskutinės versijos"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Paketas, atitinkantis %s, jau įdiegtas. Tikrinamas atnaujinimas."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Atnaujinti viską"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Neatnaujinamas paketas, kuris jau yra pasenęs: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paketas jau yra pasenęs: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Neatnaujinamas paketas, kuris yra pasenęs: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Neatnaujinamas paketas, kuris jau yra atnaujintas: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nėra paketo atitikmens pašalinimui"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Praleidžiama ir vykdomas branduolys: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Pašalinamas %s iš transakcijos"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Nepavyksta atverti: %s. Praleidžiama."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Tikrinama %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Nepavyksta vietinis deltarpm diegimas: %s. Praleidžiama."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Nepavyksta pridėti paketo %s į transakciją. Nesuderinama architektūra: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Nepavyksta įdiegti paketo %s. Jis pažymėtas pasenusiu įdiegto paketo %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2813,7 +2944,7 @@ msgstr ""
+ "Paketas %s neįdiegtas, negalima jo atnaujinti. Paleiskite yum install jo "
+ "įdiegimui."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2822,95 +2953,100 @@ msgstr ""
+ "Paketas %s.%s neįdiegtas, negalima jo atnaujinti. Paleiskite yum install jam"
+ " įdiegti."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Išskiriamas %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Žymimas %s įdiegimui"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Žymimas %s kaip %s atnaujinimas"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: neatnaujina įdiegto paketo."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Nepavyksta atverti failo: %s. Praleidžiama."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Perdiegimo problema: nėra paketo atitikmens pašalinimui"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Perdiegimo problema: nėra paketo %s atitikmens diegimui"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Nėra paketo(-ų) grąžinimui"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Paketas %s leidžia daugkartinius diegimus, praleidžiama"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Nėra atitikmens prieinamam paketui: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Tik atnaujinimas yra prieinamas paketui: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Nepavyko grąžinti: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Gaunamas raktas iš %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG rakto gavimas nepavyko: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "GPG rakto parašas raktui %s neatitinka saugyklos CA rakto: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "GPG rakto parašas patikrinas su CA raktu(-ais)."
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Netinkamas GPG raktas iš %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG rakto skaitymas nepavyko: raktas neturi %s reikšmės"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2923,7 +3059,7 @@ msgstr ""
+ " Paketas     : %s (%s)\n"
+ " Iš          : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2934,25 +3070,25 @@ msgstr ""
+ " Naudotojo id: \"%s\"\n"
+ " Iš          : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG raktas iš %s (0x%s) jau įdiegtas"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Rakto importas neapvyko (kodas %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Raktas sėkmingai importuotas"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Neįdiegta jokių raktų"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2961,25 +3097,25 @@ msgstr ""
+ "GPG raktai, išvardinti „%s“ saugyklai, jau yra įdiegti, bet nėra teisingi šiam paketui.\n"
+ "Patikrinkite, ar teisingi URL yra nustatyti šiai saugyklai."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Rakto(-ų) importas nepadėjo, neteisingas(-i) raktas(-ai)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG raktas iš %s (0x%s) jau importuotas"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Rakto importas nepavyko"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Neįdiegta jokių raktų saugyklai %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2988,158 +3124,182 @@ msgstr ""
+ "GPG raktai, išvardinti „%s“ saugyklai, jau yra įdiegti, bet nėra teisingi.\n"
+ "Patikrinkite, ar teisingi URL yra nustatyti šiai saugyklai."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Nepavyksta rasti tinkamos dubliuojančios tinklavietės."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Kilo klaidų parsiunčiant paketus."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Praneškite apie šią klaidą adresu %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Transakcijos testavimo klaidos: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Nepavyko nustatyti podėlio katalogo: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr "Priklausomybės neįšspręsto. Neišsaugoma neišspręsta transakcija."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Nepavyko išsaugoti transakcijos į failą %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Nepavyko pasiekti/perskaityti išsaugotos transakcijos %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "rpmdb versija nesutampa su išsaugotos transakcijos versija, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " nepaisoma, kaip nurodyta."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " atšaukiama."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "nepavyksta rasti tsflags arba tai nėra sveikas skaičius."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Rastas txmbr nežinomoje būsenoje: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Nepavyksta rasti txmbr: %s būsenoje %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Nepavyksta rasti txmbr: %s iš šaltinio: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Trūksta transakcijos narių, ryšių arba transakcija buvo pakeista,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " nepaisoma, kaip nurodyta. Jūs turite išspręsti priklausomybes!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Įkelti įskiepiai: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Nėra įskiepio atitikmens : %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Neįkeliamas įskiepis „%s“, nes jis išjungtas"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Įskiepis „%s“ negali būti importuotas"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Įskiepis „%s“ nenurodo reikalingos API versijos"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Įskiepis „%s“ reikalauja API %s. Palaikoma API yra %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Įkeliamas įskiepis „%s“"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Vienas ar daugiau įskiepių pavadinimu „%s“ yra įskiepių ieškojimo kelyje"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigūracijos failas %s nerastas"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Nepavyksta rasti konfigūracijos failo įskiepiui %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "komandų registravimas nepalaikomas"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "turi trūkstamų reikalavimų"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "turi įdiegtų konfliktų"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s yra %s dublikatas"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s yra apžymėtas pasenusio paketo %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s teikia %s, bet nepavyksta jo rasti"
+@@ -3148,6 +3308,17 @@ msgstr "%s teikia %s, bet nepavyksta jo rasti"
+ msgid "Repackaging"
+ msgstr "Perpakuojama"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Nepakanka vietos parsiuntimų kataloge %s\n"
++"    * laisva %s\n"
++"    * reikia %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/mr.po b/po/mr.po
+index 5163eab..cb31b4a 100644
+--- a/po/mr.po
++++ b/po/mr.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Marathi (http://www.transifex.net/projects/p/yum/team/mr/)\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,438 @@ msgstr ""
+ "Language: mr\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +456,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +901,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +954,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +962,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1499,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1551,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1568,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2056,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2163,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2949,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2957,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3190,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/ms.po b/po/ms.po
+index 2b9119e..92cec5b 100644
+--- a/po/ms.po
++++ b/po/ms.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,429 @@ msgstr ""
+ "Language: ms\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Tiada pengepala - huh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +447,443 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ya"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "t"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "tidak"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Adakah ini ok [y/T]:"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versi"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Saiz"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +891,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +944,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +952,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1489,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1541,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1558,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr ""
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2046,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2153,782 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Tidak dapat melaksanakan checksum"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "menggunakan salinan tempatan bagi %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Pengepala tidak lengkap."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Masalah membuka pakej %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Pakej %s tidak ditandatangan"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Tidak dapat membuang %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Tidak dapat membuang %s fail %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s fail %s dibuang"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s fail dibuang"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Mencari %d pakej"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "mencari pakej %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Tiada Pakej dijumpai untuk %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Mengemaskini Semuanya"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Memeriksa %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Menanda %s untuk dipasang"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Tidak dapat membuka fail: %s. Melangkau."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2937,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2945,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Kekunci berjaya diimport"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Ralat Ujian Transaksi:"
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3178,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/nb.po b/po/nb.po
+index d2ee996..389dafb 100644
+--- a/po/nb.po
++++ b/po/nb.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -16,122 +17,124 @@ msgstr ""
+ "Language: nb\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Oppdaterer"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Fjerner"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installerer"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Utgått"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Oppdatert"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Fjernet"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installert"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Intet hode - merksnodig?!"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Pakk på nytt"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Feil: ugyldig tilstand ut: %s for %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Fjernet: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Fjerner"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Rydder opp"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Kommando «%s» er allerede definert"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Konfigurerer lagre"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Leser inn data om lager fra lokale filer"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Feil i konfigurasjon: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Feil i flagg: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "Installert: %s-%s til %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Bygd      : %s til %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "Sendt inn: %s til %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Du må oppgi en kommando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Krav til disk:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -139,60 +142,60 @@ msgstr ""
+ "Sammendrag for feil\n"
+ "---------------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Prøver å kjøre transaksjonen, men den er tom. Avslutter."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Avslutter på grunn av kommando fra bruker"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Laster ned pakker:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Kunne ikke laste ned pakkene:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Vennligst rapporter denne feilen i %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Kjører test på transaksjonen"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Feil ved test av transaksjonen:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Test av transaksjonen var vellykket"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Utfører transaksjonen"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -200,237 +203,260 @@ msgstr ""
+ "Nekter å importere nøkler automatisk ved kjøring uten oppsyn.\n"
+ "Bruk «-y» for å overstyre."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Du mente kanskje:"
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Pakken(e) %s%s%s er tilgjengelig, men ikke installert."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Pakke %s%s%s er ikke tilgjengelig."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Pakke(r) som skal installeres"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Ingenting å gjøre"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pakker merket for oppdatering"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Ingen pakker merket for oppdatering"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pakker merket for fjerning"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Ingen pakker merket for fjerning"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Pakke(r) som skal nedgraderes"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (fra %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Den installerte pakken %s%s%s%s er ikke tilgjengelig."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Pakke(r) som skal ominstalleres"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Ingen pakker ble tilbudt"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Pakke(r) som skal installeres"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Advarsel: Ingen treff funnet for: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Fant ingen treff"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Ingen pakke ble funnet for %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Rydder opp alt"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Rydder opp pakkehoder"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Rydder opp pakker"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Rydder opp i XML-metadata"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Rydder opp i mellomlager for database"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Rydder opp i metadata for expire-cache"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Rydder opp i programtillegg"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Installerte grupper:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Tilgjengelig grupper:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Ferdig"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Advarsel: Gruppe %s eksisterer ikke."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Ingen pakker tilgjengelig for installering eller oppdatering i aktuelle "
+ "grupper"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakke(r) vil bli installert"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Det finnes ingen gruppe med navn %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Ingen pakker å fjerne fra grupper"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pakker vil bli fjernet"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Pakke %s er allerede lagt inn, hopper over"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Vraker pakke som ikke kan sammenlignes %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Ingen annen %s er lagt inn, legger til pakke til liste over potensielle "
+ "pakker"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Programtilleggs valg"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Feil med kommandolinje: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -441,284 +467,288 @@ msgstr ""
+ "\n"
+ "%s: flagg %s krever et argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color tar et av: auto, alltid, aldri"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "vis denne hjelpteksten og avslutt"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "vær tolerant ved feil"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "plassering av konfigurasjonsfil"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maksimaltid for å vente på kommando"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nivå for tilbakemeldinger ved avlusing"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "vis duplikater i lager og i kommandoer for å liste/søke i pakker"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "mengde tilbakemelding ved feil"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "stille operasjon"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "vis ekstra informasjon"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "svar Ja til alle spørsmål"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "vis Yum-versjon og avslutt"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "sett rot for installasjonen"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "legger til et eller flere lager (jokertegn er tillatt)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "slå av et eller flere lager (jokertegn er tillatt)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "overse pakke(r) ved navn eller mønster"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "fjerner ekskludering av pakker, for et lager eller alle pakker"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "ta med foreldede pakker i beregningen ved oppdatering"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "ikke bruk programtilleggene til Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "ikke sjekk GPG-signaturer"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "slå av tillegg til yum etter navn"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "slå av programtillegg til yum etter navn"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "hopp over pakker som har problemer med avhengigheter"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontroller om farger er brukt"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "mai"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "aug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "des"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Prøver et annet speil."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Arkiv      : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "Nettadresse        : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Beskrivelse : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "j"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ja"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nei"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Er dette ok [j/N]:"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -727,154 +757,156 @@ msgstr ""
+ "\n"
+ "Gruppe:%s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr "GruppeId:%s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Beskrivelse: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr "Obligatoriske pakker:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr "Standard pakker:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr "Valgfrie pakker:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr "Betingede pakker:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "pakke: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr " Ingen avhengigheter for denne pakka"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr " avhengighet: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr " avhengighet som ikke kunne tilfredstilles"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Treff fra:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Lisens     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Filnavn     : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Andre ting       : %s"
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Kunne ikke finne ut størrelse på det som skal hentes ned"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Totale størrelse: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Totale størrelse på pakker som hentes: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Ominstallerer"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Nedgraderer"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Legges inn på grunn avhengigheter"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Oppdateres på grunn avhengigheter"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Fjernes på grunn avhengigheter"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Hoppet over (problemer med avhengigheter)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Pakke"
++msgid_plural "Packages"
++msgstr[0] "Pakke"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arkitektur"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versjon"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Pakkeoversikt"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Størrelse"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -885,57 +917,52 @@ msgstr ""
+ "Transaksjonsammendrag\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Fjernet"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Fjernet på grunn avhengighet"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Lagt inn på grunn av avhengighet"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Oppdatert på grunn avhengighet"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Erstattet"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Feilet"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "to"
+ 
+@@ -943,7 +970,7 @@ msgstr "to"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -954,470 +981,522 @@ msgstr ""
+ " Pågående nedlastning er avbrutt, %s avbryt (ved å trykke Ctrl-C) %s ganger til innen %s%s%s sekunder\n"
+ "for å avslutte.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "avbrutt av bruker"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Totalt"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installert"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "fjernet"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "oppdatert"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "foreldet"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Utfører sjekk av transaksjonen"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Starter løsing av avhengigheter på nytt med endringer"
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Alle avhengigheter er løst"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Beregner avhengighet: %s for pakke: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Avhengigheter som ikke kunne bli tilfredstilt: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Beregner konflikter: %s er i konflikt med %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Fyller transaksjonen med valgte pakker. Vennligst vent."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Henter ned filhode for pakke %s for å fylle transaksjonen."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Kjører"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Sover"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Sporet/Stoppet"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Ukjent"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Det andre programmet er: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Det andre programmet er: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Minne : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Startet for %s - %s siden"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Status  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1427,7 +1506,7 @@ msgstr ""
+ "\n"
+ "Avslutter etter ønske"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1437,7 +1516,7 @@ msgstr ""
+ "\n"
+ "Avslutter på grunn av brutt rør"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1445,41 +1524,41 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Feil: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr "Du kan prøve å bruke --skip-broken for å jobbe deg rundt problem"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Ukjent feil: feilkode: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1487,7 +1566,7 @@ msgstr ""
+ "\n"
+ "Alle avhengigheter er løst"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Ferdig!"
+ 
+@@ -1499,7 +1578,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Du må være rootbruker for å utføre denne kommandoen."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1527,360 +1606,353 @@ msgstr ""
+ "\n"
+ "Kontakt din distribusjon eller pakkeansvarlig for mer informasjon.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Feil: du må oppgi en liste med pakker som skal %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Feil: trenger noe å sammenligne med"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Feil: trenger en gruppe eller en liste med grupper"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Feil: clean trenger minst et argument: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Feil: ugyldig argument gitt til kommandoen clean: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Ingen argumenter ble gitt til kommandoen shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Følgende filnavn ble sendt til skallet: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ "Filen %s som ble gitt som argument til kommandoen shell eksisterer ikke."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Feil: mer enn en fil ble gitt som argument til kommandoen shell."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKKE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Legg inn en eller flere pakker på systemet"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Forberedelser for installasjon"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKKE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Oppdater en eller flere pakker på systemet"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Forberedelser for oppdatering"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Viser detaljer om en pakke eller en gruppe av grupper"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Pakker som er installert"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Tilgjengelige pakker"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Tilleggspakker"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Oppdaterte pakker"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Utdaterte pakker"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Pakker som nylig er lagt til"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Ingen passende pakker å liste opp"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Lag en liste med pakker eller grupper av pakker"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Fjern en eller flere pakker fra systemet"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Klargjør for fjerning av pakker"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Klargjør grupper med pakker"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Ingen gruppe er valgt for aktuell kommando"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Lag liste over tilgjengelige pakkegrupper"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Legger inn pakkene i en gruppe på systemet"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Fjern pakkene i en gruppe fra systemet"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Viser detaljer om en gruppe av pakker"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Lag mellomlager med metadata"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Lager mellomlager for samtlige filer med metadata."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Dette kan en stund avhengig av hvor rask datamaskinen er"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Mellomlager er ferdig lagd"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Fjern mellomlager med metadata"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Finn hvilken pakke som inneholder etterspurt verdi"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Se etter tilgjengelige pakkeoppdateringer"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Søker etter oppgitt streng i pakkedetaljene"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Søker i pakker: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Oppdater pakker og ta hensyn til pakker som blir utdatert"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Klargjør for oppdatering"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Legger inn en RPM fra filsystemet"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Klargjøring for pakker på lokalt filsystem"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Finner hvilken pakke som tilbyr den gitte avhengigheten"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Søker i pakker etter avhengighet:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Kjører det interaktive Yum-skallet"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Klargjør Yum-skallet"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Vis avhengigheter for en pakke"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Finner avhengigheter: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Viser de pakkeoversiktene som er satt opp"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "aktiv"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "inaktiv"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Arkivrevisjon: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Arkivdistribusjonsmerkelapper:"
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Arkivmetalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Oppdatert    : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "arkiv id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "arkiv navn"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Viser en hjelpetekst"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Ingen hjelp er tilgjengelig for %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1890,7 +1962,7 @@ msgstr ""
+ "\n"
+ "alias:"
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1900,85 +1972,125 @@ msgstr ""
+ "\n"
+ "alias:"
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Klargjør for å legge inn pakke(r) på nytt"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "ominstaller en pakke "
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Klargjør for oppdatering"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "nedgrader en pakke"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Vi sen versjon for maskinen og/eller tilgjengelige arkiver"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installert:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Tilgjengelig:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1989,27 +2101,33 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+-"Et annet program holder en fillås for Yum, venter til fillåsen frigjøres..."
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++"Et annet program holder en fillås for Yum, venter til fillåsen frigjøres..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Løser avhengigheter"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2019,74 +2137,74 @@ msgstr ""
+ "\n"
+ "Avslutter etter ønske"
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() vil forsvinne i en kommende utgave av Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Setter opp transaksjons-sett før config klassen er klar"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Ugyldig tsflag in konfigurasjonsfil: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Søker i pkgSack etter avhengighet: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Medlem: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s ble omdannet til installering"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Legger til pakke %s in modus %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Fjerner pakke %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s krever: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Nødvendig avhengighet har allerede blitt plukket opp, jukser"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Nødvendig avhengighet er ikke et navn på pakke. Ser etter: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potensiell tilbyder: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Modus er %s for tilbyder av %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Modus for pakke som tilbyr %s: %s"
+@@ -2094,115 +2212,115 @@ msgstr "Modus for pakke som tilbyr %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: pakke %s som er nødvendig for %s vil bli fjernet"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Bytter ut %s med %s for å løse opp i avhengighet."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Oppdaterer %s for å løse opp i avhengighet."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Kunne ikke finne måte å oppdatere sti for avhengighet: %s."
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Hurtigpasset %s for å tilfredstille %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s tilbyr pakker, men er allerede installert, fjerner denne."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "Pakke %s som potensielt løser opp avhengighet har nyere instans in ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Pakke %s som potensielt løser opp avhengighet er allerde installert."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s er allerde i ts, hopper over denne"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Setter opp %s som oppdatering av %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Setter opp %s som pakke for installering av %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Suksess - transaksjonen er tom"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Starter sløyfe på nytt"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Beregning av avhengighet avsluttes"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Suksess - alle avhengigheter er tilfredstilt"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Sjekker avhengigheter for %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "leter etter %s som kreves av %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Kjører compare_providers() for %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "bedre arch i po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s faser ut %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2211,142 +2329,142 @@ msgstr ""
+ "archdist sammenlignet %s med %s på %s\n"
+ " Vinner: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "felles kilderpm %s og %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "felles prefiks fra %s mellom %s og %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Beste rekkefølge: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() vil forsvinne i en kommende utgave av Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Pakkelager %r mangler navn i konfigurasjonsfilen(e), bruker id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "tillegg til yum er allerede initiert"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() vil forsvinne i en kommende utgave av Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Leser inn lokal RPM-database"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() vil forsvinne i en kommende utgave av Yum\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() vil forsvinne i en kommende utgave av Yum\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Lager sekker med pakker"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "objekt for pakkelager %s mangler metoden _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "derfor kan ikke denne pakkeoversikten nullstilles\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() vil forsvinne i en kommende utgave av Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Bygger opp oppdateringsobjekt"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() vil forsvinne i en kommende utgave av Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Henter metadata for grupper"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Legger til gruppefil fra pakkeoversikt: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Kunne ikke legge til gruppefil for pakkeoversikt: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Ingen grupper tilgjengelig fra noen lagre"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Henter mer informasjon om fil-lister"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Programmet %s%s%s er funnet i yum-utils pakken."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2354,21 +2472,21 @@ msgstr ""
+ "Det er uferdige transaksjoner igjen. Du vil kanskje vurdere å kjøre yum-"
+ "complete-transaction først for å gjøre dem ferdig."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2376,128 +2494,120 @@ msgstr ""
+ "\n"
+ "Pakker som ble oversett på grunn av problemer med avhengigheter:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s fra %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Advarsel: et scriptlet eller andre ikkekritiske feil oppstod under "
+ "transaksjonen."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Kunne ikke fjerne transaksjonsfil %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s var ment til å bli installert men er ikke!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s var ment til å bli fjernet men er ikke!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Kunne ikke sjekke om PID %s er aktiv"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Det fins allerede en låsfil %s: en annen Yum kjører med PID %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Kunne ikke beregne sjekksum"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Pakken har ikke korrekt sjekksum"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "sjekksummen til pakken er feil, men mellomlagring er satt på for %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "bruker lokal kopi av %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Det er ikke nok ledig plass i nedlastingskatalogen %s\n"
+-"    * ledig   %s \n"
+-"    * trenger %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Filhode er ikke fullstendig."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2505,62 +2615,64 @@ msgstr ""
+ "Filhode er ikke tilgjengelig lokalt og mellomlager-modus er aktivert Kan "
+ "ikke hente ned %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Offentlig nøkkel for %s er ikke lagt inn"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problem ved åpning av pakke %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Offentlig nøkkel %s er ikke til å stole på"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Pakken %s er ikke signert"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Kan ikke fjerne %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s fjernet"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Kan ikke fjerne %s fra fil %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s fil %s er fjernet"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s filer fjernet"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Mer enn ett identisk passende treff i sekken %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ingenting passer %s.%s %s:%s-%s fra oppdatering"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2568,203 +2680,211 @@ msgstr ""
+ "searchPackages() vil forsvinne i en kommende utgave av Yum.\n"
+ "Bruk heller searchGenerator()\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Søker etter %d pakker"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "søker etter pakke %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "søker i filoversikt"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "søker i oppføringer av tilbud"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Ingen gruppedata tilgjengelig for konfigurerte pakkelager"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Det eksisterer ingen gruppe med navn %s "
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "pakke %s var ikke med i gruppe %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Legger til pakke %s fra gruppe %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Ingen pakke med navn %s er tilgjendelig for installering"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Pakke tuppel %s ble ikke funnet i sekken med pakker"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Ingen pakke for %s er funnet"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Pakkeobjekt var ikke en pakkeobjektinstans"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Ingenting oppgitt for installasjon"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Sjekker for virtuelle tilbydere eller tilbydere av filer for %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Ingen treff for argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Pakke %s er installert og ikke tilgjengelig"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Ingen pakke(r) er tilgjengelig for installering"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Pakke: %s - allerede i transaksjonensettet"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Pakke %s er foreldet av %s som allerede er installert"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Pakke %s er foreldet av %s, prøver å installere %s isteden."
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Pakke %s er allerede installert i siste versjon"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Pakke med treff på %s er allerede lagt inn. Ser etter oppdatering"
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Oppdaterer alt"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Vil ikke oppdatere pakke som allerede er foreldet: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Pakka er allerede foreldet:  %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Oppdatere ikke pakken som allerede er oppdatert: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Kunne ikke finne noen passende pakke for fjerning"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Undersøker: %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2772,12 +2892,12 @@ msgstr ""
+ "Kan ikke legge til pakke %s til transaksjonen. Det er ikke en kompatibel "
+ "arkitektur: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2786,102 +2906,107 @@ msgstr ""
+ "Pakka %s er ikke installert, så den kan ikke oppdateres. Bruk kommandoen yum"
+ " install for å legge den inn."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Ekskluderer %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Setter av %s for kommende installering"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Setter av %s som en oppdatering av %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: vil ikke oppdatere installert pakke."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Kunne ikke åpne fil: %s. Hopper over."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problem ved reinstall: kunne ikke finne passende pakke og fjerne"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problem i ominstalleringen: ingen pakke %s funnet for installering."
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Ingen pakke(r) er tilgjengelig for nedgradering"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Pakke %s er tillatt flere installeringer, hopper over."
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ingen treff for tilgjengelig pakke: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Bare oppgraderinger tilgjengelig på pakke: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Henting av GPG-nøkkel feilet: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Analyse av GPG-nøkkel feilet: nøkkelen har ikke verdi %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2890,7 +3015,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2898,25 +3023,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG-nøkkel ved %s (0x%s) er allerede lagt inn"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Import av nøkkel feilet (kode %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Nøkler ble lagt inn med suksess"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2927,183 +3052,207 @@ msgstr ""
+ "Sjekk at korrekt URL (gpgkey opsjonen) er oppgitt for denne\n"
+ "pakkeoversikten."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Import av nøkler hjalp ikke, feil nøkler?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG-nøkkel ved %s (0x%s) er allerede importert"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Import av nøkkel feilet"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Kunne ikke finne passende filspeil"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Det oppstod feil ved nedlastning av pakker."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Vennligst send en feilrapport til %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Feil ved testtransaksjon: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Tillegg som er i bruk:"
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Intet programtilleggs treff for: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Laster ikke programtillegg \"%s\", siden den er deaktivert"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Programtillegg \"%s\" kan ikke bli importert"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Tillegg \"%s\" tilfredstiller ikke versjonskravene fra Yum."
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Tillegg \"%s\" krever API versjon: %s. Men støttet API versjon er %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Laster tillegg \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Det finnes to eller flere tillegg med navn «%s» i søkestien for tillegg"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigurasjonsfila %s ble ikke funnet"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Kunne ikke finne konfigurasjon for tillegg %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registering av kommandoer er ikke støttet"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3112,6 +3261,17 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr "Pakker på nytt"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Det er ikke nok ledig plass i nedlastingskatalogen %s\n"
++"    * ledig   %s \n"
++"    * trenger %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/pa.po b/po/pa.po
+index e714500..942ca68 100644
+--- a/po/pa.po
++++ b/po/pa.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# A S Alam <apreet.alam at gmail.com>, 2011
++# Translators:
++# A S Alam <apreet.alam at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-09-19 15:01+0000\n"
++"Last-Translator: aalam <apreet.alam at gmail.com>\n"
+ "Language-Team: Panjabi (Punjabi) <punjabi-users at lists.sf.net>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: pa\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "ਅੱਪਡੇਟ ਕੀਤੇ"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "ਸਾਫ਼ ਕੀਤਾ"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "ਇੰਸਟਾਲ ਕੀਤਾ"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "ਹੈੱਡਰ ਨਹੀਂ - ਓਹ?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "ਮੁੜ-ਪੈਕੇਜ"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "ਸਾਫ਼ ਕੀਤਾ: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "ਸਾਫ਼"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "ਕਮਾਂਡ \"%s\" ਪਹਿਲਾਂ ਦੀ ਦਿੱਤੀ ਹੈ"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ ਸੈਟਅੱਪ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "ਲੋਕਲ ਫਾਇਲਾਂ ਤੋਂ ਰਿਪੋਜ਼ਟਰੀ ਮੇਟਾਡਾਟਾ ਪੜ੍ਹਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "ਸੰਰਚਨਾ ਗਲਤੀ: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "ਚੋਣ ਗਲਤੀ: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "   ਇੰਸਟਾਲ ਕੀਤਾ:%s-%s %s ਉੱਤੇ "
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr " ਬਿਲਡ   : %s %s ਉੱਤੇ "
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  ਕਮਿਟ ਕੀਤਾ: %s %s ਉੱਤੇ"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "ਤੁਹਾਨੂੰ ਕੁਝ ਕਮਾਂਡ ਦੇਣ ਦੀ ਲੋੜ ਹੈ"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "ਇੰਝ ਦੀ ਕੋਈ ਕਮਾਂਡ ਨਹੀਂ ਹੈ: %s। %s --help ਵਰਤੋਂ ਜੀ"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "ਡਿਸਕ ਲੋੜਾਂ:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "   ਘੱਟੋ-ਘੱਟ %dMB ਹੋਰ ਖਾਲੀ ਥਾਂ %s ਫਾਇਲ ਸਿਸਟਮ ਉੱਤੇ ਚਾਹੀਦੀ ਹੈ।\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "   ਘੱਟੋ-ਘੱਟ %dMB ਹੋਰ ਖਾਲੀ ਥਾਂ %s ਫਾਇਲ ਸਿਸਟਮ ਉੱਤੇ ਚਾਹੀਦੀ ਹੈ।\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,294 +143,317 @@ msgstr ""
+ "ਗਲਤੀ ਸੰਖੇਪ\n"
+ "------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ, ਪਰ ਕੁਝ ਵੀ ਕਰਨ ਲਈ ਨਹੀਂ ਹੈ। ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ"
+ " ਹੈ।"
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "ਯੂਜ਼ਰ ਕਮਾਂਡ ਮੌਜੂਦ ਹੈ"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+-msgstr ""
++msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਚੱਲ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ਗਲਤੀ, ਤੁਹਾਨੂੰ ਹੈਂਡਲ ਕਰਨ ਲਈ rpm ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "%s ਵਿੱਚ ਇਹ ਗਲਤੀ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦਿਉ"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਟੈਸਟ ਚੱਲ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਗਲਤੀ:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਟੈਸਟ ਸਫ਼ਲ ਰਿਹਾ"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੱਲ ਰਹੀ ਹੈ"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * ਸ਼ਾਇਦ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "ਪੈਕੇਜ %s%s%s ਉਪਲੱਬਧ ਹਨ, ਪਰ ਇੰਸਟਾਲ ਨਹੀਂ।"
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "ਕੋਈ %s%s%s ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।"
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "ਕਰਨ ਲਈ ਕੁਝ ਨਹੀਂ"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "ਅੱਪਡੇਟ ਕਰਨ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਪਛਾਣਿਆ ਗਿਆ"
++msgstr[1] "%d ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਪਛਾਣੇ ਗਏ"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "ਅੱਪਡੇਟ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰਨ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਮਾਰਕ ਨਹੀਂ ਕੀਤਾ"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਪਛਾਣਿਆ ਗਿਆ"
++msgstr[1] "%d ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਪਛਾਣੇ ਗਏ"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਪੈਕੇਜ"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (%s ਵਲੋਂ)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ %s%s%s%s ਉਪਲੱਬਧ ਨਹੀਂ।"
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਦਿੰਦਾ"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "ਮਿਲਦੇ: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "ਚੇਤਾਵਨੀ: %s :ਲਈ ਕੋਈ ਮੇਲ ਨਹੀਂ ਲੱਭਿਆ"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "ਕੋਈ ਮਿਲਦਾ ਨਹੀਂ"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "%s ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "ਰੈਪੋ ਸਾਫ਼ ਕੀਤੀਆਂ ਜਾਂਦੀਆਂ ਹਨ: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "ਹਰ ਚੀਜ਼ ਸਾਫ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "ਹੈੱਡਰ ਸਾਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "ਪੈਕੇਜ ਸਾਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "xml  ਮੇਟਾਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "ਡਾਟਾਬੇਸ ਕੈਸ਼ ਸਾਫ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "ਐਕਸਪਾਇਰ-ਕੈਸ਼ ਮੇਟਾਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "ਕੈਸ਼ ਕੀਤਾ rpmdb ਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "ਪਲੱਗਇਨ ਸਾਫ਼ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "ਸਾਵਧਾਨ: ਕੋਈ ਮਿਲਦਾ ਗਰੁੱਪ ਨਹੀਂ: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "ਇੰਸਟਾਲ ਹੋਏ ਗਰੁੱਪ:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "ਇੰਸਟਾਲ ਹੋਏ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "ਉਪਲੱਬਧ ਗਰੁੱਪ:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "ਉਪਲੱਬਧ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "ਮੁਕੰਮਲ"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "ਚੇਤਾਵਨੀ: ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "ਮੰਗੇ ਗਏ ਗਰੁੱਪ ਵਿੱਚੋਂ ਕੋਈ ਵੀ ਪੈਕੇਜ ਇੰਸਟਾਲ ਜਾਂ ਅੱਪਡੇਟ ਲਈ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "%s ਨਾਂ ਦਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "ਗਰੁੱਪ ਵਿੱਚੋਂ ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ"
++msgstr[1] "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "%s ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ, ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "ਪਲੱਗਇਨ ਚੋਣਾਂ"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "ਕਮਾਂਡ ਲਾਈਨ ਗਲਤੀ: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -438,284 +464,288 @@ msgstr ""
+ "\n"
+ "%s:%s ਚੋਣ ਲਈ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ ਹੈ"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "ਇਹ ਮੱਦਦ ਸੁਨੇਹਾ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "ਪੂਰੀ ਤਰ੍ਹਾਂ ਸਿਸਟਮ ਕੈਸ਼ ਤੋਂ ਚਲਾਓ, ਕੈਸ਼ ਅੱਪਡੇਟ ਨਾ ਕਰੋ"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "ਸੰਰਚਨਾ ਫਾਇਲ ਟਿਕਾਣਾ"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "ਵੱਧੋ-ਵੱਧ ਕਮਾਂਡ ਉਡੀਕ ਸਮਾਂ"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "ਡੀਬੱਗ ਆਉਟਪੁੱਟ ਲੈਵਲ"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "ਡੁਪਲੀਕੇਟ ਵੇਖੋ, ਰਿਪੋ ਵਿੱਚ, ਲਿਸਟ/ਖੋਜ ਕਮਾਂਡ ਵਿੱਚ"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "ਗਲਤੀ ਆਉਟਪੁੱਟ ਲੈਵਲ"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm ਲਈ ਡੀਬੱਗ ਆਉਟਪੁੱਟ ਲੈਵਲ"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "ਚੁੱਪ-ਚਾਪ ਕਾਰਵਾਈ"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "ਜਾਣਕਾਰੀ ਸਮੇਤ ਕਾਰਵਾਈ"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "ਸਭ ਸਵਾਲਾਂ ਦੇ ਜਵਾਬ ਹਾਂ"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "ਸਭ ਸਵਾਲਾਂ ਲਈ ਜਵਾਬ ਨਹੀਂ"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "ਯੱਮ ਵਰਜਨ ਵੇਖਾਓ ਅਤੇ ਬੰਦ ਕਰੋ"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "install root ਸੈੱਟ ਕਰੋ"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "ਇੱਕ ਜਾਂ ਵੱਧ ਰਿਪੋਜ਼ਟਰੀਆਂ ਚਾਲੂ ਕਰੋ (ਵਾਈਲਡਕਾਰਡ ਮਨਜ਼ੂਰ ਹਨ)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "ਇੱਕ ਜਾਂ ਵੱਧ ਰਿਪੋਜ਼ਟਰੀਆਂ ਬੰਦ (ਵਾਇਲਡਕਾਰਡ ਮਨਜ਼ੂਰ)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "ਅੱਪਡੇਟ ਦੇ ਦੌਰਾਨ ਬਰਤਰਫ਼ ਕਾਰਵਾਈਆਂ ਚਾਲੂ"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "ਯੱਮ ਪਲੱਗਇਨ ਬੰਦ ਕਰੋ"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "gpg ਦਸਤਖਤ ਚੈੱਕ ਕਰਨਾ ਬੰਦ"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "ਨਾਂ ਨਾਲ ਪਲੱਗਇਨ ਬੰਦ ਕਰੋ"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "ਪਲੱਗਇਨ ਨਾਂ ਨਾਲ ਚਾਲੂ ਕਰੋ"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "ਨਿਰਭਰਤਾ ਸਮੱਸਿਆਵਾਂ ਵਾਲੇ ਪੈਕੇਜ ਛੱਡ ਦਿਉ"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "ਕੰਟਰੋਲ ਕਰੋ ਕਿ ਕੀ ਰੰਗ ਵਰਤਣੇ ਹਨ"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "ਯੱਮ ਸੰਰਚਨਾ ਤੇ ਰਿਪੋ ਫਾਇਲਾਂ 'ਚ $releasever ਦਾ ਮੁੱਲ ਸੈੱਟ ਕਰੋ"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "ਜਨ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "ਫਰ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "ਮਾਰ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "ਅਪ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "ਮਈ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "ਜੂਨ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "ਜੁਲਾ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "ਅਗ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "ਸਤੰ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "ਅਕ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "ਨਵੰ"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "ਦਸੰ"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "ਹੋਰ ਮਿੱਰਰ ਨਾਲ ਕੋਸ਼ਿਸ਼ ਜਾਰੀ"
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "ਨਾਂ        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "ਢਾਂਚਾ        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoch       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "ਵਰਜਨ     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "ਰੀਲਿਜ਼     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "ਸਾਈਜ਼       : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "ਰਿਪੋ        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "ਰਿਪੋ ਤੋਂ   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "ਕਮਿੱਟਰ   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "ਕਮਿਟ-ਸਮਾਂ  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "ਬਿਲਡ ਸਮਾਂ   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "ਇੰਸਟਾਲ ਸਮਾਂ: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "ਇੰਸਟਾਲ ਇਸ ਵਲੋਂ: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "ਇਸ ਵਲੋਂ ਬਦਲਿਆ  : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "ਸੰਖੇਪ   : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "ਲਾਈਸੈਂਸ    : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "ਵੇਰਵਾ: "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "yes"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "no"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "ਕੀ ਇਹ ਠੀਕ ਹੈ [y/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -724,154 +754,156 @@ msgstr ""
+ "\n"
+ "ਗਰੁੱਪ: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " ਗਰੁੱਪ-Id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " ਵੇਰਵਾ: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " ਭਾਸ਼ਾ: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " ਲਾਜ਼ਮੀ ਪੈਕੇਜ:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " ਡਿਫਾਲਟ ਪੈਕੇਜ:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " ਚੋਣਵੇਂ ਪੈਕੇਜ:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " ਸ਼ਰਤੀਆ ਪੈਕੇਜ:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "ਪੈਕੇਜ: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr " ਇਹ ਪੈਕੇਜ ਲਈ ਕੋਈ ਨਿਰਭਰਤਾ ਨਹੀਂ ਹੈ"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr " ਨਿਰਭਰਤਾ: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr " ਨਾ-ਹੱਲ ਹੋਈ ਨਿਰਭਰਤਾ"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "ਇਸ ਤੋਂ ਮੇਲ:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "ਲਾਈਸੈਂਸ     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "ਫਾਇਲ ਨਾਂ    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "ਹੋਰ       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "ਕੁੱਲ ਡਾਊਨਲੋਡ ਆਕਾਰ ਲੱਭਣ ਦੌਰਾਨ ਗਲਤੀ"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "ਕੁੱਲ ਸਾਈਜ਼: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "ਕੁੱਲ ਡਾਊਨਲੋਡ ਸਾਈਜ਼: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "ਇੰਸਟਾਲ ਦਾ ਸਾਈਜ਼: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "ਇੰਸਟਾਲ ਆਕਾਰ ਗਿਣਨ ਦੌਰਾਨ ਗਲਤੀ"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "ਨਿਰਭਰਤਾ ਲਈ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "ਨਿਰਭਰਤਾ ਲਈ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ (ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "ਇੰਸਟਾਲ ਨਹੀਂ"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "ਪੈਕੇਜ"
++msgid_plural "Packages"
++msgstr[0] "ਪੈਕੇਜ"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "ਢਾਂਚਾ"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "ਵਰਜਨ"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "ਸਾਈਜ਼"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     %s%s%s.%s %s  ਨੂੰ ਬਦਲਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -882,57 +914,52 @@ msgstr ""
+ "ਟਰਾਂਸੈਕਸ਼ਨ ਸੰਖੇਪ ਜਾਣਕਾਰੀ\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "ਇੰਸਟਾਲ %5.5s ਪੈਕੇਜ\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "ਇੰਸਟਾਲ"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "ਅੱਪਗਰੇਡ   %5.5s ਪੈਕੇਜ\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "ਅੱਪਗਰੇਡ"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "ਹਟਾਉਣੇ    %5.5s ਪੈਕੇਜ\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "ਹਟਾਓ"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "ਮੁੜ-ਇੰਸਟਾਲ %5.5s ਪੈਕੇਜ\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "ਮੁੜ-ਇੰਸਟਾਲ"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "ਡਾਊਨਗਰੇਡ %5.5s ਪੈਕੇਜ\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "ਡਾਊਨਗਰੇਡ"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "ਹਟਾਏ"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "ਨਿਰਭਰਤਾ ਹਟਾਈ"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "ਨਿਰਭਰਤਾ ਇੰਸਟਾਲ ਕੀਤੀ"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "ਨਿਰਭਰਤਾ ਅੱਪਡੇਟ ਕੀਤੀ"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "ਬਦਲੇ ਗਏ"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "ਫੇਲ੍ਹ ਹੋਏ"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "ਦੋ"
+ 
+@@ -940,7 +967,7 @@ msgstr "ਦੋ"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -951,364 +978,416 @@ msgstr ""
+ " ਮੌਜੂਦਾ ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ, ਬੰਦ ਕਰਨ ਲਈ %sinterrupt (ctrl-c) %s %s%s%s ਸਕਿੰਟ ਵਿੱਚ\n"
+ "ਦਬਾਉ\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "ਯੂਜ਼ਰ ਵਲੋਂ ਦਖ਼ਲ"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "ਕੁੱਲ"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<ਅਣ-ਸੈੱਟ>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "ਸਿਸਟਮ"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨਹੀਂ"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "ਖ਼ਰਾਬ ਟਰਾਂਸੈਕਸ਼ਨ ID, ਜਾਂ ਪੈਕੇਜ ਦਿੱਤਾ"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "ਕਮਾਂਡ ਲਾਈਨ"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "ਲਾਗਇਨ ਯੂਜ਼ਰ"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "ਮਿਤੀ ਅਤੇ ਸਮਾਂ"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "ਐਕਸ਼ਨ"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "ਬਦਲੇ"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ID ਦਿੱਤਾ"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "ਖ਼ਰਾਬ ਟਰਾਂਸੈਕਸ਼ਨ ID ਦਿੱਤਾ"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "ਦਿੱਤਾ ਟਰਾਂਸੈਕਸ਼ਨ ID ਨਹੀਂ ਲੱਭਿਆ"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "ਇੱਕ ਤੋਂ ਵੱਧ ਟਰਾਂਸੈਕਸ਼ਨ ID ਲੱਭਿਆ!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ID, ਜਾਂ ਪੈਕੇਜ ਨਹੀਂ ਦਿੱਤਾ"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤੇ"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "ਪੁਰਾਣੇ"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "ਨਵੇਂ"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ID:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "ਸ਼ੁਰੂ ਸਮਾਂ   :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "rpmdb ਸ਼ੁਰੂ    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u ਸਕਿੰਟ)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u ਮਿੰਟ)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u ਘੰਟੇ)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u ਦਿਨ)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "ਅੰਤ ਸਮਾਂ       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "rpmdb ਅੰਤ      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "ਯੂਜ਼ਰ           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "ਰੀਟਰਨ-ਕੋਡ  :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "ਅਧੂਰਾ ਛੱਡਿਆ"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "ਫੇਲ੍ਹ:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "ਫੇਲ੍ਹ:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "ਸਫ਼ਲ"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "ਕਮਾਂਡ ਲਾਈਨ  :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਕੀਤੀ ਗਈ ਇਸ ਨਾਲ:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "ਪੈਕੇਜ ਬਦਲੇ:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "ਪੈਕੇਜ ਛੱਡੇ ਗਏ:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb ਸਮੱਸਿਆਵਾਂ:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptlet ਆਉਟਪੁੱਟ:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "ਗਲਤੀਆਂ:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "ਇੰਸਟਾਲ"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "ਨਿਰਭ-ਇੰਸਟਾਲ"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "ਸਾਫ਼"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "ਮੁੜ-ਇੰਸਟਾਲ"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "ਡਾਊਨਗਰੇਡ"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "ਅੱਪਡੇਟ"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "ਸਮਾਂ"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "ਪਿਛਲੇ ਦਿਨ"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "ਪਿਛਲੇ ਹਫ਼ਤੇ"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "ਪਿਛਲੇ ੨ ਹਫ਼ਤੇ"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "ਪਿਛਲੇ ੩ ਮਹੀਨੇ"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "ਪਿਛਲੇ ੬ ਮਹੀਨੇ"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "ਪਿਛਲੇ ਸਾਲ"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "ਲਗਭਗ ਸਾਲ ਪਹਿਲਾਂ"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ %s ਨਹੀਂ ਲੱਭੀ"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "ਉਪਲੱਬਧ ਹੋਰ ਅਤੀਤ ਜਾਣਕਾਰੀ:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: ਇਸ ਨਾਂ ਨਾਲ ਕੋਈ ਹੋਰ ਵਾਧੂ ਡਾਟਾ ਨਹੀਂ ਲੱਭਿਆ"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "ਪੈਕੇਜ        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "ਹਾਲਤ          :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "ਆਕਾਰ           :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "ਬਿਲਡ ਹੋਸਟ     :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "ਪੈਕੇਜਰ       :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "ਵੇਂਡਰ         :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "ਲਾਈਸੈਂਸ       :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "ਸਰੋਤ RPM     :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "ਕਾਰਨ         :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "ਰਿਪੋ ਤੋਂ      :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "ਇੰ:ਟਾਲ ਕੀਤਾ ਗਿਆ   :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "ਬਦਲਿਆ ਗਿਆ    :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "ਇੰਸਟਾਲ ਕੀਤੇ"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+-msgstr ""
++msgstr "ਇੱਕ ਅੱਪਡੇਟ"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "ਸਾਫ਼ ਕੀਤੇ"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤੇ"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+-msgstr ""
++msgstr "ਡਾਊਨਗਰੇਡ"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+-msgstr ""
++msgstr "ਬਰਤਰਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "ਅੱਪਡੇਟ ਕੀਤੇ"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+-msgstr ""
++msgstr "---> ਪੈਕੇਜ %s.%s %s:%s-%s ਹੋਵੇਗਾ %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> ਨਵੇਂ ਬਦਲਾਅ ਨਾਲ ਨਿਰਭਰਤਾ ਹੱਲ਼ ਲਈ ਮੁੜ-ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> ਨਿਰਭਰਤਾ ਹੱਲ ਮੁਕੰਮਲ ਹੋਇਆ"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> ਨਿਰਭਰਤਾ ਲਈ ਕਾਰਵਾਈ ਜਾਰੀ: %s ਪੈਕੇਜ ਲਈ: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> ਪੈਕੇਜ ਰੱਖਿਆ ਜਾਂਦਾ ਹੈ: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "-->  ਨਾ-ਹੱਲ਼ ਹੋਈ ਨਿਰਭਰਤਾ: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "ਪੈਕੇਜ: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1317,7 +1396,7 @@ msgstr ""
+ "\n"
+ "    ਚਾਹੀਦਾ ਹੈ: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1326,7 +1405,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1335,7 +1414,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1344,87 +1423,87 @@ msgstr ""
+ "        ਨਹੀਂ ਲੱਭਾ"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "ਅੱਪਡੇਟ ਕੀਤਾ"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤਾ"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "ਬਰਤਰਫ਼ ਕੀਤਾ"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "ਉਪਲੱਬਧ"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> ਅਪਵਾਦ ਹੱਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s ਦਾ %s ਨਾਲ ਟਕਰਾ"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> ਚੁਣੇ ਪੈਕੇਜਾਂ ਲਈ ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ ਪਾਪੂਲੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ। ਉਡੀਕੋ ਜੀ।"
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ 'ਚ ਪੈਕ ਕਰਨ ਲਈ %s ਵਾਸਤੇ ਹੈੱਡਰ ਡਾਊਨਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "ਚੱਲ ਰਿਹਾ ਹੈ"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "ਸਲੀਪਿੰਗ"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "ਗ਼ੈਰ-ਰੁਕਾਵਟ-ਯੋਗ"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "ਜੋਮਬਿਈ"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "ਟਰੇਸ ਕੀਤਾ/ਰੋਕਿਆ"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "ਅਣਜਾਣ"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr " ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਹੈ: ਪੈਕੇਜਕਿੱਟ"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr " ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਹੈ: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    ਮੈਮੋਰੀ : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    ਸ਼ੁਰੂ ਹੋਇਆ: %s - %s ਪਹਿਲਾਂ"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    ਹਾਲਤ  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1434,7 +1513,7 @@ msgstr ""
+ "\n"
+ "ਯੂਜ਼ਰ ਰੱਦ ਕਰਨ ਉੱਤੇ ਮੌਜੂਦ"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1444,7 +1523,7 @@ msgstr ""
+ "\n"
+ "ਖਰਾਬ ਪਾਈਪ ਉੱਤੇ ਬੰਦ"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1455,7 +1534,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1463,35 +1542,35 @@ msgstr ""
+ "ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ;  exit_on_lock ਵਲੋਂ ਸੰਰਚਨਾ ਮੁਤਾਬਕ "
+ "ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "PluginExit ਗਲਤੀ: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "ਯੱਮ ਗਲਤੀ: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "ਗਲਤੀ: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " ਤੁਸੀਂ ਸਮੱਸਿਆ ਨਾਲ ਨਿਪਟ ਲਈ --skip-broken ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਕੰਮ ਚਲਾ ਸਕਦੇ ਹੋ"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " ਤੁਹਾਨੂੰ ਚਲਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਸਕਦੇ ਹੋ: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "ਅਣਜਾਣ ਗਲਤੀ: ਬੰਦ ਕਰੋ: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1499,19 +1578,19 @@ msgstr ""
+ "\n"
+ "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਹੋਈ"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "ਮੁਕੰਮਲ!"
+ 
+ #: ../yumcommands.py:42
+ msgid " Mini usage:\n"
+-msgstr ""
++msgstr " ਮਿੰਨੀ ਵਰਤੋਂ:\n"
+ 
+ #: ../yumcommands.py:52
+ msgid "You need to be root to perform this command."
+ msgstr "ਤੁਹਾਨੂੰ ਇਹ ਕਾਰਵਾਈ ਕਰਨ ਲਈ ਰੂਟ (root) ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।"
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1528,360 +1607,353 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸਮੱਸਿਆ: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "ਗਲਤੀ: ਮਿਲਦੀ ਆਈਟਮ ਦੀ ਲੋੜ ਹੈ"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "ਗਲਤੀ: ਗਰੁੱਪ ਜਾਂ ਗਰੁੱਪਾਂ ਦੀ ਲਿਸਟ ਦੀ ਲੋੜ ਹੈ"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "ਗਲਤੀ: ਸਾਫ਼ ਕਰਨ (clean) ਲਈ ਕੋਈ ਚੋਣ ਦਿੱਤੀ ਜਾਣੀ ਚਾਹੀਦੀ ਹੈ: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "ਗਲਤੀ: ਗਲਤ clean ਆਰਗੂਮੈਂਟ: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "ਸ਼ੈੱਲ ਲਈ ਕੋਈ ਆਰਗੂਮੈਂਟ ਨਹੀਂ"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "ਸ਼ੈੱਲ ਨੂੰ ਦੇਣ ਲਈ ਫਾਇਲ ਨਾਂ: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "ਪੈਕੇਜ..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰੋ"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "ਇੰਸਟਾਲ ਕਾਰਵਾਈ ਸੈੱਟ ਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[ਪੈਕੇਜ...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰੋ"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "ਅੱਪਡੇਟ ਕਾਰਵਾਈ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "ਸਭ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਨੂੰ ਸਭ ਤੋਂ ਨਵੇਂ ਉਪਲੱਬਧ ਵਰਜਨਾਂ ਨਾਲ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰੋ"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਾਰਵਾਈ ਸੈਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "ਪੈਕੇਜ ਜਾਂ ਪੈਕੇਜਾਂ ਦੇ ਗਰੁੱਪ ਬਾਰੇ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਵੇਖੋ"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "ਵਾਧੂ ਪੈਕੇਜ"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "ਅੱਪਡੇਟ ਕੀਤੇ ਪੈਕੇਜ"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਪੈਕੇਜ"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "ਤਾਜ਼ਾ ਸ਼ਾਮਲ ਕੀਤੇ ਪੈਕੇਜ"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "ਲਿਸਟ ਲਈ ਕੋਈ ਮਿਲਦਾ ਪੈਕੇਜ ਨਹੀਂ"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "ਪੈਕੇਜ ਜਾਂ ਪੈਕੇਜਾਂ ਦੇ ਗਰੁੱਪ ਦੀ ਲਿਸਟ"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "ਆਪਣੇ ਸਿਸਟਮ ਤੋਂ ਪੈਕੇਜ ਹਟਾਓ"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "ਹਟਾਉਣ ਕਾਰਵਾਈ ਲਈ ਸੈਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "ਗਰੁੱਪ ਜਾਣਕਾਰੀ ਵੇਖੋ ਜਾਂ ਵਰਤੋਂ"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "ਗਰੁੱਪ ਕਾਰਵਾਈ ਸੈਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "ਕੋਈ ਗਰੁੱਪ ਨਹੀਂ, ਜਿਸ ਉੱਤੇ ਕਮਾਂਡ ਚਲਾਈ ਜਾ ਸਕੇ"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਗਰੁੱਪਾਂ ਦੀ ਲਿਸਟ"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਗਰੁੱਪ ਵਿੱਚੋਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰੋ"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "ਆਪਣੇ ਸਿਸਟਮ ਤੋਂ ਗਰੁੱਪ ਵਿੱਚੋਂ ਪੈਕੇਜ ਹਟਾਓ"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਬਾਰੇ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਵੇਖੋ"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "ਮੇਟਾਡਾਟਾ ਕੈਸ਼ ਤਿਆਰ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "ਸਭ ਮੇਟਾਡਾਟਾ ਫਾਇਲਾਂ ਲਈ ਕੈਸ਼ ਫਾਇਲਾਂ ਬਣਾਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ।"
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "ਇਹ ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਦੀ ਸਪੀਡ ਦੇ ਮੁਤਾਬਕ ਕੁਝ ਸਮਾਂ ਲੈ ਸਕਦਾ ਹੈ।"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "ਮੇਟਾਡਾਟਾ ਕੈਸ਼ ਬਣਾਈ ਗਈ"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "ਕੈਸ਼ ਡਾਟਾ ਹਟਾਓ"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "ਲੱਭੋ ਕਿ ਕਿਹੜਾ ਪੈਕੇਜ ਦਿੱਤਾ ਮੁੱਲ ਦਿੰਦਾ ਹੈ"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਅੱਪਡੇਟ ਲਈ ਚੈੱਕ"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "ਦਿੱਤੀ ਲਾਈਨ ਲਈ ਪੈਕੇਜ ਵੇਰਵਾ ਲੱਭੋ"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "ਪੈਕੇਜਾਂ ਲਈ ਖੋਜ ਜਾਰੀ: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਬਰਤਰਫ਼ ਨੂੰ ਧਿਆਨ 'ਚ ਰੱਖਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "ਅੱਪਗਰੇਡ ਕਰਾਵਾਈ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "ਲੋਕਲ RPM ਇੰਸਟਾਲ ਕਰੋ"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "ਲੋਕਲ ਪੈਕੇਜ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "ਦੱਸੋ ਕਿ ਕਿਹੜਾ ਪੈਕੇਜ ਦਿੱਤੀ ਨਿਰਭਰਤਾ ਦਿੰਦਾ ਹੈ"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "ਨਿਰਭਰਤਾ ਲਈ ਪੈਕੇਜਾਂ ਦੀ ਖੋਜ ਜਾਰੀ:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "ਇੰਟਰ-ਐਕਟਿਵ ਯੱਮ ਸ਼ੈੱਲ ਚਲਾਓ"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "ਯੱਮ ਸ਼ੈੱਲ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "ਪੈਕੇਜਾਂ ਦੀ ਨਿਰਭਰਤਾ ਦੀ ਲਿਸਟ"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "ਨਿਰਭਰਤਾ ਲੱਭੀ ਜਾ ਰਹੀ ਹੈ: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "ਸੰਰਚਿਤ ਸਾਫਟਵੇਅਰ ਰਿਪੋਜ਼ਟਰੀਆਂ ਵੇਖੋ"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "ਚਾਲੂ"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "ਬੰਦ"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "ਰਿਪੋ-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "ਰਿਪੋ-ਨਾਂ    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "ਰਿਪੋ-ਹਾਲਤ : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "ਰਿਪੋ-ਰੀਵਿਜ਼ਨ: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "ਰਿਪੋ-ਟੈਗ    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "ਰਿਪੋ-ਅੱਪਡੇਟ : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "ਰਿਪੋ-ਪੈਕੇਜ    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "ਰਿਪੋ-ਸਾਈਜ਼     : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "ਰਿਪੋ-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "ਰਿਪੋ-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  ਅੱਪਡੇਟ   : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "ਰਿਪੋ-mirrors : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "ਕਦੇ ਨਹੀਂ (ਆਖਰੀ: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+-msgstr ""
++msgstr "ਮੌਕਾ (ਪਿਛਲਾ: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s ਸਕਿੰਟ (ਆਖਰੀ: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "ਰਿਪੋ-expire  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-ਨਾ-ਸ਼ਾਮਲ : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-ਸ਼ਾਮਲ : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+-msgstr ""
++msgstr "ਵੱਖ ਰੱਖੀ ਗਈ ਰਿਪੋ: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "ਰਿਪੋ-ਫਾਇਲਨਾਂ:"
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "repo id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "ਹਾਲਤ"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "ਰਿਪੋ ਨਾਂ"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "%s ਲਈ ਕੋਈ ਮੱਦਦ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1891,7 +1963,7 @@ msgstr ""
+ "\n"
+ "ਏਲੀਆਸ: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1901,85 +1973,125 @@ msgstr ""
+ "\n"
+ "ਏਲੀਆਸ: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "ਪੈਕੇਜ ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "ਪੈਕੇਜ ਡਾਊਨਗਰੇਡ ਕਰੋ"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "ਮਸ਼ੀਨ ਤੇ / ਜਾਂ ਉਪਲੱਬਧ ਰਿਪੋ ਲਈ ਵਰਜਨ ਵੇਖੋ।"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " ਯੱਮ ਵਰਜਨ ਗਰੁੱਪ:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " ਗਰੁੱਪ   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " ਪੈਕੇਜ:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "ਇੰਸਟਾਲ ਹੋਏ:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "ਗਰੁੱਪ-ਇੰਸਟਾਲ ਹੋਏ:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "ਉਪਲੱਬਧ:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "ਉਪਲੱਬਧ-ਗਰੁੱਪ:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਅਤੀਤ ਵੇਖੋ ਜਾਂ ਵਰਤੋਂ"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "ਟਰਾਂਸੈਕਸ਼ਨ:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "ਸ਼ੁਰੂ ਸਮਾਂ   :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  ਕਦੇ ਨਹੀਂ   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "rpmdb ਵਿੱਚ ਸਮੱਸਿਆ ਲਈ ਚੈੱਕ ਕਰੋ"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "ਸੰਭਾਲੀ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨੂੰ ਲੋਡ ਕਰੋ ਫਾਇਲ-ਨਾਂ ਵਿੱਚੋਂ"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "ਕੋਈ ਸੰਭਾਲੀ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ ਨਹੀਂ ਦਿੱਤੀ ਗਈ।"
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "%s ਤੋਂ ਟਰਾਂਸੈਕਸ਼ਨ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1988,29 +2100,37 @@ msgstr ""
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
++msgstr "ਯਮ ਚੈੱਕ ਫੇਲ੍ਹ ਹੋਇਆ: %s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "ਲਾਕ ਫਾਇਲ ਨਹੀਂ ਬਣਾਈ ਜਾ ਸਕੀ; ਮੌਜੂਦ ਹੈ"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਣ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ; ਉਸ ਨੂੰ ਬੰਦ ਹੋਣ ਤੱਕ ਉਡੀਕ ਜਾਰੀ..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
++"ਤੁਹਾਡੀ ਟਰਾਂਸੈਕਸ਼ਨ ਸੰਭਾਲੀ ਗਈ ਹੈ, ਇਸ ਨੂੰ ਇੰਝ ਮੁੜ ਕੇ ਚਲਾਉ:⏎\n"
++"yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2020,74 +2140,74 @@ msgstr ""
+ "\n"
+ "ਯੂਜ਼ਰ ਵੱਲੋਂ ਬੰਦ ਕਰਨ ਉੱਤੇ ਬੰਦ।"
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+-msgstr ""
++msgstr "%s: ਨਿਰਭਰਤਾ ਲਈ pkgSack ਦੀ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "ਮੈਂਬਰ: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਬਦਲਿਆ"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "ਪੈਕੇਜ %s ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s ਚਾਹੀਦਾ ਹੈ: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s ਨੂੰ ਚਾਹੀਦਾ ਹੈ %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "ਸੰਭਾਵਿਤ ਦੇਣ ਵਾਲਾ: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2095,256 +2215,258 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕਰਨ ਲਈ %s ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+-msgstr ""
++msgstr "%s ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ। ਫੇਲ੍ਹ!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+-msgstr ""
++msgstr "%s: ਲਈ ਨਿਰਭਰਤਾ ਵਾਸਤੇ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ ਜਾ ਸਕਦਾ"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
++"%s ਉਪਲੱਬਧ ਕਰਵਾਉਣ ਵਾਲਿਆ ਪੈਕੇਜਾਂ ਵਿੱਚ ਹੈ, ਪਰ ਇਹ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ, ਹਟਾਇਆ ਜਾ "
++"ਰਿਹਾ ਹੈ।"
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "ਸਫ਼ਲ - ਖਾਲੀ ਟਰਾਂਸੈਕਸ਼ਨ"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "ਚੱਕਰ ਮੁੜ-ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "ਨਿਰਭਰਤਾ ਕਾਰਵਾਈ ਖਤਮ ਹੋ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "ਸਫ਼ਲ - ਨਿਰਭਰਤਾ ਹੱਲ਼ ਹੋਈ"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "%s ਲਈ ਨਿਰਭਰਤਾ ਚੈੱਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s ਨੇ %s ਬਰਤਰਫ਼ ਕੀਤਾ"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "ਆਮ sourcerpm %s ਅਤੇ %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "ਬੇਸ ਪੈਕੇਜ %s %s ਲਈ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾਂਦਾ ਹੈ"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "ਘੱਟੋ-ਘੱਟ ਲੋੜ ਹੈ: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " ਜੇਤੂ: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " ਹਾਰਿਆ(%d ਨਾਲ): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "ਵਧੀਆ ਕ੍ਰਮ: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+-msgstr ""
++msgstr "ਰਿਪੋਜ਼ਟਰੀ %r ਦਾ ਸੰਰਚਨਾ ਵਿੱਚ ਨਾਂ ਮੌਜੂਦ ਨਹੀਂ ਹੈ, id ਵਰਤੋਂ ਨਾਲ"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "ਪਲੱਗਇਨ ਪਹਿਲਾਂ ਹੀ ਚਾਲੂ ਹੈ"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "ਲੋਕਲ RPMDB ਪੜ੍ਹਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "ਇਸਕਰਕੇ ਇਹ ਰਿਪੋ ਮੁੜ-ਸੈੱਟ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ।\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "ਅੱਪਡੇਟ ਆਬਜੈਕਟ ਬਣਾਏ ਜਾ ਰਹੇ ਹਨ"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "ਗਰੁੱਪ ਮੇਟਾਡਾਟਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "%s: ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਗਰੁੱਪ ਫਾਇਲ ਸ਼ਾਮਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "%s - %s: ਰਿਪੋਜ਼ਟਰੀ ਲਈ ਗਰੁੱਪ ਫਾਇਲ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "ਕਿਸੇ ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਕੋਈ ਗਰੁੱਪ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "ਪੈਕੇਜਟੈਗ ਮੇਟਾਡਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਟੈਗ ਸ਼ਾਮਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+-msgstr ""
++msgstr "ਰਿਪੋਜ਼ਟਰੀ ਲਈ Pkg ਟੈਗ ਜੋੜਨ ਲਈ ਫੇਲ੍ਹ: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "ਵਾਧੂ ਫਾਇਲ-ਲਿਸਟ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "ਪਰੋਗਰਾਮ %s%s%s ਨੂੰ yum-utils ਪੈਕੇਜ 'ਚ ਲੱਭਿਆ ਜਾ ਸਕਦਾ ਹੈ।"
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2352,21 +2474,21 @@ msgstr ""
+ "ਅਧੂਰੀਆਂ ਟਰਾਂਸੈਕਸ਼ਨ ਬਾਕੀ ਹਨ। ਤੁਹਾਨੂੰ ਉਹਨਾਂ ਨੂੰ ਪੂਰਾ ਕਰਨ ਵਾਸਤੇ yum-complete-"
+ "transaction ਚਲਾਉ ਬਾਰੇ ਸੋਚਣਾ ਚਾਹੀਦਾ ਹੈ।"
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "\"%s\" ਹਟਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼, ਜੋ ਕਿ ਸੁਰੱਖਿਅਤ ਹੈ"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2374,405 +2496,407 @@ msgstr ""
+ "\n"
+ "ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ ਕਰਕੇ ਛੱਡੇ ਗਏ:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "   %s %s ਤੋਂ"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** %d ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ rpmdb ਸਮੱਸਿਆਵਾਂ ਲੱਭੀਆਂ, 'yum check' ਆਉਟਪੁੱਟ ਅੱਗੇ "
+ "ਦਿੱਤੀ ਹੈ:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "ਚੇਤਾਵਨੀ: RPMDB ਨੂੰ ਯੱਮ ਤੋਂ ਬਿਨਾਂ ਬਦਲਿਆ ਗਿਆ।"
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "ਲੋੜੀਦੇ ਮੌਜੂਦ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "ਇੰਸਟਾਲ ਨਾਲ ਟਕਰਾ"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਈ ਨਹੀਂ ਜਾ ਸਕੀ।"
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ %s ਹਟਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s ਇੰਸਟਾਲ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ, ਪਰ ਇਹ ਨਹੀਂ ਹੈ!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s ਹਟਾਇਆ ਗਿਆ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ, ਪਰ ਨਹੀਂ ਗਿਆ!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "%s ਲਾਕ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s "
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+-msgstr ""
++msgstr "ਚੈੱਕ ਕਰਨ ਲਈ ਅਸਮਰੱਥ ਕਿਕੀ PID %s ਐਕਟਿਵ ਹੈ"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "ਮੌਜੂਦਾ ਲਾਕ %s: pid %s ਵਜੋਂ ਹੋਰ ਕਾਪੀ ਚੱਲ ਰਹੀ ਹੈ।"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "%s ਲਈ ਲਾਕ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "checksum ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "ਪੈਕੇਜ ਚੈਕਸਮ ਰਲਦਾ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "%s ਦੀ ਲੋਕਲ ਕਾਪੀ ਦੀ ਵਰਤੋਂ"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"ਡਾਊਨਲੋਡ ਡਾਇਰੈਕਟਰੀ %s ਵਿੱਚ ਨਾ-ਲੋੜੀਦੀ ਖਾਲੀ ਥਾਂ\n"
+-"    * ਖਾਲੀ   %s\n"
+-"    * ਚਾਹੀਦੀ  %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "ਹੈੱਡਰ ਪੂਰਾ ਨਹੀਂ ਹੈ।"
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s ਲਈ ਪਬਲਿਕ ਕੁੰਜੀ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "ਪੈਕੇਜ %s ਖੋਲ੍ਹਣ ਦੌਰਾਨ ਸਮੱਸਿਆ"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "%s ਲਈ ਪਬਲਿਕ ਕੁੰਜੀ ਭਰੋਸੇਯੋਗ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "ਪੈਕੇਜ %s  ਸਾਈਨ ਨਹੀਂ ਕੀਤਾ"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "%s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s ਹਟਾਇਆ"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "%s ਫਾਇਲ %s ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s ਫਾਇਲ %s ਹਟਾਈ"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s ਫਾਇਲਾਂ ਹਟਾਈਆਂ ਗਈਆਂ"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s ਫਾਇਲ ਹਟਾਈ ਗਈ"
++msgstr[1] "%d %s ਫਾਇਲਾਂ ਹਟਾਈਆਂ ਗਈਆਂ"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "%d ਪੈਕੇਜਾਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "%d ਪੈਕੇਜ ਖੋਜਿਆ ਜਾ ਰਿਹਾ ਹੈ"
++msgstr[1] "%d ਪੈਕੇਜ ਖੋਜੇ ਜਾ ਰਹੇ ਹਨ"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "ਪੈਕੇਜ %s ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "ਫਾਇਲ ਐਂਟਰੀਆਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "ਪਰੋਵਾਇਡਰ ਐਂਟਰੀਆਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "ਸੰਰਚਿਤ ਰਿਪੋਜ਼ਟਰੀਆਂ ਵਿੱਚ ਕੋਈ ਗਰੁੱਪ ਡਾਟਾ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "%s ਨਾਂ ਦਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "ਪੈਕੇਜ %s ਗਰੁੱਪ %s ਵਿੱਚ ਨਿਸ਼ਾਨਬੱਧ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "ਪੈਕੇਜ %s ਗਰੁੱਪ %s ਵਿੱਚੋਂ ਸ਼ਾਮਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਨਾਂ ਦਾ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "ਸਾਵਧਾਨ: %s ਗਰੁੱਪ ਵਿੱਚ ਕੋਈ ਵੀ ਪੈਕੇਜ ਨਹੀਂ ਹੈ।"
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+-msgstr ""
++msgstr "ਗਰੁੱਪ %s ਵਿੱਚ %u ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹਨ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ।"
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "%s ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਕੁਝ ਨਹੀਂ ਦਿੱਤਾ"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+-msgstr ""
++msgstr "%s :ਨਾਲ ਮਿਲਦਾ ਕੋਈ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੈ ਤੇ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "ਪੈਕੇਜ: %s  - ਪਹਿਲਾਂ ਹੀ ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ 'ਚ ਹੈ"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "ਪੈਕੇਜ %s ਨੂੰ %s ਵਲੋਂ ਬਰਤਰਫ਼ ਕੀਤਾ ਗਿਆ ਹੈ, ਜੋ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr "%s ਪੈਕੇਜ %s ਨਾਲ ਬਦਲ ਦਿੱਤਾ ਗਿਆ, ਪਰ ਬਦਲਿਆ ਗਿਆ ਪੈਕੇਜ ਲੋੜ ਪੂਰੀ ਨਹੀਂ ਕਰਦਾ"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "%s ਪੈਕੇਜ %s ਨਾਲ ਬਰਤਰਫ਼ ਕੀਤਾ ਗਿਆ, %s ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "%s ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ ਅਤੇ ਨਵਾਂ ਵਰਜਨ ਹੈ"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "%s ਨਾਲ ਮਿਲਦਾ ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ। ਅੱਪਡੇਟ ਲਈ ਚੈਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "ਹਰ ਚੀਜ਼ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "ਕੋਈ ਪੈਕੇਜ ਅੱਪਗਰੇਡ ਲਈ ਨਹੀਂ ਮਿਲਿਆ: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਬਰਤਰਫ਼ ਕੀਤਾ: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਰਿਹਾ, ਜੋ ਬਰਤਰਫ਼ ਹੈ: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ "ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ, ਇਹ ਪਹਿਲਾਂ ਹੀ ਅੱਪਡੇਟ ਹੈ: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਿਆ: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "ਚੱਲਦਾ ਕਰਨਲ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਤੋਂ %s ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s। ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹ।"
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "%s ਪੜਤਾਲ ਜਾਰੀ: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "deltarpm localinstall ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ: %s। ਛੱਡਿਆ ਜਾਂਦਾ ਹੈ।"
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "ਟਰਾਂਸੈਕਸ਼ਨ ਲਈ %s ਪੈਕੇਜ ਜੋੜਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ। %s: ਢਾਂਚੇ ਨਾਲ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2781,102 +2905,109 @@ msgstr ""
+ "ਪੈਕੇਜ %s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਇਸ ਦੀ ਬਜਾਏ ਇਸ ਨੂੰ ਇੰਸਟਾਲ "
+ "ਕਰਨ ਲਈ yum install ਚਲਾਓ।"
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
++"ਪੈਕੇਜ %s.%s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਅੱਪਡੇਟ ਨਹੀਂ ਹੋ ਸਕਦਾ। ਇਸ ਦੀ ਬਜਾਏ ਪਹਿਲਾਂ yum "
++"install ਚਲਾਉ।"
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "%s ਅੱਡ ਕੀਤਾ"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸੈੱਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s ਨੂੰ %s ਦੇ ਲਈ ਅੱਪਡੇਟ ਵਜੋਂ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾਂਦੇ।"
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "%s: ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ।"
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ: ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "ਮੜ-ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ: ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਪੈਕੇਜ ਨਾਲ ਕੋਈ ਨਹੀਂ ਮਿਲਦਾ"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "%s ਪੈਕੇਜ ਕਈ ਇੰਸਟਾਲ ਲਈ ਮਨਜ਼ੂਰ ਹੈ, ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਲਈ ਕੋਈ ਮੇਲ ਨਹੀਂ: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "%s: ਪੈਕੇਜ ਲਈ ਕੇਵਲ ਅੱਪਗਰੇਡ ਉਪਲੱਬਧ"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "%s: ਅੱਪਗਰੇਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ:"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+-msgstr ""
++msgstr "%s ਤੋਂ ਕੁੰਜੀ ਲਈ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "GPG ਕੁੰਜੀ ਲੈਣ ਲਈ ਫੇਲ੍ਹ: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "%s ਤੋਂ ਗਲਤ GPG ਕੁੰਜੀ: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2884,224 +3015,266 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n"
++" Userid : %s\n"
++" ਪੈਕੇਜ: %s (%s)\n"
++" ਤੋਂ   : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n"
++" Userid: \"%s\"\n"
++" ਤੋਂ  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+-msgstr ""
++msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "ਕੁੰਜੀ ਇੰਪੋਰਟ ਕਰਨ ਲਈ ਫੇਲ੍ਹ (ਕੋਡ %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "ਕੁੰਜੀ ਠੀਕ ਤਰ੍ਹਾਂ ਇੰਪੋਰਟ ਕੀਤੀ ਗਈ"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "ਕੋਈ ਵੀ ਕੁੰਜੀ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੀ"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+-msgstr ""
++msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਨੂੰ ਪਹਿਲਾਂ ਹੀ ਇੰਪੋਰਟ ਕੀਤਾ ਗਿਆ ਹੈ"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "ਕੁੰਜੀ ਇੰਪੋਰਟ ਫੇਲ੍ਹ"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "%s ਰੈਪੋ ਲਈ ਕੋਈ ਵੀ ਕੁੰਜੀਆਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "ਢੁੱਕਵਾਂ ਮਿੱਰਰ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ।"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀਆਂ ਆਈਆਂ ਹਨ।"
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "%s ਵਿੱਚ ਇਹ ਗਲਤੀ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦਿਉ"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "ਟੈਸਟ ਟਰਾਂਸੈਕਸ਼ਨ ਗਲਤੀਆਂ: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ %s ਸੰਭਾਲੀ ਨਹੀਂ ਜਾ ਸਕੀ: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr " ਕੀਤੀ ਮੰਗ ਮੁਤਾਬਕ ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr "ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "ਲੋਡ ਕੀਤੀਆਂ ਪਲੱਗਇਨ: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "%s: ਨਾਲ ਮਿਲਦੀ ਕੋਈ ਪਲੱਗਇਨ ਨਹੀਂ ਹੈ"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "\"%s\" ਪਲੱਗਇਨ ਲੋਡ ਨਹੀਂ ਕੀਤੀ ਜਾ ਰਹੀ, ਕਿਉਂਕਿ ਇਹ ਬੰਦ ਹੈ"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "ਪਲੱਗਇਨ \"%s\" ਇੰਪੋਰਟ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "\"%s\" ਪਲੱਗਇਨ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "ਸੰਰਚਨਾ ਫਾਇਲ %s ਨਹੀਂ ਲੱਭੀ"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "ਪਲੱਗਇਨ %s ਲਈ ਸੰਰਚਨਾ ਫਾਇਲ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "ਕਮਾਂਡਾਂ ਲਈ ਰਜਿਸਟਰੇਸਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s %s ਨਾਲ ਡੁਪਲੀਕੇਟ ਹੈ"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਜਾਂਦਾ ਹੈ"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+-msgstr ""
++msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਇਹ ਲੱਭਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+ 
+ #: ../yum/rpmtrans.py:80
+ msgid "Repackaging"
+ msgstr "ਮੁੜ-ਪੈਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"ਡਾਊਨਲੋਡ ਡਾਇਰੈਕਟਰੀ %s ਵਿੱਚ ਨਾ-ਲੋੜੀਦੀ ਖਾਲੀ ਥਾਂ\n"
++"    * ਖਾਲੀ   %s\n"
++"    * ਚਾਹੀਦੀ  %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/pl.po b/po/pl.po
+index 0fe83a9..0fbddb8 100644
+--- a/po/pl.po
++++ b/po/pl.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Piotr Drąg <piotrdrag at gmail.com>, 2011
++# Translators:
++# Piotr Drąg <piotrdrag at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 16:31+0000\n"
++"Last-Translator: raven <piotrdrag at gmail.com>\n"
+ "Language-Team: Polish (http://www.transifex.net/projects/p/yum/team/pl/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,123 +18,128 @@ msgstr ""
+ "Language: pl\n"
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Aktualizowanie"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Usuwanie"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instalowanie"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Przestarzałe"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Zaktualizowano"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Usunięto"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Zainstalowano"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Brak nagłówka - hę?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Ponowne utworzenie pakietu"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Błąd: nieprawidłowy stan wyjścia: %s dla %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Usunięto: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Usuwanie"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Czyszczenie"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Polecenie \"%s\" zostało już określone"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Ustawianie repozytoriów"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Odczytywanie metadanych repozytoriów z lokalnych plików"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Błąd konfiguracji: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Błąd opcji: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Zainstalowane: %s-%s o %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Zbudowane    : %s o %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Wysłane: %s o %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Należy podać polecenie"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Nie ma takiego polecenia: %s. Proszę użyć %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Wymagane miejsce na dysku:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++"  Wymagane jest co najmniej %d MB więcej miejsca w systemie plików %s.\n"
++msgstr[1] ""
++"  Wymagane jest co najmniej %d MB więcej miejsca w systemie plików %s.\n"
++msgstr[2] ""
+ "  Wymagane jest co najmniej %d MB więcej miejsca w systemie plików %s.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,62 +147,62 @@ msgstr ""
+ "Podsumowanie błędów\n"
+ "-------------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Próbowano wykonać transakcję, ale nie ma nic do zrobienia. Kończenie "
+ "działania."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Kończenie działania na polecenie użytkownika"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Pobieranie pakietów:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Błąd podczas pobierania pakietów:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Wykonywanie sprawdzania transakcji"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "BŁĄD należy zaktualizować pakiet RPM, aby obsłużyć:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "BŁĄD sprawdzania transakcji i rozwiązywania zależności:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "Pakiet RPM musi zostać zaktualizowany"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Proszę zgłosić ten błąd na %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Wykonywanie testu transakcji"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Błąd podczas sprawdzania transakcji:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Test transakcji został ukończony powodzeniem"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Wykonywanie transakcji"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -204,91 +210,116 @@ msgstr ""
+ "Odmawianie automatycznego zaimportowania kluczy podczas nienadzorowanego uruchomienia.\n"
+ "Należy użyć \"-y\", aby wymusić."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Czy chodziło o: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Pakiety %s%s%s są dostępne, ale nie są zainstalowane."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Nie ma pakietu %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Pakiety do zainstalowania"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d pakiet do instalacji"
++msgstr[1] "%d pakiety do instalacji"
++msgstr[2] "%d pakietów do instalacji"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nie ma niczego do zrobienia"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pakietów oznaczonych do aktualizacji"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d pakiet oznaczony do aktualizacji"
++msgstr[1] "%d pakiety oznaczone do aktualizacji"
++msgstr[2] "%d pakietów oznaczonych do aktualizacji"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Brak pakietów oznaczonych do aktualizacji"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pakietów oznaczonych do synchronizacji dystrybucji"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d pakiet oznaczony do synchronizacji dystrybucji"
++msgstr[1] "%d pakiety oznaczone do synchronizacji dystrybucji"
++msgstr[2] "%d pakietów oznaczonych do synchronizacji dystrybucji"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Brak pakietów oznaczonych do synchronizacji dystrybucji"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pakietów oznaczonych do usunięcia"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d pakiet oznaczony do usunięcia"
++msgstr[1] "%d pakiety oznaczone do usunięcia"
++msgstr[2] "%d pakietów oznaczonych do usunięcia"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Brak pakietów oznaczonych do usunięcia"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Pakiety do instalacji poprzedniej wersji"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d pakiet oznaczony do instalacji poprzedniej wersji"
++msgstr[1] "%d pakiety oznaczone do instalacji poprzedniej wersji"
++msgstr[2] "%d pakietów oznaczonych do instalacji poprzedniej wersji"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (z %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Zainstalowany pakiet %s%s%s%s jest niedostępny."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Pakiety do ponownego zainstalowania"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d pakiet oznaczony do ponownej instalacji"
++msgstr[1] "%d pakiety oznaczone do ponownej instalacji"
++msgstr[2] "%d pakietów oznaczonych do ponownej instalacji"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nie podano pakietów"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Pakiety do zainstalowania"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "N/S dopasowane: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Pasuje %stylko%s nazwa i podsumowanie, należy użyć \"search all\", aby "
+ "uzyskać wszystko."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -296,150 +327,156 @@ msgstr ""
+ "  Pasuje %stylko%s pełna nazwa i podsumowanie, należy użyć \"search all\", "
+ "aby uzyskać wszystko."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Pasujące: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Pasuje %sgłównie%s nazwa i podsumowanie, należy użyć \"search all\", aby "
+ "uzyskać wszystko."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Ostrzeżenie: nie odnaleziono wyników dla: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Brak wyników"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nie odnaleziono pakietów dla %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Czyszczenie repozytoriów: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Czyszczenie wszystkiego"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Czyszczenie nagłówków"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Czyszczenie pakietów"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Czytanie metadanych XML"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Czyszczenie bazy danych w pamięci podręcznej"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Czyszczenie metadanych wygasłej pamięci podręcznej"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Czyszczenie bazy danych RPM w pamięci podręcznej"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Czyszczenie wtyczek"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Ostrzeżenie: brak pasujących grup: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Zainstalowane grupy:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Zainstalowane grupy języków:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Dostępne grupy:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Dostępne grupy języków:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Ukończono"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Ostrzeżenie: grupa %s nie istnieje."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Brak pakietów dostępnych do instalacji lub aktualizacji w żadnej z żądanych "
+ "grup"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakietów do instalacji"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d pakiet do instalacji"
++msgstr[1] "%d pakiety do instalacji"
++msgstr[2] "%d pakietów do instalacji"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Grupa o nazwie %s nie istnieje"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Brak pakietów do usunięcia z grup"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pakietów do usunięcia"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d pakiet do usunięcia"
++msgstr[1] "%d pakiety do usunięcia"
++msgstr[2] "%d pakietów do usunięcia"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Pakiet %s jest już zainstalowany, pomijanie"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Odrzucanie pakietu %s.%s, którego nie można porównać"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Inne %s nie są zainstalowane, dodawanie do listy potencjalnie instalowanych"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opcje wtyczki"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Błąd wiersza poleceń: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -450,287 +487,291 @@ msgstr ""
+ "\n"
+ "%s: opcja %s wymaga parametru"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color przyjmuje jedną z: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot musi być ścieżką bezwzględną: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "wyświetla ten komunikat pomocy i kończy pracę"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "toleruje błędy"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ "uruchamia wyłącznie z pamięci podręcznej systemu i nie aktualizuje jej"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "położenie pliku konfiguracji"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maksymalny czas oczekiwania na polecenie"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "poziom wyjścia debugowania"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "wyświetla duplikaty w repozytoriach w poleceniach list/search"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "poziom wyjścia błędów"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "poziom wyjścia debugowania dla programu RPM"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "mało komunikatów"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "dużo komunikatów"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "odpowiada tak na wszystkie pytania"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "odpowiada nie na wszystkie pytania"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "wyświetla wersję programu yum i kończy pracę"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "ustawia roota instalacji"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "włącza jedno lub więcej repozytoriów (wieloznaczniki są dozwolone)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "wyłącza jedno lub więcej repozytoriów (wieloznaczniki są dozwolone)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "wyklucza pakiety po nazwie lub wyrażeniu regularnym"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "wyłącza wykluczanie z głównego, dla repozytorium lub wszystkiego"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "włącza przetwarzanie przestarzałych pakietów podczas aktualizacji"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "wyłącza wtyczki programu yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "wyłącza sprawdzanie podpisu GPG"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "wyłącza wtyczki po nazwie"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "włącza wtyczki po nazwie"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "pomija pakiety mające problemy z rozwiązaniem zależności"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontroluje użycie kolorów"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "ustawia wartość zmiennej $releasever w konfiguracji programu yum i plikach "
+ "repozytoriów"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "ustawia bezwzględne opcje konfiguracji i repozytoriów"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "sty"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "lut"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "kwi"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "maj"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "cze"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "lip"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "sie"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "wrz"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "paź"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "lis"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "gru"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Próbowanie innego serwera lustrzanego."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nazwa              : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Architektura       : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epoka              : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Wersja             : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Wydanie            : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Rozmiar            : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repozytorium       : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Z repozytorium     : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Twórca             : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Czas wysłania      : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Czas zbudowania    : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Czas zainstalowania: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Zainstalowane przez: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Zmienione przez    : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Podsumowanie       : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "Adres URL          : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licencja           : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Opis               : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "t"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "tak"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nie"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "W porządku? [t/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -739,154 +780,157 @@ msgstr ""
+ "\n"
+ "Grupa: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Identyfikator grupy: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Opis: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Język: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Pakiety obowiązkowe:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Domyślne pakiety:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Pakiety opcjonalne:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Pakiety warunkowe:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "pakiet: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Brak zależności dla tego pakietu"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  zależność: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Nierozwiązana zależność"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Dopasowano z:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licencja    : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nazwa pliku : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Inne        : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Wystąpił błąd podczas obliczania całkowitego rozmiaru pobierania"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Całkowity rozmiar: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Całkowity rozmiar pobierania: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Rozmiar po zainstalowaniu: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Wystąpił błąd podczas obliczania rozmiaru po zainstalowaniu"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Ponowne instalowanie"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Instalowanie poprzedniej wersji"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Instalowanie, aby rozwiązać zależności"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Aktualizowanie, aby rozwiązać zależności"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Usuwanie, aby rozwiązać zależności"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Pominięto (problemy z zależnościami)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Nie zainstalowano"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Niedostępne"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Pakiet"
++msgid_plural "Packages"
++msgstr[0] "Pakiet"
++msgstr[1] "Pakiet"
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Architektura"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Wersja"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repozytorium"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Rozmiar"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     zastępuje  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -897,57 +941,52 @@ msgstr ""
+ "Podsumowanie transakcji\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Instalacja                    %5.5s pakiet(y)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instalacja"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Aktualizacja                  %5.5s pakiet(y)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Aktualizacja"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Usunięcie                     %5.5s pakiet(y)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Usunięcie"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Ponowna instalacja            %5.5s pakiet(y)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Ponowna instalacja"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Instalacja poprzedniej wersji %5.5s pakiet(y)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Instalacja poprzedniej wersji"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Usunięto"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Usunięto zależność"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Zainstalowano zależność"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Zaktualizowano zależność"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Zastąpiono"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Nie powiodło się"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dwóch"
+ 
+@@ -955,7 +994,7 @@ msgstr "dwóch"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -965,364 +1004,416 @@ msgstr ""
+ "\n"
+ " Obecne pobieranie zostało anulowane, należy %sprzerwać (Ctrl-C) ponownie%s w ciągu %s%s%s sekund, aby zakończyć pracę.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "przerwane przez użytkownika"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Razem"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<nie ustawiono>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "System"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Pomijanie połączonej transakcji %d do %d, jako że nachodzą na siebie"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Brak transakcji"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Podano błędne identyfikatory transakcji lub pakietów"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Wiersz poleceń"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Zalogowany użytkownik"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "Identyfikator"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Data i czas"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Czynności"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Zmieniono"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Nie podano identyfikatora transakcji"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Podano błędny identyfikator transakcji"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Nie odnaleziono podanego identyfikatora transakcji"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Odnaleziono więcej niż jeden identyfikator transakcji."
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Podano błędny identyfikator transakcji lub pakietu"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Zainstalowano poprzednią wersję"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Starsze"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Nowsze"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Identyfikator transakcji   :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Czas rozpoczęcia           :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Rozpoczęcie bazy danych RPM:"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u sekund)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minut)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u godzin)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u dni)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Czas ukończenia            :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Ukończenie bazy danych RPM :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Użytkownik                 :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Kod zwrotny                :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Przerwano"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Niepowodzenia:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Niepowodzenie:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Powodzenie"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Wiersz poleceń :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Przechowano dodatkowe niedomyślne informacje: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Wykonano transakcję za pomocą:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Zmienione pakiety:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Pominięte pakiety:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problemy bazy danych RPM:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Wyjście skryptu:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Błędy:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instalacja"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Instalacja zależności"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Zastępowanie"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Usunięcie"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Ponowna instalacja"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Instalacja poprzedniej wersji"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Aktualizacja"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Czas"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Ostatni dzień"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Ostatni tydzień"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Ostatnie dwa tygodnie"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Ostatnie trzy miesiące"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Ostatnie pół roku"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Ostatni rok"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Ponad rok temu"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Nie odnaleziono transakcji %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Identyfikator transakcji:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Dostępne są dodatkowe informacje o historii:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: nie odnaleziono dodatkowych danych dla tej nazwy"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Pakiet             :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Stan               :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Rozmiar            :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Komputer budujący  :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Czas zbudowania    :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Twórca pakietu     :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Dostawca           :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licencja           :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "Adres URL          :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "Źródłowy pakiet RPM:"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Czas wysłania      :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Osoba wysyłająca   :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Przyczyna          :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Z repozytorium     :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Zainstalowane przez:"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Zmienione przez    :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "zainstalowany"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "zaktualizowany"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "usunięty"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "ponownie zainstalowany"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "zainstalowana poprzednia wersja"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "zastępowany"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "zaktualizowany"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "zastąpiony"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Pakiet %s.%s %s:%s-%s zostanie %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Wykonywanie sprawdzania transakcji"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Ponowne uruchamianie rozwiązywania zależności z nowymi zmianami."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Ukończono rozwiązywanie zależności"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Przetwarzanie zależności: %s dla pakietu: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Utrzymywanie pakietu: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Nierozwiązana zależność: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Pakiet: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1331,7 +1422,7 @@ msgstr ""
+ "\n"
+ "    Wymaga: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1340,7 +1431,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1349,7 +1440,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1358,87 +1449,87 @@ msgstr ""
+ "        Nie odnaleziono"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Zaktualizowano przez"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Zainstalowano poprzednią wersję przez"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Zastąpiono przez"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Dostępne"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Przetwarzanie konfliktów: %s jest w konflikcie z %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Układanie zestawu transakcji z wybranymi pakietami. Proszę czekać."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ "---> Pobieranie nagłówka dla %s do umieszczenia w zestawie transakcji."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Wykonywanie"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Zasypianie"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Nie można przerywać"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Śledzone/zatrzymane"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Nieznane"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Inna aplikacja to PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Inna aplikacja to: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Pamięć: %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Uruchomiono: %s - %s temu"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Stan: %s, PID: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1448,7 +1539,7 @@ msgstr ""
+ "\n"
+ "Kończenie działania na polecenie użytkownika"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1458,7 +1549,7 @@ msgstr ""
+ "\n"
+ "Kończenie działania z powodu przerwanego potoku"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1469,7 +1560,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1477,35 +1568,35 @@ msgstr ""
+ "Inna aplikacja obecnie blokuje program yum. Kończenie działania zgodnie z "
+ "konfiguracją exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Błąd wyjścia wtyczki: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Błąd programu yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Błąd: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Można spróbować użyć --skip-broken, aby obejść problem"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Można spróbować wykonać polecenie: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Nieznane błędy: kod wyjścia: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1513,7 +1604,7 @@ msgstr ""
+ "\n"
+ "Rozwiązano zależności"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Ukończono."
+ 
+@@ -1525,7 +1616,7 @@ msgstr " Małe użycie:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Należy być zalogowanym jako root, aby wykonać to polecenie."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1555,53 +1646,53 @@ msgstr ""
+ "Aby dowiedzieć się więcej, proszę skontaktować się z dostawcą dystrybucji\n"
+ "lub pakietu.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problemowe repozytorium: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Błąd: wymagane jest przekazanie listy pakietów do %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Błąd: wymagany jest parametr do dopasowania"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Błąd: wymagana jest grupa lub lista grup"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Błąd: czyszczenie wymaga opcji: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Błąd: nieprawidłowy parametr czyszczenia: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Brak parametrów dla powłoki"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Przekazano nazwę pliku do powłoki: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Plik %s podany powłoce jako parametr nie istnieje."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Błąd: podano powłoce więcej niż jeden plik jako parametr."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1611,306 +1702,299 @@ msgstr ""
+ " Wykonanie polecenia \"yum repolist all\" wyświetli wszystkie posiadane repozytoria.\n"
+ " Można włączyć repozytoria za pomocą polecenia yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKIET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instaluje pakiet lub pakiety w systemie"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Ustawianie procesu instalacji"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKIET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Aktualizuje pakiet lub pakiety w systemie"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Ustawianie procesu aktualizacji"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Synchronizuje zainstalowane pakiety do najnowszych dostępnych wersji"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Ustawianie procesu synchronizacji dystrybucji"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Wyświetla szczegóły o pakiecie lub grupie pakietów"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Zainstalowane pakiety"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Dostępne pakiety"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Dodatkowe pakiety"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Zaktualizowane pakiety"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Zastępowanie przestarzałych pakietów"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Ostatnio dodane pakiety"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Brak pakietów pasujących do listy"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Wyświetla listę pakietów lub grup pakietów"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Usuwa pakiet lub pakiety z systemu"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Ustawianie procesu usuwania"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Wyświetla lub używa informacji o grupach"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Ustawianie procesu grup"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Brak grup, na których można wykonać polecenie"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Wyświetla listę dostępnych grup pakietów"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instaluje pakiety z grupy w systemie"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Usuwa pakiety z grupy z systemu"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Wyświetla szczegóły o grupie pakietów"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Nieprawidłowe podpolecenie grup, należy użyć: %s."
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Utworzy pamięć podręczną metadanych"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Tworzenie plików pamięci podręcznej ze wszystkich plików metadanych."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Może to chwilę zająć, z zależności od prędkości komputera"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Utworzono pamięć podręczną metadanych"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Usuwa dane z pamięci podręcznej"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Wyszukuje pakiet dostarczający podaną wartość"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Sprawdza dostępne aktualizacje pakietów"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Wyszukuje szczegóły pakietów dla podanego ciągu"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Wyszukiwanie pakietów: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Aktualizuje pakiety, w tym przestarzałe"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Ustawianie procesu aktualizacji"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instaluje lokalny pakiet RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Ustawianie procesu lokalnego pakietu"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Określa, który pakiet dostarcza podaną zależność"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Wyszukiwanie pakietów dla zależności:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Uruchamia interaktywną powłokę programu yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Ustawianie powłoki programu yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Wyświetla listę zależności pakietu"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Wyszukiwanie zależności: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Wyświetla skonfigurowane repozytoria oprogramowania"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "włączone"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "wyłączone"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Identyfikator repozytorium        : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Nazwa repozytorium                : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Stan repozytorium                 : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Wersja repozytorium               : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Znaczniki repozytorium            : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Znaczniki dystrybucji repozytorium: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Aktualizacje repozytorium         : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Pakiety repozytorium              : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Rozmiar repozytorium              : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Podstawowy adres URL repozytorium : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Metaodnośnik repozytorium         : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Zaktualizowano                  : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Serwery lustrzane repozytorium    : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Nigdy (ostatnio: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Natychmiast (ostatnio: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekundy (ostatnio: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Wygaszenie repozytorium           : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Wykluczenia z repozytorium        : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Dołączone z repozytorium          : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Wykluczenia z repozytorium        : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Nazwa pliku repozytorium: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "identyfikator repozytorium"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "stan"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nazwa repozytorium"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Wyświetla pomocny komunikat o używaniu"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Brak dostępnej pomocy dla %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1920,7 +2004,7 @@ msgstr ""
+ "\n"
+ "aliasy: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1930,85 +2014,125 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Ustawianie procesu ponownej instalacji"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "Ponownie instaluje pakiet"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Ustawianie procesu instalacji poprzedniej wersji pakietu"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "Instaluje poprzednią wersję pakietu"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Wyświetla wersję dla komputera i/lub dostępnych repozytoriów."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Grupy wersji programu yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grupa  :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Pakiety:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Zainstalowano:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Zainstalowana grupa:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Dostępne:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Dostępne grupy:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Wyświetla lub używa historii transakcji"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transakcje      :"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Czas rozpoczęcia:"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Czas ukończenia :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Liczniki        :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC         :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA          :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA             :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR           :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  Baza danych RPM:"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  Baza danych yum:"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Nieprawidłowe podpolecenie historii, należy użyć: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Brak dostępu do bazy danych historii."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Proszę sprawdzić, czy występują problemy w bazie danych RPM"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "wczytuje zapisaną transakcję z nazwy pliku"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Nie podano zapisanego pliku transakcji."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "wczytywanie transakcji z %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Wczytano transakcję z %s z %s elementami"
+@@ -2019,30 +2143,36 @@ msgstr "Wczytano transakcję z %s z %s elementami"
+ msgid " Yum checks failed: %s"
+ msgstr " Sprawdzanie programu yum nie powiodło się: %s"
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr "Brak dostępu do odczytu/zapisu w bieżącym katalogu, przenoszenie do /"
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Nie można utworzyć pliku blokady; kończenie działania"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Inna aplikacja obecnie blokuje program yum. Oczekiwanie na jej "
+ "zakończenie..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr "Nie można utworzyć pliku blokady; kończenie działania"
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Rozwiązywanie zależności"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Transakcja została zapisana, można ją ponownie wykonać za pomocą polecenia: "
+-"yum load-transaction %s"
++"Transakcja została zapisana, można ją wykonać ponownie za pomocą:\n"
++" yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2052,75 +2182,75 @@ msgstr ""
+ "\n"
+ "Kończenie działania na polecenie użytkownika."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Ustawianie zestawów transakcji przed włączeniem klasy konfiguracji"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ "Nieprawidłowa flaga zestawu transakcji tsflag w pliku konfiguracji: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Wyszukiwanie zestawu pakietów dla zależności: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Element: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s przekonwertowano do zainstalowania"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Dodawanie pakietu %s w trybie %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Usuwanie pakietu %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s wymaga: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s wymaga %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Wymagana zależność została już odnaleziona, oszukiwanie"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Wymagana zależność nie jest nazwą pakietu. Wyszukiwanie: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potencjalny dostawca: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Tryb to %s dla dostawcy %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Tryb dla pakietu dostarczającego %s: %s"
+@@ -2128,118 +2258,118 @@ msgstr "Tryb dla pakietu dostarczającego %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Próba zaktualizowania %s, aby rozwiązać zależność"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Nie odnaleziono ścieżek aktualizacji dla %s. Niepowodzenie."
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: pakiet %s wymagający %s został oznaczony jako do usunięcia"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: zastępowanie przestarzałego pakietu %s pakietem %s, aby rozwiązać "
+ "zależność."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: aktualizowanie %s, aby rozwiązać zależność."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Nie można odnaleźć ścieżki aktualizacji dla zależności dla: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Szybko dopasowano %s jako wymaganie %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s jest w dostarczających pakietach, ale jest już zainstalowany, usuwanie."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "Pakiet %s potencjalnie rozwiązujący ma nowszą wersję w zestawie transakcji."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Pakiet %s potencjalnie rozwiązujący ma zainstalowaną nowszą wersję."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s jest już w zestawie transakcji, pomijanie"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: oznaczanie %s jako aktualizacji dla %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: oznaczanie %s jako do zainstalowania dla %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Powodzenie - pusta transakcja"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Ponowne uruchamianie pętli"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Kończenie procesu zależności"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Powodzenie - rozwiązano zależności"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Sprawdzanie zależności dla %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "wyszukiwanie %s jako wymagania %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Wykonywanie compare_providers() dla %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "lepsze arch w po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s zastępuje %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2248,144 +2378,144 @@ msgstr ""
+ "archdist porównało %s do %s na %s\n"
+ "  Zwycięzca: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "wspólny źródłowy pakiet RPM %s i %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "podstawowy pakiet %s jest zainstalowany dla %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "wspólny przedrostek %s dla %s i %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "wymaga minimum: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Zwycięzca: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Przegrany (za pomocą %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Najlepszy porządek: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Repozytorium %r: błąd podczas przetwarzania konfiguracji: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "Repozytorium %r nie posiada nazwy w konfiguracji, używanie identyfikatora"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "wtyczki zostały już zainicjowane"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Odczytywanie lokalnej bazy danych RPM"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Ustawianie zestawów pakietów"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "obiekt repozytorium %s nie posiada metody _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "więc to repozytorium nie może zostać przywrócone.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Budowanie obiektu aktualizacji"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() zostanie usunięte w przyszłych wersjach programu yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Pobieranie metadanych grup"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Dodawanie pliku grup z repozytorium: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Dodanie pliku grup dla repozytorium nie powiodło się: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Brak dostępnych grup we wszystkich repozytoriach"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Pobieranie metadanych znaczników pakietów"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Dodawanie znaczników z repozytorium: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ "Dodanie znaczników pakietów dla repozytorium nie powiodło się: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importowanie dodatkowych informacji o liście plików"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Program %s%s%s można odnaleźć w pakiecie yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2393,21 +2523,21 @@ msgstr ""
+ "Pozostały nieukończone transakcje. Można rozważyć wykonanie najpierw "
+ "polecenia yum-complete-transaction, aby je ukończyć."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Wyszukiwanie niepotrzebnych pozostałych zależności"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Chronione wersje multilib: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Próbowanie usunięcia pakietu \"%s\", który jest chroniony"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2415,90 +2545,93 @@ msgstr ""
+ "\n"
+ "Pakiety pominięto z powodu problemów z zależnościami:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s z %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Odnaleziono %d wcześniej istniejących problemów bazy danych RPM. Wynik "
+ "polecenia \"yum check\":"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Ostrzeżenie: baza danych RPM została zmieniona poza programem yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "brak wymaganych"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "zainstalowano konflikt"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Ostrzeżenie: podczas transakcji wystąpił skrypt lub inne nie krytyczne "
+ "błędy."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Nie można rozpocząć transakcji:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Nie można wykonać transakcji."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Usunięcie pliku transakcji %s nie powiodło się"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s miało zostać zainstalowane, ale nie zostało."
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s miało zostać usunięte, ale nie zostało."
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Nie można otworzyć blokady %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Nie można sprawdzić, czy PID %s jest aktywny"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Istnieje blokada %s: inna kopia jest uruchomiona jako PID %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Nie można utworzyć blokady na %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2507,42 +2640,31 @@ msgstr ""
+ "Pakiet nie zgadza się z zamierzonym pobieraniem. Sugestia: proszę wykonać "
+ "polecenie yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Nie można wykonać sprawdzenia sum kontrolnych"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Sumy kontrolne pakietu nie zgadzają się"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "sprawdzenie sum kontrolnych pakietu nie powiodło się, ale zapisywanie w "
+ "pamięci podręcznej dla %s jest włączone"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "używanie lokalnej kopii %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Niewystarczająca ilość miejsca w katalogu pobierania %s\n"
+-"    * wolne   %s\n"
+-"    * wymagane %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Nagłówek nie jest pełny."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2550,62 +2672,65 @@ msgstr ""
+ "Nagłówek nie jest w lokalnej pamięci podręcznej, a tryb używania tylko "
+ "pamięci podręcznej jest włączony. Nie można pobrać %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Klucz publiczny dla %s nie jest zainstalowany"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Wystąpił problem podczas otwierania pakietu %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Klucz publiczny dla %s nie jest zaufany"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Pakiet %s nie jest podpisany"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Nie można usunąć %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "Usunięto %s"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Nie można usunąć %s pliku %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "Usunięto %s plik %s"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "Usunięto %d %s plików"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "Usunięto %d %s plik"
++msgstr[1] "Usunięto %d %s pliki"
++msgstr[2] "Usunięto %d %s plików"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Więcej niż jeden identyczny wynik znajduje się w zestawie dla %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nic nie pasuje do %s.%s %s:%s-%s z aktualizacji"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2613,56 +2738,59 @@ msgstr ""
+ "searchPackages()  zostanie usunięte w przyszłych wersjach programu yum."
+ "                      Zamiast tego należy użyć searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Wyszukiwanie %d pakietów"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Wyszukiwanie %d pakietu"
++msgstr[1] "Wyszukiwanie %d pakietów"
++msgstr[2] "Wyszukiwanie %d pakietów"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "wyszukiwanie pakietu %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "wyszukiwanie we wpisach plików"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "wyszukiwanie we wpisach dostarczania"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Brak dostępnych danych grup dla skonfigurowanych repozytoriów"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Grupa o nazwie %s nie istnieje"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "pakiet %s nie został oznaczony w grupie %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Dodawanie pakietu %s z grupy %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Brak dostępnego pakietu o nazwie %s do zainstalowania"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Ostrzeżenie: grupa %s nie posiada żadnych pakietów."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+@@ -2670,65 +2798,65 @@ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Nie można odnaleźć krotki pakietu %s w zestawie pakietów"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Nie można odnaleźć krotki pakietu %s w bazie danych RPM"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Nieprawidłowa flaga wersji z: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nie odnaleziono pakietu %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Obiekt pakietu nie był instancją obiektu pakietu"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nie podano nic do zainstalowania"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Sprawdzanie wirtualnych zależności lub plików dla %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Brak wyników dla parametru: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Pakiet %s jest zainstalowany, ale nie jest dostępny"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Brak pakietów dostępnych do instalacji"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Pakiet: %s  - jest już w zestawie transakcji"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Pakiet %s został zastąpiony przez %s, który jest już zainstalowany"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2737,97 +2865,103 @@ msgstr ""
+ "Pakiet %s został zastąpiony przez %s, ale zastępujący pakiet nie spełnia "
+ "wymagań"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "Pakiet %s został zastąpiony przez %s, próbowanie instalacji %s zamiast niego"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Pakiet %s jest już zainstalowany w najnowszej wersji"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Pakiet pasujący do %s jest już zainstalowany. Sprawdzanie aktualizacji."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Aktualizowanie wszystkiego"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Przestarzały pakiet nie zostanie zaktualizowany: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Brak pasujących pakietów do zaktualizowania: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Pakiet został już zastąpiony: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Przestarzały pakiet nie zostanie zaktualizowany: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Już zaktualizowany pakiet nie zostanie zaktualizowany: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Brak pasujących pakietów do usunięcia"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Brak pasujących pakietów do usunięcia: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Pomijanie uruchomionego jądra: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Usuwanie %s z transakcji"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Nie można otworzyć: %s. Pomijanie."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Sprawdzanie %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Nie można lokalnie zainstalować pakietu RPM delta: %s. Pomijanie."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr "Nie można dodać pakietu %s do transakcji. Niezgodna architektura: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Nie można zainstalować pakietu %s. Został zastąpiony zainstalowanym pakietem"
+ " %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2836,7 +2970,7 @@ msgstr ""
+ "Pakiet %s nie jest zainstalowany, nie można go zaktualizować. Proszę wykonać"
+ " polecenie yum install, aby go zainstalować."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2845,100 +2979,105 @@ msgstr ""
+ "Pakiet %s.%s nie jest zainstalowany, więc nie może zostać zaktualizowany. "
+ "Należy wykonać polecenie yum install, aby go zainstalować."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Wykluczanie %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Oznaczanie %s do zainstalowania"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Oznaczanie %s jako aktualizacji %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: nie aktualizuj zainstalowanego pakietu."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Nie można otworzyć pliku: %s. Pomijanie."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Podczas ponownego instalowania wystąpił problem: brak pasujących pakietów do"
+ " usunięcia"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Podczas ponownego instalowania wystąpił problem: brak pakietu %s pasującego "
+ "do zainstalowania"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Brak pakietów dostępnych do instalacji poprzedniej wersji"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Pakiet %s może być wielokrotnie instalowany, pomijanie"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Brak wyników dla dostępnych pakietów: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Dla pakietu dostępna jest tylko aktualizacja: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Zainstalowanie poprzedniej wersji nie powiodło się: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Aktualizacja nie powiodła się: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Pobieranie klucza z %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Pobranie klucza GPG nie powiodło się: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "Podpis GPG klucza %s nie pasuje do klucza CA dla repozytorium: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "Podpis GPG klucza został sprawdzony za pomocą kluczy CA"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Nieprawidłowy klucz GPG z %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ "Przetworzenie klucza GPG nie powiodło się: klucz nie posiada wartości %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2951,7 +3090,7 @@ msgstr ""
+ " Pakiet                   : %s (%s)\n"
+ " Od                       : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2962,25 +3101,25 @@ msgstr ""
+ " Identyfikator użytkownika: \"%s\"\n"
+ " Od                       : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "Klucz GPG %s (0x%s) jest już zainstalowany"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Zaimportowanie klucza nie powiodło się (kod %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Klucz został pomyślnie zaimportowany"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Nie zainstalowano żadnych kluczy"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2989,25 +3128,25 @@ msgstr ""
+ "Klucze GPG wyświetlone dla repozytorium \"%s\" są już zainstalowane, ale nie są poprawne dla tego pakietu.\n"
+ "Proszę sprawdzić, czy dla tego repozytorium skonfigurowane są poprawne adresy URL do kluczy."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Zaimportowanie kluczy nie pomogło, błędne klucze?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "Klucz GPG %s (0x%s) został już zaimportowany"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Zaimportowanie klucza nie powiodło się"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Nie zainstalowano żadnych kluczy dla repozytorium %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3016,161 +3155,188 @@ msgstr ""
+ "Klucze GPG wyświetlone dla repozytorium \"%s\" są już zainstalowane, ale nie są poprawne.\n"
+ "Proszę sprawdzić, czy dla tego repozytorium skonfigurowane są poprawne adresy URL do kluczy."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Nie można odnaleźć odpowiedniego serwera lustrzanego."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Wystąpiły błędy podczas pobierania pakietów."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Proszę zgłosić ten błąd na %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Błędy testu transakcji: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Nie można ustawić katalogu pamięci podręcznej: %s "
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Zależności nie zostały rozwiązane. Nierozwiązana transakcja nie zostanie "
+ "zapisana."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Nie można zapisać pliku transakcji %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Nie można uzyskać dostępu/odczytać zapisanej transakcji %s: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "wersja bazy danych RPM nie zgadza się z wersją zapisanej transakcji, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ignorowanie, jak zażądano."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " przerywanie."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "nie można odnaleźć tsflags lub nie jest liczbą całkowitą."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Odnaleziono txmbr w nieznanym obecnym stanie: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Nie można odnaleźć txmbr: %s w stanie %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Nie można odnaleźć txmbr: %s z pierwotnego: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Brak elementów transakcji, związków lub ts zostało zmodyfikowane,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " ignorowanie, jak zażądano. Należy rozwiązać zależności."
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s zostało już odwiedzone i nie może zostać usunięte."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Sprawdzanie zależności odwrotnych %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++"%s posiada zależność odwrotną %s, która została zainstalowana przez "
++"użytkownika."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++"%s nie posiada zależności odwrotnych zainstalowanych przez użytkownika."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Wczytane wtyczki: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Brak wyników dla wtyczki: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Wtyczka \"%s\" nie została wczytana, ponieważ jest wyłączona"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Nie można zaimportować wtyczki \"%s\""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Wtyczka \"%s\" nie określa wymaganej wersji API"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Wtyczka \"%s\" wymaga API %s. Obsługiwane API to %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Wczytywanie wtyczki \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Istnieją dwie lub więcej wtyczek o nazwie \"%s\" w ścieżce wyszukiwania "
+ "wtyczek"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Nie odnaleziono pliku konfiguracji %s"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Nie można odnaleźć pliku konfiguracji dla wtyczki %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "rejestracja poleceń nie jest obsługiwana"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "posiada brakujące wymagania"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "posiada zainstalowane konflikty"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s jest duplikatem %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s zostaje zastąpiony przez %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s dostarcza %s, ale nie można go odnaleźć"
+@@ -3179,6 +3345,17 @@ msgstr "%s dostarcza %s, ale nie można go odnaleźć"
+ msgid "Repackaging"
+ msgstr "Ponowne tworzenie pakietu"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Niewystarczająca ilość miejsca w katalogu pobierania %s\n"
++"    * wolne   %s\n"
++"    * wymagane %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/pt.po b/po/pt.po
+index 9e76ec0..76f6008 100644
+--- a/po/pt.po
++++ b/po/pt.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,438 @@ msgstr ""
+ "Language: pt\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Sem cabeçalho - hã?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Erro nas Opções: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +456,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arq."
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versão"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +901,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +954,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +962,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1499,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1551,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1568,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2056,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2163,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Não é possível verificar se o PID %s está activo"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2949,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2957,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3190,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/pt_BR.po b/po/pt_BR.po
+index 493f090..643a4e5 100644
+--- a/po/pt_BR.po
++++ b/po/pt_BR.po
+@@ -2,14 +2,16 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# ufa <ufa at technotroll.org>, 2011
++# Translators:
++# Cleiton cleitonlima <cleitonlima at lavabit.com>, 2011.
++# ufa <ufa at technotroll.org>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-26 02:18+0000\n"
++"Last-Translator: cleitonlima <cleitonlima at lavabit.com>\n"
+ "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/yum/team/pt_BR/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +19,124 @@ msgstr ""
+ "Language: pt_BR\n"
+ "Plural-Forms: nplurals=2; plural=(n > 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Atualizando"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Apagando"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instalando"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Obsoletos"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Atualizados"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Removidos"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Instalados"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Sem cabeçalho - huh?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Reempacotar"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Erro: estado de saída inválido: %s de %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Removidos: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Removendo"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Limpeza"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Comando \"%s\" já definido"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Configurando repositórios"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Lendo metadados do repositório a partir dos arquivos locais"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Erro de configuração: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Erro nas opções: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Instalados: %s-%s em %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Construídos    : %s em %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Enviados: %s em %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Você precisa dar algum comando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Comando não encontrado: %s. Por favor, utilize %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Requisitos de disco:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Pelo menos mais %dMB são necessários no sistema de arquivos %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Pelo menos mais %dMB são necessários no sistema de arquivos %s.\n"
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +144,60 @@ msgstr ""
+ "Sumário de erros\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Tentando executar a transação, mas não há nada a ser feito. Saindo."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Saindo pelo comando do usuário"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Baixando pacotes:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Erro ao baixar pacotes:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+-msgstr ""
++msgstr "Executando Verificação da Transação"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ERRO. Você precisa atualizar o rpm para manipular:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "O RPM precisa ser atualizado"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Por favor, relate esse erro em %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Executando teste de transação"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Erro na verificação da transação:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Teste de transação completo"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Executando a transação"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,236 +205,261 @@ msgstr ""
+ "Recusa de importação automática das chaves ao executar de forma não assistida.\n"
+ "Use \"-y\" para sobrescrever."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Talvez você queira dizer: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Pacotes %s%s%s disponíveis, mas já instalados."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Nenhum pacote %s%s%s disponível."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Pacotes a serem instalados"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d pacote para instalar"
++msgstr[1] "%d pacotes para instalar"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nada a ser feito"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d pacotes marcados para atualização"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d pacote marcado para atualização"
++msgstr[1] "%d pacotes marcados para atualização"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Nenhum pacote marcado para atualização"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d pacotes marcados para Sincronização da Distribuição"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d pacotes marcados para Sincronização de Distribuição"
++msgstr[1] "%d pacotes marcados para Sincronização de Distribuição"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Nenhum pacote marcado para a Sincronização da Distribuição"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d pacotes marcados para remoção"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d pacote marcado para ser eliminado"
++msgstr[1] "%d pacotes marcados para serem eliminados"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Nenhum pacote marcado para remoção"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Pacote(s) a ser(em) desatualizados(s)"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d pacote para downgrade"
++msgstr[1] "%d pacotes para downgrade"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (a partir de %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "O pacote instalado %s%s%s%s não está disponível."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Pacote(s) a ser(em) reinstalado(s)"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d pacote para reinstalação"
++msgstr[1] "%d pacotes para reinstalação"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nenhum pacote fornecido"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Pacotes a serem instalados"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  Nome e sumário correspondem %sonly%s, use \"search all\" para tudo."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
++"  Nome completo e sumário correspondem %sonly%s, use \"search all\" para "
++"tudo."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Encontrado: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  Nome e sumário correspondem %smostly%s, use \"search all\" para tudo."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Aviso: nenhum resultado para: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nenhum pacote localizado"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nenhum pacote localizado para %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Limpando repositórios:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Limpando tudo"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Limpando cabeçalhos"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Limpando pacotes"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Limpando metadados em xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Limpando cache do banco de dados"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Limpando metadados expirados do cache"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Limpando dados rpmdb em cache"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Limpando plugins"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "Aviso: Nenhum grupo correspondente: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Grupos instalados:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "Grupos de Idiomas Instalados:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Grupos disponíveis:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "Grupos de Idiomas Disponíveis:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Concluído"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Aviso: O grupo %s não existe."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Nenhum pacote disponível para instalação ou atualização nos grupos "
+ "requisitados"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pacote(s) a ser(em) instalado(s)"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d pacote para Instalação"
++msgstr[1] "%d pacotes para Instalação"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Nenhum grupo de nome %s existe"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Nenhum pacote a ser removido a partir dos grupos"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d pacote(s) a ser(em) removido(s)"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d pacote para remoção"
++msgstr[1] "%d pacotes para remoção"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "O pacote %s já está instalado, ignorando"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Descartando pacote não comparável %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Nenhum outro %s instalado, adicionado à lista para potencial instalação"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opções do plugin"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Erro na linha de comando: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -441,287 +470,291 @@ msgstr ""
+ "\n"
+ "%s: a opção %s requer um argumento"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color aceita uma destas opções: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "--installroot deve ser um caminho absoluto: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "mostrar essa mensagem ajuda e sai"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "ser tolerante com os erros"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ "executar por completo a partir do cache do sistema, não atualiza o cache"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "configurar localização do arquivo"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "Tempo máximo de espera do comando"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nível de depuração na saída"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "mostrar duplicados em repos e em comandos de pesquisa/listagem"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "nível de erro na saída"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "nível de depuração na saída para o rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "operação discreta"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "operação detalhada"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "responder sim para todas as perguntas"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "responder não para todas as perguntas"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "mostrar versão do Yum ao sair"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "definir raiz de instalação"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "habilitar um ou mais repositórios (curingas são permitidos)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "desabilitar um ou mais repositórios (curingas são permitidos)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "excluir pacote(s) por nome ou glob"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ "desabilitar a exclusão a partir do principal, para um repositório ou para "
+ "tudo"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "Habilitar processo de obsolescência durante as atualizações"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "desabilitar plugins do Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "desabilitar verificação de assinaturas gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "desabilitar plugins pelo nome"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "habilita plugins pelo nome"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "ignorar pacotes com problemas de solução de dependências"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "controla o uso da cor"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "defina o valor de $releasever nos arquivos repo e yum config"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "Configurando opções arbitrárias de repositório e configurações. "
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Fev"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Abr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Mai"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Ago"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Set"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Out"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Dez"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Tentando outro espelho."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Nome        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arquitetura        : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Época       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Versão     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Lançamento     : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Tamanho        : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Repo        : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Do repositório   : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Executor   : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Tempo de execução  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Tempo de compilação   : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Tempo de instalação: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Instalado por %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Alterado por : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Sumário     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licença     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Descrição : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "s"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "sim"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "não"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Correto? [s/N]:"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -730,154 +763,156 @@ msgstr ""
+ "\n"
+ "Grupo: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Group-Id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Descrição: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " Linguagem: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Pacotes obrigatórios:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Pacotes padrão:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Pacotes opcionais:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Pacotes condicionais:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "pacote: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Nenhuma dependência para este pacote"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  dependência: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Dependência não satisfeita"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Resultado a partir de:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licença     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Nome de arquivo    : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Outro       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Houve um erro no cálculo do tamanho total do download"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Tamanho total: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Tamanho total do download: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Tamanho depois de instalado: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Houve um erro ao calcular o tamanho instalado"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Reinstalando"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Desatualizando"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Instalando para as dependências"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Atualizando para as dependências"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Removendo para as dependências"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Ignorado (problemas de dependências)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Não instalado"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Não disponível"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Pacote"
++msgid_plural "Packages"
++msgstr[0] "Pacote"
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arq."
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Versão"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Repo"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Tam."
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     substituindo  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -888,57 +923,52 @@ msgstr ""
+ "Resumo da transação\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Instalar  %5.5s Pacote(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Instalar"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Atualizar   %5.5s Pacote(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Atualizar"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Remover     %5.5s Pacote(s)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Remover"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Reinstalar %5.5s Pacote(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Reinstalar"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Desatualizar %5.5s Pacote(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Desatualizar"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Removido(s)"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Dependência(s) removida(s)"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Dependência(s) instalada(s)"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Dependência(s) atualizada(s)"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Substituído(s)"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Falhou"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dois"
+ 
+@@ -946,7 +976,7 @@ msgstr "dois"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -957,364 +987,416 @@ msgstr ""
+ " Download atual cancelado, %sinterrompa com (ctrl-c) novamente%s dentro de %s%s%s segundos\n"
+ "para sair.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "interrupção do usuário"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Total"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<indefinido>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Sistema"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "Nenhuma transação"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "IDs de transação ou pacote(s) fornecido(s) inválido(s)"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "Linha de comando"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Usuário de login"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Data e hora"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Ação(ões)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Alterado"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Nenhum ID de transação fornecido"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "O ID de transação fornecido é inválido"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "O ID de transação dado não foi localizado"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Foi localizado mais de um ID de transação!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Nenhum ID de transação ou pacote fornecido"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Desatualizados"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Antigo"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Recente"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "ID de transação:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Horário de início:"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Início do rpmdb:"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u segundos)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u minutos)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u horas)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u dias)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Horário do fim:"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Fim do rpmdb:"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Usuário:"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Código de retorno:"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Interrompido"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "Falhas:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Falha:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Sucesso"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Linha de comando  :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "informações não-padrão adicionais armazenadas: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transação realizada com:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Pacotes alterados:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Pacotes ignorados: "
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Problemas com Rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Saída do scriptlet:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Erros:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Instalar"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Dep-Install"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Obsoletos"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Apagar"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Reinstalar"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Desatualizar"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Atualizar"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Hora"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Ontem"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Uma semana atrás"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "2 semanas atrás"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "3 meses atrás"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "6 meses atrás"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Ano passado"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Há mais de um ano"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Nenhuma transação %s achada"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "ID da transação:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Informação adicional do histórico disponível:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Não há dados adicionais encontrados por este nome"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Pacote        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Tamanho           :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Empacotador       :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Fornecedor         :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licença        :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "Source RPM     :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Instalado por   :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Modificado por     :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "instalado"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+-msgstr ""
++msgstr "uma atualização"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "removido"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "Reinstalado"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+-msgstr ""
++msgstr "um downgrade"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+-msgstr ""
++msgstr "obsoleto"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "atualizado"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "obsoleto"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+-msgstr ""
++msgstr "---> O pacote %s.%s %s:%s-%s será %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Executando verificação da transação"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Reiniciando resolução de dependências com as novas alterações."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Resolução de dependências finalizada"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Processando dependência: %s para o pacote: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Manter os  pacotes: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Dependência não resolvida: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Pacote: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1323,7 +1405,7 @@ msgstr ""
+ "\n"
+ "    Requer: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1332,7 +1414,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1341,7 +1423,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1350,87 +1432,87 @@ msgstr ""
+ "       Não encontrado"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Atualizado por"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Desatualizado por"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Obsoletado por"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Disponível"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Processando conflito: %s conflita com %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Construindo conjunto de transações com os pacotes selecionados. Por "
+ "favor aguarde."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "--> Baixando cabeçalho do %s para inclusão no conjunto de transações."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Executando"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Dormindo"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Ininterrompível"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zumbi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Rastreado/Parado"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Desconhecido"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  O outro aplicativo é: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  O outro aplicativo é: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memória: %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Iniciado: %s - %s atrás"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Estado: %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1440,7 +1522,7 @@ msgstr ""
+ "\n"
+ "Saindo pelo cancelamento do usuário"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1450,7 +1532,7 @@ msgstr ""
+ "\n"
+ "Saindo por um pipe defeituoso"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1461,7 +1543,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1469,36 +1551,36 @@ msgstr ""
+ "No momento outro aplicativo está com a posse da trava do yum; saindo "
+ "conforme configurado pelo exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Erro PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Error do Yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Error: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Você pode tentar usar o parâmetro --skip-broken para contornar o problema"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Você pode tentar executar: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Erro(s) desconhecido(s): código de saída: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1506,7 +1588,7 @@ msgstr ""
+ "\n"
+ "Dependências resolvidas"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Concluído!"
+ 
+@@ -1518,7 +1600,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Você precisa ser root para executar este comando."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1548,53 +1630,53 @@ msgstr ""
+ "\n"
+ "Para mais informações contate o fornecedor da sua distribuição ou do pacote.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Repositório problema: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Erro: É necessário passar uma lista de pacotes para %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Erro: É necessário um item para corresponder"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Erro: É necessário um grupo ou uma lista de grupos"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Erro: a limpeza requer uma opção: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Erro: argumento de limpeza inválido: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Nenhum argumento para o shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Nome de arquivo passado para o shell: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "O arquivo %s, passado como um argumento para o shell, não existe."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Erro: mais de um arquivo passado como argumento para o shell."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1604,306 +1686,299 @@ msgstr ""
+ "Execute \"yum repolist all\" para ver os repositórios que você tem.\n"
+ "Você pode habilitar repositórios com yum-config-manager --enable <repositório>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PACOTE..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instala um ou mais pacotes no seu sistema"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Configurando o processo de instalação"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PACOTE...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Atualiza um ou mais pacotes do seu sistema"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Configurando o processo de atualização"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Sincronizar os pacotes instalados para as últimas versões disponíveis"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Configurando o processo de Sincronização de Distribuição"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Mostra detalhes sobre um pacote ou grupos de pacotes"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Pacotes instalados"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Pacotes disponíveis"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Pacotes extras"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Pacotes atualizados"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Tornando pacotes obsoletos"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Pacotes adicionados recentemente"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Nenhum pacote correspondente a ser listado"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Lista um pacote ou grupos de pacotes"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Remove um ou mais pacotes do seu sistema"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Configurando o processo de remoção"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Exibir, ou utilizar, as informações dos grupos"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Configurando o processo de grupos"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Não há grupos nos quais executar o comando"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Lista os grupos de pacotes disponíveis"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instala pacotes em um grupo ou no seu sistema"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Remove pacotes de um grupo ou do seu sistema"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Mostra detalhes sobre um grupo de pacotes"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Gera o cache de metadados"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Realizando cache de arquivos para todos os metadados."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Isso pode demorar um pouco, dependendo da velocidade deste computador"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Cache de metadados criado"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Remove os dados do cache"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Localiza qual pacote fornece o valor dado"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Verifica por atualizações de pacotes disponíveis"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Pesquisa detalhes do pacote para a string fornecida"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Pesquisando por pacotes:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Atualiza pacotes levando em conta os obsoletos"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Configurando o processo de atualização"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instala um RPM local"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Configurando o processo de pacote local"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Determina qual pacote fornece a dependência dada"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Pesquisando pacotes por dependência:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Executa um shell interativo do yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Configurando o shell do Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Lista as dependências de um pacote"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Localizando dependências:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Exibe os repositórios de software configurados"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "habilitado"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "desabilitado"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Repo-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Repo-name    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Repo-status  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Repo-revision: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Repo-tags    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Repo-distro-tags: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Repo-updated : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Repo-pkgs    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Repo-size    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Repo-baseurl : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Repo-metalink: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Atualizados :"
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Repo-mirrors : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Nunca (último: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Instante (último: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s segundo(s) (último: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Repo-expire  : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Repo-exclude : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Repo-include : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Repo-excluded: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Nome do Arquivo repo: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "id do repo"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "nome do repo"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Exibe uma mensagem de uso para ajuda"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Nenhuma ajuda disponível para %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1913,7 +1988,7 @@ msgstr ""
+ "\n"
+ "apelidos: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1923,117 +1998,165 @@ msgstr ""
+ "\n"
+ "apelido: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Configurando o processo de reinstalação"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "reinstala um pacote"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Configurando o processo de desatualização"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "desatualizando um pacote"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Exibe uma versão para a máquina e/ou os repositórios disponíveis."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Grupos da versão do Yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grupo:"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Pacotes:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Instalados:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Grupos instalados:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Disponíveis:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Grupos disponíveis:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Exibir ou usar o histórico de transações"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transações:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Subcomando de histórico inválido, use: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Você não tem acesso ao banco de dados do histórico."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Procurar por problemas no rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "Carregar uma transação salva de um nome de arquivo"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "Nenhum arquivo de transação salvo especificado."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "carregando transação de %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+-msgstr ""
++msgstr "Transação carregada de %s com %s membros"
+ 
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
+-msgstr ""
++msgstr "A verificação do yum falhou: %s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr "Sem acesso de leitura/escrita no diretório atual, mudando para /"
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Não é possível criar o arquivo de bloqueio; saindo"
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Outro aplicativo está retendo o bloqueio do yum; esperando por ele para "
+ "sair..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Resolvendo dependências"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
++"Sua transação foi salva, reexcute-a com:\n"
++"yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2043,75 +2166,75 @@ msgstr ""
+ "\n"
+ "Saindo pelo cancelamento do usuário."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ "Configurando TransactionSets antes da ativação da classe de configuração"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "tsflag inválido no arquivo de configuração: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Pesquisando pkgSack para a dep.: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Membro: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s convertido para instalar"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Adicionando pacote %s no modo %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Removendo pacote %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s requer: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s requer %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "O requerimento necessário já foi localizado, enganando"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "O requerimento necessário não é o nome de um pacote. Localizando: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Fornecedor em potencial: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "O modo é %s para o fornecedor do %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Modo para o pacote que fornece o %s: %s"
+@@ -2119,117 +2242,117 @@ msgstr "Modo para o pacote que fornece o %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "Tentando atualizar %s para resolver a dependência"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+-msgstr ""
++msgstr "Sem caminhos de atualização encontrados para %s. Falha!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: o pacote %s que requer o %s foi marcado para remoção"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Tornando %s obsoleto com o %s para resolver a dependência."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Atualizando %s para resolver a dependência."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ "Não foi possível encontrar um caminho de atualização para a dep. para: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "%s localizado rapidamente a ser requerido por %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s está nos pacotes fornecedores mas já está instalado, removendo."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ "O pacote de solução em potencial %s tem uma instância mais nova no ct."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ "O pacote de solução em potencial %s tem uma instância mais nova instalada."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s já está no ct, pulando esse"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Marcando %s como uma atualização para o %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Marcando %s como uma instalação para o %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Sucesso - transação vazia"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Reiniciando o loop"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Término do processo de dependências"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Sucesso - dependências resolvidas"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Verificando dependências para %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "procurando por %s como um requerimento do %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Executando compare_providers() para %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "melhor arquitetura no po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s torna %s obsoleto"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2238,142 +2361,142 @@ msgstr ""
+ "archdist comparou %s com %s em %s\n"
+ "  Vencedor: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "Sourcerpm comum %s e %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "o pacote base %s está instalado para o %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "prefixo comum de %s entre %s e %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "requer mínimo: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr "Vencedor: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr "Perdedor(com %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Melhor ordem: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Repositório %r: Erro ao analisar a configuração: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "O repositório %r não tem nome na configuração, usando o id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "plugins já inicializados"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Lendo RPMDB local"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Configurando sacos de pacotes"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "o objeto de repositório para o %s necessita de um método _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "conseqüentemente este repo não pode ser restaurado.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Construindo objeto de atualizações"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() será removida em uma futura versão do Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Obtendo metadados do grupo"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Adicionando arquivo de grupo a partir do repositório: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Falha ao adicionar o arquivo de grupos para o repositório: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Nenhum grupo disponível em nenhum repositório"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Obtendo metadados do pkgtags"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Adicionando tags do repositório: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Falha ao adicionar as Pkg Tags para o repositório: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importando informações adicionais da lista de arquivos"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "O programa %s%s%s está localizado no pacote yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2381,21 +2504,21 @@ msgstr ""
+ "Há transações não finalizadas restantes. Você pode considerar executar o "
+ "yum-complete-transaction primeiro para finalizá-las."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+-msgstr ""
++msgstr "Versões multilib protegidas: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Tentando remover \"%s\", que está protegido."
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2403,89 +2526,92 @@ msgstr ""
+ "\n"
+ "Pacotes ignorados devido a problemas de dependências:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s a partir de %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Encontrado(s) %d problema(s) pré-existente(s) do rpmdb, saída do  'yum "
+ "check' a seguir:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Aviso: o RPMDB foi alterado de fora do yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "faltando exigências"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "conflito instalado"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Aviso: scriptlet ou outros erros não fatais ocorreram durante a transação."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "A transação não pode ser iniciada."
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Não foi possível executar a transação."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Falha ao remover o arquivo de transação %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s deveria ter sido instalado mas não foi!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s deveria ter sido removido mas não foi!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Não foi possível abrir a trava %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Não foi possível verificar se o PID %s está ativo"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Bloqueio existente em %s: outra cópia está em execução com o pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Não foi possível criar um bloqueio em %s: %s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2494,41 +2620,30 @@ msgstr ""
+ "O Pacote não coincide com o download pretendido. Sugestão: execute  yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Não foi possível realizar a soma de verificação"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "O pacote não corresponde à soma de verificação"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "o pacote falhou na soma de verificação mas o cache está habilitado para o %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "usando cópia local do %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Espaço insuficiente no diretório de download %s\n"
+-"    * livre   %s\n"
+-"    * necessário %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "O cabeçalho não está completo."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2536,62 +2651,64 @@ msgstr ""
+ "O cabeçalho não está no cache local e o modo de somente cache está "
+ "habilitado. Não foi possível baixar o %s."
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "A chave pública para o %s não está instalada"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problema ao abrir o pacote %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "A chave pública para o %s não é confiável"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "O pacote %s não está assinado"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Não foi possível remover %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s removido"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Não foi possível remover %s arquivo %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s arquivo %s removido"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s arquivos removidos"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s arquivo removido"
++msgstr[1] "%d %s arquivos removidos"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Mais de uma correspondência idêntica no saco para %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Nada corresponde ao %s.%s %s:%s-%s a partir da atualização"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2599,121 +2716,123 @@ msgstr ""
+ "searchPackages() será removida em uma futura versão do Yum. Ao invés disso, "
+ "use a searchGenerator().\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Pesquisando por %d pacotes"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Procurando %d pacote"
++msgstr[1] "Procurando %d pacotes"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "pesquisando pelo pacote %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "pesquisando nas entradas do arquivo"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "pesquisando nas entradas dos fornecimentos"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Nenhum dado de grupos disponível para os repositório configurados"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Não existe nenhum grupo de nome %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "o pacote %s não foi marcado no grupo %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Adicionando o pacote %s do grupo %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Nenhum pacote de nome %s disponível para ser instalado"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "Aviso: O Grupo %s não tem nenhum pacote."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+-msgstr ""
++msgstr "O grupo %s tem %u pacotes condicionais, que devem ser instalados"
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "A tupla %s do pacote não pôde ser encontrada no packagesack"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "A tupla %s do pacote não pôde ser localizada no rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nenhum pacote encontrado para %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "O pacote de objeto não era uma instância de pacote de objeto"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nada especificado para instalar"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Verificando por fornecimento virtual ou de arquivo para %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Nenhuma correspondência para o argumento: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Pacote %s instalado, mas não disponível"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Nenhum pacote disponível para instalar"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Pacote: %s - já está no conjunto de transações"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "O pacote %s foi tornado obsoleto pelo %s, o qual já está instalado"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2721,83 +2840,89 @@ msgid ""
+ msgstr ""
+ "O pacote %s foi tornado obsoleto por %s, mas este não provê os requisitos."
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "O pacote %s foi tornado obsoleto por %s, tentando instalar %s ao invés disso"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "O pacote %s já está instalado em sua última versão"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "O pacote %s já está instalado. Verificando por uma atualização."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Atualizando tudo"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Pacote já obsoleto não será atualizado: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Nenhum pacote correspondente para atualização: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "O pacote já está obsoleto: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Não atualizando o pacote que está obsoleto: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Pacote já atualizado não será atualizado novamente: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nenhum pacote encontrado para remoção"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Nenhum pacote correspondente para remoção: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Ignorando o kernel em execução: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Removendo %s da transação"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Não foi possível abrir: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Examinando %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Não é possível instalar localmente o deltarpm: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2805,13 +2930,13 @@ msgstr ""
+ "Não foi possível adicionar o pacote %s à transação. %s não é uma arquitetura"
+ " compatível."
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Não é possível instalar o pacote % s. É obsoleto pelo pacote instalado %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2820,102 +2945,111 @@ msgstr ""
+ "O pacote %s não está instalado, não é possível atualizá-lo. Execute o yum "
+ "install para instalá-lo."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
++"Pacote %s.%s não instalado, não pode ser atualizado. Execute yum install "
++"para instalá-lo em vez disso."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Excluindo %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Marcando %s para ser instalado"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Marcando %s como uma atualização do %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: não atualiza o pacote instalado."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Não foi possível abrir o arquivo: %s. Ignorando."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problema na reinstalação: nenhum pacote encontrado para remoção"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problema na reinstalação: nenhum pacote %s encontrado para instalação"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Nenhum pacote disponível para ser desatualizado"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "O pacote %s permite múltiplas instalações, ignorando"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Nenhuma correspondência disponível para o pacote: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Somente a atualização está disponível para o pacote: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Falha ao desatualizar: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Falha ao atualizar: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+-msgstr ""
++msgstr "Recuperando chave de %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "A obtenção da chave GPG falhou:"
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
++"Assinatura da chave GPG na chave %s não combina com a chave CA para o "
++"repositório: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+-msgstr ""
++msgstr "Assinatura da chave GPG verificada em relação a chave(s) CA"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "A chave GPG de %s é inválida: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Falha na análise da chave GPG: ela não tem o valor %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2923,34 +3057,41 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"Importando %s chave 0x%s:\n"
++"Id do usuário: %s\n"
++"Pacote: %s (%s)\n"
++"De   : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"Importando %s chave 0x%s:\n"
++"Id do Usuário: \"%s\"\n"
++"De  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "A chave GPG em %s (0x%s) já está instalada"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Falha na importação da chave (código %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Chave importada com sucesso"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "Não instalar nenhuma das chaves"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2959,25 +3100,25 @@ msgstr ""
+ "As chaves GPG listadas para o repositório \"%s\" já estão instaladas, mas não estão corretas para este pacote.\n"
+ "Verifique se as URLs corretas das chaves estão configuradas para esse repositório."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "A importação da(s) chave(s) não ajudou, chave(s) errada(s)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "A chave GPG em %s (0x%s) já foi importada"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Falha na importação da chave"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "Não instalar nenhuma das chaves para o repositório %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2986,159 +3127,185 @@ msgstr ""
+ "As chaves GPG listadas para o repositório \"%s\" já estão instaladas, mas não estão corretas.\n"
+ "Verifique se as URLs das chaves estão configuradas corretamente para este repositório. "
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Não foi possível encontrar um espelho apropriado."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Foram encontrados erros ao baixar os pacotes."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Por favor, relate esse erro em %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Erros do teste de transação:"
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Não foi possível definir a cachedir: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
++"Dependências não resolvidas. Transações não resolvidas não serão salvas."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "Não foi possível salvar o arquivo de transação %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
++msgstr "Não foi possível acessar/ler a transação salva %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr "ignorando, conforme solicitado."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr "abortando."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+-msgstr ""
++msgstr "Não foi possível encontrar txmbr: %s da origem: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
++"ignorando, conforme pedido. Você deve rodar executar novamente o depsolve!"
++
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
+ 
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Plugins carregados: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Nenhum plugin correspondente para: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "O plugin \"%s\" não será carregado, pois está desabilitado"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "O plugin \"%s\" não pôde ser importado"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "O plugin \"%s\" não especifica a versão requerida da API"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "O plugin \"%s\" requer a API %s. A API suportada é a %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Carregando o plugin \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Dois ou mais plugins com o nome \"%s\" existem no caminho de pesquisa "
+ "plugins"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Arquivos de configuração %s não encontrado"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Não foi possível encontrar o arquivo de configuração para o plugin %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "O registro de comandos não é suportado"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "tem exigências faltando do"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "tem conflitos instalados"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s é uma duplicação do %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s foi tornado obsoleto por %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s provê %s mas não pôde ser achado"
+@@ -3147,6 +3314,17 @@ msgstr "%s provê %s mas não pôde ser achado"
+ msgid "Repackaging"
+ msgstr "Reempacotando"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Espaço insuficiente no diretório de download %s\n"
++"    * livre   %s\n"
++"    * necessário %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/pygettext.py b/po/pygettext.py
+index 276a433..7f13138 100644
+--- a/po/pygettext.py
++++ b/po/pygettext.py
+@@ -1,4 +1,5 @@
+ #!/usr/bin/python
++# coding=utf-8
+ # Originally written by Barry Warsaw <bwarsaw at python.org>
+ #
+ # minimally patched to make it even more xgettext compatible 
+diff --git a/po/ru.po b/po/ru.po
+index 52ba58b..5913e5d 100644
+--- a/po/ru.po
++++ b/po/ru.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Misha Shnurapet <shnurapet AT fedoraproject.org>, 2011
+-# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011
++# Translators:
++# Misha Shnurapet <shnurapet AT fedoraproject.org>, 2011.
++# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Russian (http://www.transifex.net/projects/p/yum/team/ru/)\n"
+ "MIME-Version: 1.0\n"
+@@ -18,122 +19,125 @@ msgstr ""
+ "Language: ru\n"
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Обновление"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Удаление"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Установка"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Исключено"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Обновлено"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Удалено"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Установлено"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Заголовка нет — ага?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Переупаковка"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Ошибка: неверный код выхода: %s для %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Удален: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Удаление"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Очистка"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Команда \"%s\" уже используется"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Настройка репозиториев"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Чтение локальных метаданных для репозиториев"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Ошибка в настройке: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Ошибка в параметре: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Установлено: %s-%s из %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Собрано    : %s из %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Передано   : %s из %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Необходимо задать команду"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Не найдена команда: %s Пожалуйста, воспользуйтесь %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Требование к носителю:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr " Необходимо по меньшей мере %dМБ на разделе %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] " Необходимо по меньшей мере %dМБ на разделе %s.\n"
++msgstr[1] ""
++msgstr[2] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,60 +145,60 @@ msgstr ""
+ "Сводка ошибок\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Попытка предпринята, делать нечего. Завершение."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Выход по запросу пользователя"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Загрузка пакетов:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Ошибка загрузки пакетов:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Проверка сценария"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ОШИБКА — необходимо обновить RPM для обработки:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "ОШИБКА при проверке сценария на этапе зависимостей:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "Следует обновить RPM"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Пожалуйста, сообщите об ошибке в %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Проверяем сценарий"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Проверка сценария завершена с ошибкой:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Проверка сценария прошла успешно"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Выполнение сценария"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -202,240 +206,271 @@ msgstr ""
+ "Отмена автоматического импорта ключей во время запуска без контроля.\n"
+ "Используйте \"-y\" для игнорирования."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Возможно, вы имели в виду: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Пакет %s%s%s доступен, но не установлен."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Пакета с названием %s%s%s не найдено."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Пакет(ы) для установки"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Выполнять нечего"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d пакеты отмечены для обновления"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Пакетов, отмеченных для обновления, нет."
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "Отмечено пакетов для синхронизации: %d"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Пакетов, отмеченных для синхронизации, нет"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d пакеты отмечены для удаления"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Пакетов, отмеченных для удаления, нет."
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Пакет(ы) для отката версии"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (из %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Установленный пакет %s%s%s%s недоступен."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Пакет(ы) для переустановки"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Пакеты не предоставлены"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Пакет(ы) для установки"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "Совпадений: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+-"  Название и описание совпадают только с %sonly%s, используйте «search all»,"
+-" чтобы искать везде."
++"  Показаны %sтолько%s совпадения по названиям и описаниям, для большего "
++"используйте «search all»."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+-"  Полное название и описание совпадают только с %sonly%s, используйте "
+-"«search all», чтобы искать везде."
++"  Показаны %sтолько%s полные совпадения по названиям и описаниям, для "
++"большего используйте «search all»."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Совпадений: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+-"  Название и описание совпадают с %smostly%s, используйте «search all», "
+-"чтобы искать везде."
++"  Показаны %sв основном%s совпадения по названияю и описанию, для большего "
++"используйте «search all»."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Внимание: совпадений для %s не найдено"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Совпадений не найдено"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Пакет для %s не найден"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Сброс источников:"
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Очистка всего"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Очистка заголовков"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Очистка пакетов"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Очистка xml метаданных"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Очистка кэша данных"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Очистка устаревшего кэша"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Очистка кэша данных базы RPM"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Сброс модулей"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Предупреждение: Ни одна группа не совпадает: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Установлены коллекции:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Установлены языковые пакеты:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Доступные коллекции:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Доступные языковые пакеты:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Выполнено"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Внимание: коллекции %s не существует."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Во всех указанных коллекциях пакеты для установки или обновления отсутствуют"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Пакет(ы) для установки"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Коллекции с названием %s не существует"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Нет пакетов для удаления из коллекций"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d Пакет(ы) для удаления"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Пакет %s уже установлен, пропускаем"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Исключение несовместимого пакета %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "Других %s не установлено, добавляем в список для возможной установки"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Опции модуля"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Ошибка команды: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -446,289 +481,293 @@ msgstr ""
+ "\n"
+ "%s: %s опцию необходимо указать с аргументом"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color возможное значение: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot должен указывать абсолютный путь: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "отобразить помощь и выйти"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "игнорировать ошибки"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "брать полностью из системного кэша, не обновлять его"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "расположение файла конфигурации"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "максимальное время ожидания команды"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "уровень отладочных сообщений"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ "показывать повторяющиеся в репозиториях пакеты, для команд list/search"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "уровень сообщений об ошибках"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "уровень отладочных сообщений для rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "работать без вывода сообщений"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "подробно описывать действия"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "Отвечать утвердительно на все вопросы"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "показать версию Yum и выйти"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "настройка корневой папки"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "включение одного и более репозиториев (поиск по шаблону поддерживается)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "выключение одного и более репозиториев (поиск по шаблону поддерживается)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "исключение пакета(ов) по имени или регулярному выражению"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "отключает исключения для конкретного репозитория или для всех"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "включить обработку устаревших во время обновления"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "отключить модули Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "отключить проверку подписи gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "отключить модуль по названию"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "включить модуль по названию"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "пропускать пакеты, с проблемами в зависимостях"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "Использовать ли цветовые схемы"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "установите значение $releasever в конфигурационном файле yum и в файлах "
+ "репозиториев (repo)"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "другие настройки и свойства источников"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "Янв"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "Фев"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "Мар"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "Апр"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "Май"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "Июн"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "Июл"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "Авг"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "Сен"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "Окт"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "Ноя"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "Дек"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Пробуем другое зеркало."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Название: %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Архитектура: %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Период: %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Версия: %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Выпуск: %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Объем: %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Источник: %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Из источника: %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Создатель: %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Время создания: %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Время сборки: %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Время установки: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Установил: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Изменил: %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Аннотация: "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "Ссылка: %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Лицензия: "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Описание: "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "да"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "нет"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Продолжить? [y/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -737,154 +776,157 @@ msgstr ""
+ "\n"
+ "Коллекция: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Код коллекции: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Описание: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Язык: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Обязательные пакеты:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Пакеты по умолчанию:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Опциональные пакеты:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Зависимые пакеты:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "пакет: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  У этого пакета нет зависимостей"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  зависимость: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Неудовлетворенная зависимость"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Совпадения с:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Лицензия    : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Имя файла   : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Другое      : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Произошла ошибка при подсчете общего объема загрузки"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Общий размер: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Объем загрузки: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Объем изменений: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Ошибка при подсчете объема установки"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Переустановка"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Откат версии"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Установка зависимостей"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Обновление зависимостей"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Удаление зависимостей"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Пропущено (ошибка зависимостей)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Не установлено"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Недоступно"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Пакет"
++msgid_plural "Packages"
++msgstr[0] "Пакет"
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Архитектура"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Версия"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Репозиторий "
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Размер"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     замена  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -895,57 +937,52 @@ msgstr ""
+ "Результат операции\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Установить %5.5s пакет(а,ов)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Установка "
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Обновить %5.5s пакет(а,ов)\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Удалить %5.5s пакет(а,ов)\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Переустановить %5.5s пакет(а,ов)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Переустановка"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Откатить %5.5s пакет(а,ов)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Откат версии"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Удалено"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Удалены зависимости"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Установлены зависимости"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Обновлены зависимости"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Заменено"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Неудача"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "двух"
+ 
+@@ -953,7 +990,7 @@ msgstr "двух"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -964,364 +1001,416 @@ msgstr ""
+ " Текущая загрузка отменена, %sпрервите (ctrl-c) повторно%s в течение %s%s%s секунд,\n"
+ "чтобы выйти.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "прервано пользователем"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Общий размер"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<unset>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Система"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Переход от %d к %d, т.к. сценарии пересекаются"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Сценарии отсутствуют"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Заданы неверный код сценария или пакеты"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Командная строка"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Вход пользователя"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Дата и время"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Действия"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Изменено"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Код действия не задан"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Код действия неверен"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Указанный код действия не найден"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Указано более одной операции!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Не задан код действия или пакет"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Откачено"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Старее"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Новее"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Код операции   :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Время начала   :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Начало rpmdb   :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u секунд)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u минут)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u часов)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u дней)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Конечное время :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Конец rpmdb    :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Пользователь   :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Код возврата   :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Прекращено"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Ошибки:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Неудача:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Успешно"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Команда:"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Имеется дополнительная информация: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Действие выполнено:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Пакеты изменены:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Пропущены пакеты:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Ошибки в rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Вывод сценария:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Ошибки:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Установка "
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Установка зависимостей"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Исключаем"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Удаление"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Переустановка"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Откат версии"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Обновление"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Время"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "За последний день"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "За последнюю неделю"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "За последние 2 недели"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "За последние 3 месяца"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "За последние 6 месяцев"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "За последний год"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Более года назад"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Действие %s не найдено"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Код операции:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Имеется информация о ранних действиях:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: По этому названию других данных нет"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "для установки"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "обновление"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "для удаления"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "для переустановки"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "откат"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "исключение"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "для обновления"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "как недействительный"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Пакет %s.%s %s:%s-%s помечен %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Проверка сценария"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Перепроверка зависимостей с новыми параметрами."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Проверка зависимостей окончена"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Обработка зависимостей: %s пакета: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Сохранен пакет: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Неразрешённая зависимость: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Пакет: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1330,7 +1419,7 @@ msgstr ""
+ "\n"
+ "    Необходимо: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1339,7 +1428,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1348,7 +1437,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1357,86 +1446,86 @@ msgstr ""
+ "        Не найдено"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Обновил"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Откатил"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Заменил"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Доступно"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Обработка конфликта: %s конфликтует с %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Заполнение списка действий выбранными пакетами. Подождите, пожалуйста."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Загрузка заголовка %s для включения в список."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Запуск"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Ожидание"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Непрерываемый"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Зомби"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Трассировано/Остановлено"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Неизвестно"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Другое приложение: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Другое приложение: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Память   : %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Запущено : %s — %s назад"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Статус   : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1446,7 +1535,7 @@ msgstr ""
+ "\n"
+ "Выход по запросу пользователя"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1456,7 +1545,7 @@ msgstr ""
+ "\n"
+ "Выход из-за разрыва связи"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1467,41 +1556,41 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr "Другое приложение удерживает данные yum; выход согласно exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Ошибка PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Ошибка Yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Ошибка: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Вы можете попробовать --skip-broken чтобы обойти проблему"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Вы можете попробовать запустить: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Неизвестная ошибка(ошибки): Код выхода: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1509,7 +1598,7 @@ msgstr ""
+ "\n"
+ "Зависимости определены"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Выполнено!"
+ 
+@@ -1521,7 +1610,7 @@ msgstr " Сокращённое использование:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Для выполнения этой команды необходимы привилегии суперпользователя."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1551,57 +1640,57 @@ msgstr ""
+ "\n"
+ "Чтобы узнать больше, пожалуйста, свяжитесь с поставщиком дистрибутива или пакета.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Проблема с репозиторием: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Ошибка: Необходимо указать список пакетов для %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Ошибка: Необходим параметр для соответствия"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Ошибка: нужна коллекция или список групп"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Ошибка: очистка требует опции: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Ошибка: неверный параметр очистки: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Нет аргумента для командной оболочки"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Имя файла принятое для командной оболочки: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ "Файл %s переданный в качестве аргумента для командной оболочки не "
+ "существует."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Ошибка: более чем один файл указан в качестве аргумента для командной "
+ "оболочки."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1611,306 +1700,299 @@ msgstr ""
+ "Выполните «yum repolist all» для вывода списка доступных.\n"
+ "Включение производится командой yum-config-manager --enable [источник]"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "ПАКЕТ..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Установка пакета(ов) в систему"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Подготовка к установке"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[ПАКЕТ...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Обновление пакета(ов) в системе"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Подготовка к обновлению"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "Обновить установленные пакеты до новейших доступных версий"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Подготовка к синхронизации"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Отобразить информацию о пакете или о коллекции пакетов"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Установленные пакеты"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Доступные пакеты"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Дополнительные пакеты"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Обновленные пакеты"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Исключенные пакеты"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Недавно добавленные пакеты"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Совпадений среди пакетов не найдено"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Вывести список пакетов или коллекций пакетов"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Удаление пакета(ов) из системы"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Подготовка к удалению"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Подготовка к обработке коллекции"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Коллекций пакетов к обработке нет"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Список доступных коллекций пакетов"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Установка коллекции пакетов в систему"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Удаление коллекции пакета(ов) из системы"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Показать информацию о коллекции пакетов"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Создание кэша метаданных"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Создание кэша для всех метаданных файлов."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Это займет немного времени, в зависимости от скорости компьютера"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Кэш метаданных создан"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Удаление кэшированных данных"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Найти пакет по заданному значению"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Проверка доступных обновлений пакетов"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Поиск информации о пакете по заданной строке"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Поиск пакетов:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Обновить пакеты, учитывая недействительные"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Приготовления к процессу обновления"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Установка локального пакета"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Подготовка действий с локальным пакетом"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Определяет какой пакет предоставляет данную зависимость"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Поиск зависимых пакетов"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Запуск интерактивной командной оболочки yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Настройка командной оболочки Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Отображение зависимостей пакета"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Поиск зависимостей:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Отобразить сконфигурированные репозитории ПО"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "включено"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "отключено"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Код репозитория      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Имя репозитория      : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Состояние репозитория: "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Ревизия репозитория  : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Метки репозитория    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Метки дистрибутива   : "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Репозиторий обновлен : "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Пакеты репозитория   : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Размер репозитория   : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "baseurl репозитория  : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "metalink репозитория : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Обновлено          : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Зеркала репозитория  : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Никогда (последний: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "момент (осталось:%s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s секунд(а) (осталось: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Окончание срока репозитория: "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Исключения репозитория     : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Включено в репозиторий     : "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Исключено из репозитория   : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Файл репозитория:"
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "Идентификатор репозитория"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "состояние"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "репозиторий"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Отобразить подсказку к использованию"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Помощь недоступна для %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1920,7 +2002,7 @@ msgstr ""
+ "\n"
+ "альтернативные названия: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1930,85 +2012,125 @@ msgstr ""
+ "\n"
+ "альтернативное название: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Подготовка к повторной установке"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "переустановка пакета"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Подготовка к откату версии"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "откат к предыдущей версии пакета"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Отображает версию для вашей архитектуры и/или доступные репозитории."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Группы версий Yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Коллекция   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Пакеты      :"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Установлен(ы):"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Установлены коллекции:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Доступен(ы):"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Доступны коллекции   :"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Отобразить (или использовать) журнал операций"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Неверная подкоманда журнала, используйте: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Нет доступа к спискам предыдущих действий."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Проверка проблем в базе данных RPM"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "загрузить сохранённый сценарий из файла"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Не указан файл сценария."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "загрузка сценария из %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Сценарий загружен из %s с %s членами"
+@@ -2019,26 +2141,32 @@ msgstr "Сценарий загружен из %s с %s членами"
+ msgid " Yum checks failed: %s"
+ msgstr " Неудачных проверок Yum: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "Еще одно приложение, в настоящее время блокирует Yum. Подождите..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "Не удалось создать файл блокировки; завершение"
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr "Еще одно приложение, в настоящее время блокирует Yum. Подождите..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Разрешение зависимостей"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+-msgstr "Сценарий сохранён, запускайте командой: yum-load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
++msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2048,74 +2176,74 @@ msgstr ""
+ "\n"
+ "Выход по запросу пользователя"
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() будет устранен в следующей версии Yum\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Составление списка действий до включения класса конфигурации"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Неверный tsflag в конфигурационном файле: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Поиск набора пакетов для зависимости: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Член: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s преобразован для установки"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Добавление пакета %s в режиме %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Удаление пакета %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s требуется: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s требуется %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Необходимое требование уже было было уже найдено, сжульничаем"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Требуемая зависимость не является именем пакета. Поиск: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Возможный поставщик: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Режим %s для поставщика %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Режим для пакета, предоставяющего %s: %s"
+@@ -2123,115 +2251,115 @@ msgstr "Режим для пакета, предоставяющего %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Пробую обновить %s чтобы решить зависимость"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Не найдено путей обновления для %s. Срыв!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s пакет необходимый для %s был помечен для удаления"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: Замена устаревшего %s пакета пакетом %s чтобы разрешить зависимости."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Обновление %s для разрешения зависимостей."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Не удается найти путь обновления зависимости для: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Быстро подобран пакет %s в качестве требуемого для %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "Зависимый пакет %s уже установлен и будет пропущен"
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Пакет %s в сценарии новее доступного"
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Более новый пакет %s уже установлен в систему."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s уже в списке к действию, пропускаем его"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: %s отмечен как обновление для %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Отмечен %s чтобы установить %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Успешно — пустой сценарий"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Перезапуск цикла"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Завершение процесса разрешения зависимостей"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Успешно — зависимости определены"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Проверка зависимостей для %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "поиск %s требуется для %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Запуск compare_providers() для %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "Лучший архив в %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s исключает %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2240,142 +2368,142 @@ msgstr ""
+ "Сравнение archdist %s с %s в %s\n"
+ "  Лучший: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "общий источник RPM %s и %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "базовый пакет %s установлен для %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "Общий префикс %s для %s и %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "минимально: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr "Лучший: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr "Худший (c %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Лучший выбор: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Источник %r: Сбой обработки настроек: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Репозиторий %r  не имеет названия в конфигурации, используется ID"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "модули уже загружены"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Чтение локальной базы данных RPM"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Настройка набора пакетов"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "Объект репозитория %s не имеет метода _resetSack\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "поэтому этот репозиторий не может быть сброшен.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Построение объекта обновлений"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() будет устранен в следующей версии Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Получение метаданных коллекции"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Добавление файла коллекций из репозитория: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Ошибка добавления файла коллекций для репозитория: %s — %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Ни в одном репозитории нет доступных коллекций"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Загрузка метаданных меток пакета"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Добавление меток из репозитория: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Ошибка добавление меток пакета для репозитория: %s — %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Импорт дополнительной информации о списке файлов"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Программа %s%s%s найдена в пакете yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2383,21 +2511,21 @@ msgstr ""
+ "Остались незавершенные действия. Возможно, сначала следует выполнить yum-"
+ "complete-transaction для их завершения."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Поиск ненужных остаточных зависимостей"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Защищённые версии multilib: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Попытка удаления защищенного «%s»"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2405,86 +2533,89 @@ msgstr ""
+ "\n"
+ "Пакеты пропущены из-за проблем с зависимостями:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s из %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr "** Предварительно ошибок в rpmdb: %d, «yum check» выдает следующее:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "ПРЕДУПРЕЖДЕНИЕ: база данных RPM была изменена вне yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "недостающие зависимости"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "установленный конфликтующий пакет"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr "Внимание: в ходе операции возникли некоторые некритические ошибки."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Операция не начата:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Невозможно выполнить действие."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Невозможно удалить файл сценария %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s должен был быть установлен, но не был установлен!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s должен был быть удален, но не был удален!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Невозможно открыть блокировку %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Невозможно проверить активен ли процесс %s"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Заблокировано %s: другая копия запущена pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Вы не можете создать блокировку %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2493,40 +2624,29 @@ msgstr ""
+ "Пакет не соответствует предложенному для загрузки.\r\n"
+ "Предлагается запустить run yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Невозможно проверить контрольную сумму"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Пакет не совпадает с контрольной суммой"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "проверка контрольной суммы неудачна, но кэширование включено для %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "использование локальной копии %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Недостаточно места в директории %s\n"
+-"    * свободно   %s\n"
+-"    * необходимо %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Заголовок не полный."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2534,62 +2654,65 @@ msgstr ""
+ "Заголовок не в локальном кэше. Включен режим только из кэша. Невозможно "
+ "загрузить %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Публичный ключ для %s не установлен"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Проблема открытия пакета %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Публичный ключ для %s не заслуживает доверия"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Пакет %s не подписан"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Невозможно удалить %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s удален(ы)"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Невозможно удалить %s файл %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s файл %s удален"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s файлы удалены"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Более одного идентичных совпадений найдено в наборе для %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Совпадений не найдено %s.%s %s:%s-%s из обновлений"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2597,56 +2720,59 @@ msgstr ""
+ "searchPackages() будет убрано в следующей версии Yum."
+ "                          Используйте searchGenerator() взамен.  \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Поиск %d пакетов"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "поиск пакета %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "поиск среди файлов"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "поиск по содержимому"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Для настроенных репозиториев данных коллекций нет"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Коллекции с названием %s не существует"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "пакет %s не отмечен в коллекции %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Добавление пакета %s из коллекции %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Пакет с именем %s не доступен для установки"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Предупреждение: Группа %s не имеет никаких пакетов."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+@@ -2655,147 +2781,153 @@ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Кортеж пакетов %s не найден в наборе пакетов"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Кортеж пакетов %s не найден в базе RPM"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Неверный флаг версии от: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Пакет %s не найден"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Package Object не является экземпляром объекта пакета"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Ничего не отмечено для установки"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Проверка виртуального провайдера или файлового провайдера для %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Совпадений с %s не найдено."
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Пакет %s уже установлен и недоступен"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Нет доступных для установки пакетов"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Пакет: %s — уже в списке к действию"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Пакет %s недействителен из-за установленного %s"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr "Пакет %s заменен %s, но последний не отвечает зависимостям"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Пакет %s недействителен из-за %s, попытка установки %s взамен"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Пакет %s уже установлен, и это последняя версия."
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Пакет %s уже установлен. Проверка обновлений."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Полное обновление"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Устаревший и уже необновляемый пакет: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Пакет уже устарел: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Устаревший необновляемый пакет: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Необновленный пакет, который был обновлен ранее: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Нет пакетов для удаления"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Пропуск выполняющегося ядра: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Исключение %s из списка действий"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Невозможно открыть: %s. Пропуск."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Проверка %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Нельзя произвести localinstall deltarpm %s. Пропуск."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2803,12 +2935,12 @@ msgstr ""
+ "Невозможно добавить пакет %s в список действий. Несовместимая архитектура: "
+ "%s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "Установка пакета %s невозможна. Его заменил установленный пакет %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2817,7 +2949,7 @@ msgstr ""
+ "Пакет %s не установлен, невозможно обновить его. Запустите yum install для "
+ "его установки."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2826,96 +2958,101 @@ msgstr ""
+ "Пакет %s.%s не установлен, не возможно его обновить. Запустите yum install "
+ "чтобы установить вместо него."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Исключаем %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s отмечен для установки"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s отмечен как обновление для %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: не обновляет установленный пакет."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Невозможно открыть файл %s. Пропуск."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Проблема при переустановке: не найден пакет для удаления"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Проблема при переустановке: пакет %s не найден для установки"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Пакеты для отката версии отсутствуют"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Пакет %s может быть повторно установлен, пропуск"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Пакеты недоступны: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Только переход к следующей версии доступен для пакета: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Ошибка отката версии: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Получение ключа из %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Неудача получения ключа GPG:"
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ "Подпись GPG ключа на ключе %s не совпадает с CA ключом для репозитория: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "Подпись GPG ключа проверена через CA ключ(и)"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Неверный GPG ключ %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Ошибка обработки GPG ключа: ключ не имеет значения %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2928,7 +3065,7 @@ msgstr ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2939,25 +3076,25 @@ msgstr ""
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG ключ %s (0x%s) уже установлен"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Неудача импорта ключа (code %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Импорт ключа успешно завершен"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Не установлены какие-либо ключи"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2966,25 +3103,25 @@ msgstr ""
+ "GPG ключи включены для репозитория \"%s\", но они не является правильными для данного пакета.\n"
+ "Пожалуйста, проверьте правильно ли настроены URL ключей для данного репозитория."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Импорт ключа(ключей) не помог, неверный ключ(ключи)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG ключ из %s (0x%s) уже был импортирован"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Импорт ключа неудачен"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Не установлены какие-либо ключи для репозитория %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2994,157 +3131,181 @@ msgstr ""
+ "\r\n"
+ "Убедитесь в правильности заданных URL с ключами для этого источника."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Не удается найти подходящее зеркало"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Были обнаружены ошибки во время загрузки пакетов."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Пожалуйста, сообщите об этой ошибке в %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Ошибки проверки сценария:"
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Невозможно задать кэш-папку: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr "Зависимости не определены. Действие не будет сохранено."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Не удалось сохранить файл сценария %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Не удалось прочесть сохранённый сценарий %s : %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "Версия базы данных RPM не совпала с версией сценария,"
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " игнорирование, как потребуется"
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " прерывание"
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "tsflags не найдены или не целочисленные."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Найден txmbr в неопределенном состоянии: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Не найден txmbr: %s в состоянии %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Не найден txmbr: %s %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Отсутствует часть сценария, нарушены связи, или сценарий изменился,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " пропущено по требованию. Проверьте зависимости!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Загружены модули: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Нет модуля: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Модуль \"%s\" не был загружен, поскольку отключен"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Невозможен импорт модуля \"%s\""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Модулем \"%s\" не указана требуемая версия API"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Модуль \"%s\" требует API %s. Поддерживаемая API — %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Загрузка модуля \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "В каталоге модулей обнаружено два или более с названием \"%s\""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Конфигурационный файл %s не найден"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Не найден файл настройки модуля %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "регистрация команд не поддерживается"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "имеет недостающие зависимости от"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "конфликтует с установленными"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s совпадает с %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s заменен на %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s предоставляет %s, но он не найден"
+@@ -3153,6 +3314,17 @@ msgstr "%s предоставляет %s, но он не найден"
+ msgid "Repackaging"
+ msgstr "Переупаковка"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Недостаточно места в директории %s\n"
++"    * свободно   %s\n"
++"    * необходимо %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/sr.po b/po/sr.po
+index 351d6db..ee0fdcb 100644
+--- a/po/sr.po
++++ b/po/sr.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -16,122 +17,125 @@ msgstr ""
+ "Language: sr\n"
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Ажурирам"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Бришем"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Инсталирам"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Превазиђени"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Ажурирани"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Обрисани"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Инсталирани"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Нема заглавља - хм?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Поновно паковање"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Грешка: погрешно излазно стање: %s за %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Обрисано: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Уклањам"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Чишћење"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Наредба „%s“ је већ дефинисана"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Постављам ризнице"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Читам метаподатке ризница из локалних датотека"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Грешка при подешавању: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Грешка у опцијама: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Инсталиран : %s-%s %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Направио/ла: %s %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Објавио/ла : %s %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Морате да унесете неку команду"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Захтеви диска:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -139,60 +143,60 @@ msgstr ""
+ "Сажетак грешака\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Покушавам да извршим трансакцију али нема шта да се ради. Излазим."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Излазим на команду корисника"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Преузимам пакете:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Грешка при преузимању пакета:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Пријавите ову грешку у %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Извршавам проверу трансакције"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Грешка при провери трансакције:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Провера трансакције је успела"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Извршавам трансакцију"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -200,236 +204,267 @@ msgstr ""
+ "Одбијам да аутоматски увезем кључеве када се извршавање не надгледа.\n"
+ "За превазилажење овога користите „-y“."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Можда сте мислили: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "%s%s%s пакет је доступан, али није инсталиран."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Не постоји доступан пакет %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Пакет(и) који ће се инсталирати"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Нема шта да се ради"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d пакети означени за ажурирање"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Нема пакета означених за ажурирање"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d пакети означени за уклањање"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Нема пакета означених за уклањање"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Пакет(и) који ће се уназадити"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Пакет(и) који ће се поново инсталирати"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Ниједан пакет није добављен"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Пакет(и) који ће се инсталирати"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Упозорење: није нађено подударање за %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Нису пронађена подударања"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Нису пронађени пакети за %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Чистим све"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Чистим заглавља"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Чистим пакете"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Чистим xml метаподатке"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Чистим кеш базе података"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Чистим expire-cache метаподатке"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Чистим додатке"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Инсталиране групе:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Доступне групе:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Урађено"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Упозорење: група %s не постоји."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Нема доступних пакета за инсталацију или ажурирање у свим захтеваним групама"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d пакет(и) за инсталацију"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Не постоји група под именом %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Нема пакета за уклањање из група"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d  пакет(и) за уклањање"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Пакет %s је већ инсталиран, прескачем га"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Уклањам неупоредив пакет %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Не постоји инсталиран други %s, додајем га у списак за потенцијалну "
+ "инсталацију"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Опције додатка"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Грешка командне линије: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -440,285 +475,289 @@ msgstr ""
+ "\n"
+ "%s: %s опција захтева аргумент"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color прима један од следећих: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "прикажи ову помоћну поруку и изађи"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "буди толерантан на грешке"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "место датотеке подешавања"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "најдуже време чекања на команду"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "ниво излазног приказа за проналажење грешака"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ "приказуј дупликате, у ризницама, у командама за излиставање/претраживање"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "ниво излазног приказа грешака"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "тиха радња"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "опширна радња"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "одговори са да на сва питања"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "прикажи Yum верзију и изађи"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "постави корени директоријум инсталације"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "укључи једну или више ризница (скраћенице су дозвољене)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "искључи једну или више ризница (скраћенице су дозвољене)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "изузми пакет(е) по имену или глобу"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "искључи изузимање из главног скупа, за ризницу или за све"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "укључи обраду застарелих пакета у току ажурирања"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "искључи додатке за Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "искључи проверу gpg потписа"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "искључи додатке по имену"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "укључи додатке по имену"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "прескочи пакете који имају проблема са решавањем зависности"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "контролише да ли се користи боја"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "јан"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "феб"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "мар"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "апр"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "мај"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "јун"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "јул"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "авг"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "сеп"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "окт"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "нов"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "дец"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Покушавам други одраз."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Ризница     : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "УРЛ         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Опис        : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "d"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "da"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ne"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Да ли је ово у реду [d/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -727,154 +766,157 @@ msgstr ""
+ "\n"
+ "Група: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " ИБ групе: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Опис: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Обавезни пакети:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Подразумевани пакети:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Изборни пакети:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Условљени пакети:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "пакет: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Не постоје зависности овог пакета"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  зависност: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Незадовољена зависност"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Повезан из  :"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Лиценца     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Име датотеке: %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Остало      : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Догодила се грешка при рачунању укупне величине за преузимање"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Укупна величина: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Укупна величина за преузимање: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Инсталирам због зависности"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Ажурирам због зависности"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Уклањам због зависности"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Прескочено (проблеми са зависностима)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Пакет"
++msgid_plural "Packages"
++msgstr[0] "Пакет"
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Архитектура"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Верзија"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Ризница"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Величина"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -882,57 +924,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Уклоњено"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Зависност уклоњена"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Зависност инсталирана"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Зависност ажурирана"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Замењено"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Неуспех"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "два"
+ 
+@@ -940,7 +977,7 @@ msgstr "два"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -948,471 +985,523 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "прекид од стране корисника"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Укупно"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "инсталиран"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "обрисан"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "ажуриран"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "превазиђен"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Извршава се провера трансакције"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Поновно покретање разрешавања зависности са новим променама."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Завршено је разрешавање зависности"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Обрађујем зависност: %s за пакет: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Неразрешена зависност: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Сукоб при обради: %s се сукоби са %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Попуњавам скуп трансакције са изабраним пакетима. Молим вас, сачекајте."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Преузимам заглавље за %s ради паковања у скуп трансакције."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Извршава се"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Успаван"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Зомби"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Праћен/заустављен"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Непознат"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Други програм је: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Други програм је: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Меморија: %5s RSS (%5sБ VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Покренут: %s - %s раније"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Стање   : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1422,7 +1511,7 @@ msgstr ""
+ "\n"
+ "Излазим када корисник откаже"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1432,7 +1521,7 @@ msgstr ""
+ "\n"
+ "Излазим када се сломи цев"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1440,42 +1529,42 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Грешка: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Можете да пробате употребу --skip-broken опције ради заобилажења проблема"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Непозната грешка(е): излазни код: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1483,7 +1572,7 @@ msgstr ""
+ "\n"
+ "Зависности су разрешене"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Завршено!"
+ 
+@@ -1495,7 +1584,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Морате бити root корисник да бисте извршили ову команду."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1525,362 +1614,355 @@ msgstr ""
+ "\n"
+ "За више информација контактирајте добављача ваше дистрибуције или пакета.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Грешка: потребно је да додате списак пакета за %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Грешка: потребно је придружити ставку"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Грешка: потребна је група или списак група"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Грешка: clean захтева опцију: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Грешка: погрешан clean аргумент:%r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Не постоји аргумент за командно окружење"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Име датотеке је прослеђено командном окружењу: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ "Не постоји датотека %s, која је прослеђена као аргумент командном окружењу."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Грешка: више од једне датотеке је прослеђено као аргумент командном "
+ "окружењу."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "ПАКЕТ..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Инсталирајте пакет или пакете на ваш систем"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Постављам процес инсталације"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[ПАКЕТ...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Ажурирај пакет или пакете на вашем систему"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Постављам процес ажурирања"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Прикажи детаље о сваком пакету или групи пакета"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Инсталирани пакети"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Доступни пакети"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Додатни пакети"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Ажурирани пакети"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Превазиђени пакети"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Недавно додати пакети"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Не постоје одговарајући пакети за излиставање"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Излистај пакете или групе пакета"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Уклоните пакет или пакете са вашег система"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Постављам процес уклањања"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Постављам процес за групе"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Не постоји група над којом се може извршити команда"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Излистај доступне групе пакета"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Инсталирајте пакете у групи на вашем систему"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Уклоните пакете у групи са вашег система"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Прикажи детаље о групи пакета"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Направи кеш са метаподацима"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Правим кеш датотеке за све датотеке са метаподацима."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Ово може да потраје у зависности од брзине вашег рачунара"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Направљен је кеш са метаподацима"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Уклони кеширане податке"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Пронађи који пакет пружа дату вредност"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Проверите да ли су доступна ажурирања пакета"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Претражите детаље о пакету за задату ниску"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Претражујем пакете: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Ажурирајте пакете узимајући превазиђене у обзир"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Постављам процес надградње"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Инсталирај локални RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Постављам процес локалних пакета"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Одреди који пакети пружају дату зависност"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Претражујем пакете у потрази за зависностима:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Извршавај интерактивно yum командно окружење"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Постављам yum командно окружење"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Излистај зависности пакета"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Тражим зависности: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Прикажи подешене софтверске ризнице"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "укључена"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "искључена"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Ревизија ризнице     : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Дистро ознаке ризнице: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Металинк ризнице     : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Ажурирано          : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "репо id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "статус"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "репо име"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Прикажи корисну поруку о употреби"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Није доступна помоћ за %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1890,7 +1972,7 @@ msgstr ""
+ "\n"
+ "псеудоними: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1900,85 +1982,125 @@ msgstr ""
+ "\n"
+ "псеудоним: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Постављам процес поновне инсталације"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "поновно инсталирам пакет"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Постављам процес уназађивања"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "уназади пакет"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1989,28 +2111,34 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Неки други програм тренутно држи yum закључаним; чекам да тај програм "
+ "изађе..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Разрешавам зависности"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2020,74 +2148,74 @@ msgstr ""
+ "\n"
+ "Излазим када корисник откаже."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Постављам TransactionSets пре него што се подигне класа подешавања"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Погрешан tsflag у датотеци подешавања: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Претражујем pkgSack за зависност: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Члан: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s пребачен за инсталацију"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Додајем пакет %s у начину рада %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Уклањам пакет %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s захтева: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Потребан захтев је већ потражен, обмањујем"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Потребан захтев није име пакета. Тражим: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Могући снабдевач: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Режим је %s за снабдевача %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Режим за пакет који снабдева %s: %s"
+@@ -2095,114 +2223,114 @@ msgstr "Режим за пакет који снабдева %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s пакет захтева да %s буде означен за брисање"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: мењам %s са %s ради разрешавања зависности."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: ажурирам %s ради разрешавања зависности."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Не могу да пронађем путању ажурирања за зависност за: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Брзо повезивање пакета %s као захтева за %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s је у пруженим пакетима али је већ инсталиран, уклањам га."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Потенцијално разрешавање пакета %s има новији примерак у ts-у."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Потенцијално разрешавање пакета %s има инсталиран новији примерак."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s је већ у ts-у, прескачем га"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: означавам %s као ажурирање за %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: означавам %s као инсталацију за %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Успех - празна трансакција"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Поново покрећем петљу"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Завршетак процеса зависности"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Успех - зависности су разрешене"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Проверавам зависности за %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "тражим %s као захтев за %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Покрећем compare_providers() за %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "боља архитектура у пакету %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s превазилази %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2211,142 +2339,142 @@ msgstr ""
+ "archdist упоредио %s са %s на %s\n"
+ "  Победник: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "заједнички изворни rpm %s и %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "заједнички префикс %s између %s и %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Најбољи редослед: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Ризници %r недостаје име у подешавањима, користим id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "већ иницијализовани додаци"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Читам локални RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Постављам групе пакета"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "репо објекту за репо %s недостаје a _resetSack метода\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "због тога се овај репо не може вратити на почетну поставку.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Изграђујем објекат ажурирања"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() неће бити присутна у будућим верзијама Yum-а.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Добављам метаподатке групе"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Додајем датотеку групе из ризнице: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Није успело додавање датотеке групе за ризницу: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Не постоји група која је доступна у било којој ризници"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Увозим додатне информације о списковима датотека"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2354,21 +2482,21 @@ msgstr ""
+ "Остале су недовршене трансакције. Можда би прво требало да извршите yum-"
+ "complete-transaction да бисте их завршили."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2376,130 +2504,122 @@ msgstr ""
+ "\n"
+ "Пакети су прескочени због проблема са зависностима:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s из %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Упозорење: дошло је до грешке у скриптици или неке друге некритичне грешке "
+ "током трансакције."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Није успело уклањање датотеке трансакције %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Нисам у могућности да проверим да ли је PID %s активан"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Постоји закључавање %s: друга копија се извршава као pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Не могу да извршим контролу суме"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Пакет нема одговарајући контролну суму"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "пакет нема одговарајућу вредност контролне суме или је за %s укључено "
+ "кеширање"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "користим локални %s умножак"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Недовољна количина простора у директоријуму %s за преузимање\n"
+-"    * слободно је %s\n"
+-"    * потребно је %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Заглавље није потпуно."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2507,62 +2627,65 @@ msgstr ""
+ "Заглавље није у локалном кешу и само начин рада са кеширањем је укључен. Не "
+ "могу да преузмем %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Јавни кључ за %s није инсталиран"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Проблем са отварањем пакета %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Јавни кључ за %s није поверљив"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Пакет %s није потписан"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Не могу да уклоним %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s је уклоњен"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Не могу да уклоним %s датотеку %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s датотека %s је уклоњена"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s датотеке су уклоњене"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Постоји више од једног идентичног слагања у групи за %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ништа се не слаже са %s.%s %s:%s-%s из ажурирања"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2570,216 +2693,225 @@ msgstr ""
+ "searchPackages() неће бити присутна у будућим Yum верзијама."
+ "                      Уместо ње користите searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Претражујем %d пакете"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "тражим пакет %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "тражим у уносима датотека"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "тражим у уносима достављача"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Нема доступних података о групама за подешене ризнице"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Не постоји група под именом %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "пакет %s није означен у групи %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Додајем пакет %s из групе %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Ниједан пакет под именом %s није доступан за инсталацију"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Група пакета %s није нађена у packagesack-у"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Нема пронађених пакета за %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Објекат пакета није био примерак објекта пакета"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Није одређено ништа за инсталацију"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Проверавам виртуелну доставу или доставу датотеке за %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Не постоји слагање за аргумент: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Пакет %s је инсталиран и није доступан"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Нема пакета доступних за инсталацију"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Пакет: %s  - већ је у скупу трансакције"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Пакет %s је замењен пакетом %s, покушавам да наместо инсталирам %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Већ је инсталирана најновија верзија пакета %s"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Пакет који се поклапа са %s је већ инсталиран. Проверавам за новију верзију."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Ажурирам све"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Не ажурирам пакете који су већ превазиђени: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Пакет је већ превазиђен: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Не ажурирам пакете који су већ ажурирани: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Ниједан пакет није одређен за уклањање"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Испитујем %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Не могу да додам пакет %s у трансакцију. Архитектура није усаглашена: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2788,103 +2920,108 @@ msgstr ""
+ "Пакет %s није инсталиран, не могу да га ажурирам. Извршите yum инсталацију "
+ "да бисте га инсталирали."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Изузимам %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Означавам %s за инсталацију"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Означавам %s као ажурирање за %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: не ажурира инсталирани пакет."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Не могу да отворим датотеку: %s. Прескачем је."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Проблем при поновној инсталацији: ниједан пакет није одређен за уклањање"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Нема пакета доступних за уназађивање"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Пакету %s су дозвољене многоструке инсталације, прескачем га"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Нема доступног одговарајућег пакета: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Само је надградња доступна за пакет: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Добављање GPG кључа није успело: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Рашчлањивање GPG кључа није успело: кључ нема вредност %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2893,7 +3030,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2901,25 +3038,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG кључ на %s (0x%s) је већ инсталиран"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Није успео увоз кључа (код %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Кључ је успешно увезен"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2928,184 +3065,208 @@ msgstr ""
+ "GPG кључеви излистани за „%s“ ризницу су већ инсталирани али нису одговарајући за овај пакет.\n"
+ "Проверите да ли су подешени одговарајући УРЛ-ови кључева за ову ризницу."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Увоз кључа(кључева) није помогао, погрешан кључ(кључеви)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG кључ на %s (0x%s) је већ увезен"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Није успео увоз кључа"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Не могу да пронађем одговарајући одраз."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Појавиле су се грешке за време преузимања пакета."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Пријавите ову грешку код %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Грешке при провери трансакције: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Учитани додаци: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Не постоји слагање за додатак: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Не учитавам додатак „%s“ пошто је искључен"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Додатак „%s“ не може да буде увезен"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Додатак „%s“ не одређује верзију захтеваног API-а"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Додатак „%s“ захтева API %s. Подржани API је %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Учитавам „%s“ додатак"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "У путањи за претраживање додатака постоје два или више додатака под именом "
+ "„%s“"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Датотека подешавања %s није пронађена"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Не могу да пронађем датотеку подешавања за додатак %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "регистрација команди није подржана"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3114,6 +3275,17 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr "Поновно паковање"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Недовољна количина простора у директоријуму %s за преузимање\n"
++"    * слободно је %s\n"
++"    * потребно је %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/sr at latin.po b/po/sr at latin.po
+index 2576fa8..0947531 100644
+--- a/po/sr at latin.po
++++ b/po/sr at latin.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+ "MIME-Version: 1.0\n"
+@@ -16,122 +17,125 @@ msgstr ""
+ "Language: sr at latin\n"
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Ažuriram"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Brišem"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Instaliram"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Prevaziđeni"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Ažurirani"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Obrisani"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Instalirani"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Nema zaglavlja - hm?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Ponovno pakovanje"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Greška: pogrešno izlazno stanje: %s za %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Obrisano: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Uklanjam"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Čišćenje"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Naredba „%s“ je već definisana"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Postavljam riznice"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Čitam metapodatke riznica iz lokalnih datoteka"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Greška pri podešavanju: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Greška u opcijama: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Instaliran : %s-%s %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Napravio/la: %s %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Objavio/la : %s %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Morate da unesete neku komandu"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Zahtevi diska:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -139,60 +143,60 @@ msgstr ""
+ "Sažetak grešaka\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Pokušavam da izvršim transakciju ali nema šta da se radi. Izlazim."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Izlazim na komandu korisnika"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Preuzimam pakete:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Greška pri preuzimanju paketa:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Prijavite ovu grešku u %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Izvršavam proveru transakcije"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Greška pri proveri transakcije:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Provera transakcije je uspela"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Izvršavam transakciju"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -200,237 +204,268 @@ msgstr ""
+ "Odbijam da automatski uvezem ključeve kada se izvršavanje ne nadgleda.\n"
+ "Za prevazilaženje ovoga koristite „-y“."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Možda ste mislili: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "%s%s%s paket je dostupan, ali nije instaliran."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Ne postoji dostupan paket %s%s%s."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paket(i) koji će se instalirati"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Nema šta da se radi"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paketi označeni za ažuriranje"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Nema paketa označenih za ažuriranje"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paketi označeni za uklanjanje"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Nema paketa označenih za uklanjanje"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paket(i) koji će se unazaditi"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paket(i) koji će se ponovo instalirati"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Nijedan paket nije dobavljen"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paket(i) koji će se instalirati"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Upozorenje: nije nađeno podudaranje za %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Nisu pronađena podudaranja"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Nisu pronađeni paketi za %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Čistim sve"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Čistim zaglavlja"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Čistim pakete"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Čistim xml metapodatke"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Čistim keš baze podataka"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Čistim expire-cache metapodatke"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Čistim dodatke"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Instalirane grupe:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Dostupne grupe:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Urađeno"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Upozorenje: grupa %s ne postoji."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Nema dostupnih paketa za instalaciju ili ažuriranje u svim zahtevanim "
+ "grupama"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d paket(i) za instalaciju"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Ne postoji grupa pod imenom %s"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Nema paketa za uklanjanje iz grupa"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d  paket(i) za uklanjanje"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paket %s je već instaliran, preskačem ga"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Uklanjam neuporediv paket %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Ne postoji instaliran drugi %s, dodajem ga u spisak za potencijalnu "
+ "instalaciju"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Opcije dodatka"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Greška komandne linije: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -441,285 +476,289 @@ msgstr ""
+ "\n"
+ "%s: %s opcija zahteva argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color prima jedan od sledećih: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "prikaži ovu pomoćnu poruku i izađi"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "budi tolerantan na greške"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "mesto datoteke podešavanja"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "najduže vreme čekanja na komandu"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nivo izlaznog prikaza za pronalaženje grešaka"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ "prikazuj duplikate, u riznicama, u komandama za izlistavanje/pretraživanje"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "nivo izlaznog prikaza grešaka"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "tiha radnja"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "opširna radnja"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "odgovori sa da na sva pitanja"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "prikaži Yum verziju i izađi"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "postavi koreni direktorijum instalacije"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "uključi jednu ili više riznica (skraćenice su dozvoljene)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "isključi jednu ili više riznica (skraćenice su dozvoljene)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "izuzmi paket(e) po imenu ili globu"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "isključi izuzimanje iz glavnog skupa, za riznicu ili za sve"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "uključi obradu zastarelih paketa u toku ažuriranja"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "isključi dodatke za Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "isključi proveru gpg potpisa"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "isključi dodatke po imenu"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "uključi dodatke po imenu"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "preskoči pakete koji imaju problema sa rešavanjem zavisnosti"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "kontroliše da li se koristi boja"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "maj"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "avg"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "dec"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Pokušavam drugi odraz."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Riznica     : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Opis        : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "d"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "da"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ne"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Da li je ovo u redu [d/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -728,154 +767,157 @@ msgstr ""
+ "\n"
+ "Grupa: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " IB grupe: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Opis: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Obavezni paketi:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Podrazumevani paketi:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Izborni paketi:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Uslovljeni paketi:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paket: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Ne postoje zavisnosti ovog paketa"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  zavisnost: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Nezadovoljena zavisnost"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Povezan iz  :"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licenca     : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Ime datoteke: %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Ostalo      : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Dogodila se greška pri računanju ukupne veličine za preuzimanje"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Ukupna veličina: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Ukupna veličina za preuzimanje: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Instaliram zbog zavisnosti"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Ažuriram zbog zavisnosti"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Uklanjam zbog zavisnosti"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Preskočeno (problemi sa zavisnostima)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paket"
++msgid_plural "Packages"
++msgstr[0] "Paket"
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Arhitektura"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Verzija"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Riznica"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Veličina"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -883,57 +925,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Uklonjeno"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Zavisnost uklonjena"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Zavisnost instalirana"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Zavisnost ažurirana"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Zamenjeno"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Neuspeh"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "dva"
+ 
+@@ -941,7 +978,7 @@ msgstr "dva"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -949,471 +986,523 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "prekid od strane korisnika"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Ukupno"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "instaliran"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "obrisan"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "ažuriran"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "prevaziđen"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Izvršava se provera transakcije"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Ponovno pokretanje razrešavanja zavisnosti sa novim promenama."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Završeno je razrešavanje zavisnosti"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Obrađujem zavisnost: %s za paket: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Nerazrešena zavisnost: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Sukob pri obradi: %s se sukobi sa %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ "--> Popunjavam skup transakcije sa izabranim paketima. Molim vas, sačekajte."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Preuzimam zaglavlje za %s radi pakovanja u skup transakcije."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Izvršava se"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Uspavan"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombi"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Praćen/zaustavljen"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Nepoznat"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Drugi program je: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Drugi program je: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Memorija: %5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Pokrenut: %s - %s ranije"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Stanje  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1423,7 +1512,7 @@ msgstr ""
+ "\n"
+ "Izlazim kada korisnik otkaže"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1433,7 +1522,7 @@ msgstr ""
+ "\n"
+ "Izlazim kada se slomi cev"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1441,42 +1530,42 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Greška: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ " Možete da probate upotrebu --skip-broken opcije radi zaobilaženja problema"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Nepoznata greška(e): izlazni kod: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1484,7 +1573,7 @@ msgstr ""
+ "\n"
+ "Zavisnosti su razrešene"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Završeno!"
+ 
+@@ -1496,7 +1585,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr "Morate biti root korisnik da biste izvršili ovu komandu."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1526,362 +1615,355 @@ msgstr ""
+ "\n"
+ "Za više informacija kontaktirajte dobavljača vaše distribucije ili paketa.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Greška: potrebno je da dodate spisak paketa za %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Greška: potrebno je pridružiti stavku"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Greška: potrebna je grupa ili spisak grupa"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Greška: clean zahteva opciju: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Greška: pogrešan clean argument:%r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Ne postoji argument za komandno okruženje"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Ime datoteke je prosleđeno komandnom okruženju: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ "Ne postoji datoteka %s, koja je prosleđena kao argument komandnom okruženju."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ "Greška: više od jedne datoteke je prosleđeno kao argument komandnom "
+ "okruženju."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Instalirajte paket ili pakete na vaš sistem"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Postavljam proces instalacije"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Ažuriraj paket ili pakete na vašem sistemu"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Postavljam proces ažuriranja"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Prikaži detalje o svakom paketu ili grupi paketa"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Instalirani paketi"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Dostupni paketi"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Dodatni paketi"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Ažurirani paketi"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Prevaziđeni paketi"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Nedavno dodati paketi"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Ne postoje odgovarajući paketi za izlistavanje"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Izlistaj pakete ili grupe paketa"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Uklonite paket ili pakete sa vašeg sistema"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Postavljam proces uklanjanja"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Postavljam proces za grupe"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Ne postoji grupa nad kojom se može izvršiti komanda"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Izlistaj dostupne grupe paketa"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Instalirajte pakete u grupi na vašem sistemu"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Uklonite pakete u grupi sa vašeg sistema"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Prikaži detalje o grupi paketa"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Napravi keš sa metapodacima"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Pravim keš datoteke za sve datoteke sa metapodacima."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Ovo može da potraje u zavisnosti od brzine vašeg računara"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Napravljen je keš sa metapodacima"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Ukloni keširane podatke"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Pronađi koji paket pruža datu vrednost"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Proverite da li su dostupna ažuriranja paketa"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Pretražite detalje o paketu za zadatu nisku"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Pretražujem pakete: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Ažurirajte pakete uzimajući prevaziđene u obzir"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Postavljam proces nadgradnje"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Instaliraj lokalni RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Postavljam proces lokalnih paketa"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Odredi koji paketi pružaju datu zavisnost"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Pretražujem pakete u potrazi za zavisnostima:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Izvršavaj interaktivno yum komandno okruženje"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Postavljam yum komandno okruženje"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Izlistaj zavisnosti paketa"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Tražim zavisnosti: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Prikaži podešene softverske riznice"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "uključena"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "isključena"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Revizija riznice     : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Distro oznake riznice: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Metalink riznice     : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Ažurirano          : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "repo id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "repo ime"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Prikaži korisnu poruku o upotrebi"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Nije dostupna pomoć za %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1891,7 +1973,7 @@ msgstr ""
+ "\n"
+ "pseudonimi: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1901,85 +1983,125 @@ msgstr ""
+ "\n"
+ "pseudonim: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Postavljam proces ponovne instalacije"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "ponovno instaliram paket"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Postavljam proces unazađivanja"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "unazadi paket"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1990,28 +2112,34 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr ""
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Neki drugi program trenutno drži yum zaključanim; čekam da taj program "
+ "izađe..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Razrešavam zavisnosti"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2021,74 +2149,74 @@ msgstr ""
+ "\n"
+ "Izlazim kada korisnik otkaže."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Postavljam TransactionSets pre nego što se podigne klasa podešavanja"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Pogrešan tsflag u datoteci podešavanja: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Pretražujem pkgSack za zavisnost: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Član: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s prebačen za instalaciju"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Dodajem paket %s u načinu rada %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Uklanjam paket %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s zahteva: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Potreban zahtev je već potražen, obmanjujem"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Potreban zahtev nije ime paketa. Tražim: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Mogući snabdevač: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Režim je %s za snabdevača %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Režim za paket koji snabdeva %s: %s"
+@@ -2096,114 +2224,114 @@ msgstr "Režim za paket koji snabdeva %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: %s paket zahteva da %s bude označen za brisanje"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: menjam %s sa %s radi razrešavanja zavisnosti."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: ažuriram %s radi razrešavanja zavisnosti."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Ne mogu da pronađem putanju ažuriranja za zavisnost za: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Brzo povezivanje paketa %s kao zahteva za %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "%s je u pruženim paketima ali je već instaliran, uklanjam ga."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Potencijalno razrešavanje paketa %s ima noviji primerak u ts-u."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Potencijalno razrešavanje paketa %s ima instaliran noviji primerak."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s je već u ts-u, preskačem ga"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: označavam %s kao ažuriranje za %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: označavam %s kao instalaciju za %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Uspeh - prazna transakcija"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Ponovo pokrećem petlju"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Završetak procesa zavisnosti"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Uspeh - zavisnosti su razrešene"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Proveravam zavisnosti za %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "tražim %s kao zahtev za %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Pokrećem compare_providers() za %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "bolja arhitektura u paketu %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s prevazilazi %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2212,142 +2340,142 @@ msgstr ""
+ "archdist uporedio %s sa %s na %s\n"
+ "  Pobednik: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "zajednički izvorni rpm %s i %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "zajednički prefiks %s između %s i %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Najbolji redosled: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Riznici %r nedostaje ime u podešavanjima, koristim id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "već inicijalizovani dodaci"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Čitam lokalni RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Postavljam grupe paketa"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "repo objektu za repo %s nedostaje a _resetSack metoda\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "zbog toga se ovaj repo ne može vratiti na početnu postavku.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Izgrađujem objekat ažuriranja"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() neće biti prisutna u budućim verzijama Yuma.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Dobavljam metapodatke grupe"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Dodajem datoteku grupe iz riznice: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Nije uspelo dodavanje datoteke grupe za riznicu: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Ne postoji grupa koja je dostupna u bilo kojoj riznici"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Uvozim dodatne informacije o spiskovima datoteka"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2355,21 +2483,21 @@ msgstr ""
+ "Ostale su nedovršene transakcije. Možda bi prvo trebalo da izvršite yum-"
+ "complete-transaction da biste ih završili."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2377,130 +2505,122 @@ msgstr ""
+ "\n"
+ "Paketi su preskočeni zbog problema sa zavisnostima:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s iz %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Upozorenje: došlo je do greške u skriptici ili neke druge nekritične greške "
+ "tokom transakcije."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Nije uspelo uklanjanje datoteke transakcije %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Nisam u mogućnosti da proverim da li je PID %s aktivan"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Postoji zaključavanje %s: druga kopija se izvršava kao pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Ne mogu da izvršim kontrolu sume"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paket nema odgovarajući kontrolnu sumu"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "paket nema odgovarajuću vrednost kontrolne sume ili je za %s uključeno "
+ "keširanje"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "koristim lokalni %s umnožak"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Nedovoljna količina prostora u direktorijumu %s za preuzimanje\n"
+-"    * slobodno je %s\n"
+-"    * potrebno je %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Zaglavlje nije potpuno."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2508,62 +2628,65 @@ msgstr ""
+ "Zaglavlje nije u lokalnom kešu i samo način rada sa keširanjem je uključen. "
+ "Ne mogu da preuzmem %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Javni ključ za %s nije instaliran"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problem sa otvaranjem paketa %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Javni ključ za %s nije poverljiv"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Paket %s nije potpisan"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Ne mogu da uklonim %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s je uklonjen"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Ne mogu da uklonim %s datoteku %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s datoteka %s je uklonjena"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s datoteke su uklonjene"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Postoji više od jednog identičnog slaganja u grupi za %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ništa se ne slaže sa %s.%s %s:%s-%s iz ažuriranja"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2571,216 +2694,225 @@ msgstr ""
+ "searchPackages() neće biti prisutna u budućim Yum verzijama."
+ "                      Umesto nje koristite searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Pretražujem %d pakete"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "tražim paket %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "tražim u unosima datoteka"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "tražim u unosima dostavljača"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Nema dostupnih podataka o grupama za podešene riznice"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Ne postoji grupa pod imenom %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "paket %s nije označen u grupi %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Dodajem paket %s iz grupe %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Nijedan paket pod imenom %s nije dostupan za instalaciju"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Grupa paketa %s nije nađena u packagesacku"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Nema pronađenih paketa za %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Objekat paketa nije bio primerak objekta paketa"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Nije određeno ništa za instalaciju"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Proveravam virtuelnu dostavu ili dostavu datoteke za %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Ne postoji slaganje za argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Paket %s je instaliran i nije dostupan"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Nema paketa dostupnih za instalaciju"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paket: %s  - već je u skupu transakcije"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Paket %s je zamenjen paketom %s, pokušavam da namesto instaliram %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Već je instalirana najnovija verzija paketa %s"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ "Paket koji se poklapa sa %s je već instaliran. Proveravam za noviju verziju."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Ažuriram sve"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Ne ažuriram pakete koji su već prevaziđeni: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paket je već prevaziđen: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Ne ažuriram pakete koji su već ažurirani: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Nijedan paket nije određen za uklanjanje"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Ispitujem %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ "Ne mogu da dodam paket %s u transakciju. Arhitektura nije usaglašena: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2789,103 +2921,108 @@ msgstr ""
+ "Paket %s nije instaliran, ne mogu da ga ažuriram. Izvršite yum instalaciju "
+ "da biste ga instalirali."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Izuzimam %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Označavam %s za instalaciju"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Označavam %s kao ažuriranje za %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: ne ažurira instalirani paket."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Ne mogu da otvorim datoteku: %s. Preskačem je."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ "Problem pri ponovnoj instalaciji: nijedan paket nije određen za uklanjanje"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Nema paketa dostupnih za unazađivanje"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Paketu %s su dozvoljene mnogostruke instalacije, preskačem ga"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Nema dostupnog odgovarajućeg paketa: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Samo je nadgradnja dostupna za paket: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Dobavljanje GPG ključa nije uspelo: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Raščlanjivanje GPG ključa nije uspelo: ključ nema vrednost %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2894,7 +3031,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2902,25 +3039,25 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG ključ na %s (0x%s) je već instaliran"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Nije uspeo uvoz ključa (kod %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Ključ je uspešno uvezen"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2929,184 +3066,208 @@ msgstr ""
+ "GPG ključevi izlistani za „%s“ riznicu su već instalirani ali nisu odgovarajući za ovaj paket.\n"
+ "Proverite da li su podešeni odgovarajući URL-ovi ključeva za ovu riznicu."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Uvoz ključa(ključeva) nije pomogao, pogrešan ključ(ključevi)?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG ključ na %s (0x%s) je već uvezen"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Nije uspeo uvoz ključa"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Ne mogu da pronađem odgovarajući odraz."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Pojavile su se greške za vreme preuzimanja paketa."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Prijavite ovu grešku kod %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Greške pri proveri transakcije: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Učitani dodaci: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Ne postoji slaganje za dodatak: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Ne učitavam dodatak „%s“ pošto je isključen"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Dodatak „%s“ ne može da bude uvezen"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Dodatak „%s“ ne određuje verziju zahtevanog API-a"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Dodatak „%s“ zahteva API %s. Podržani API je %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Učitavam „%s“ dodatak"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "U putanji za pretraživanje dodataka postoje dva ili više dodataka pod imenom"
+ " „%s“"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Datoteka podešavanja %s nije pronađena"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Ne mogu da pronađem datoteku podešavanja za dodatak %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registracija komandi nije podržana"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3115,6 +3276,17 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr "Ponovno pakovanje"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Nedovoljna količina prostora u direktorijumu %s za preuzimanje\n"
++"    * slobodno je %s\n"
++"    * potrebno je %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/sv.po b/po/sv.po
+index b9c109b..3d93962 100644
+--- a/po/sv.po
++++ b/po/sv.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Göran Uddeborg <goeran at uddeborg.se>, 2011
++# Translators:
++# Göran Uddeborg <goeran at uddeborg.se>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-09-03 20:30+0000\n"
++"Last-Translator: goeran <goeran at uddeborg.se>\n"
+ "Language-Team: Swedish (http://www.transifex.net/projects/p/yum/team/sv/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,122 +18,124 @@ msgstr ""
+ "Language: sv\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Uppdaterar"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Raderar"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Installerar"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Utfasad"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Uppdaterade"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Raderade"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Installerade"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Inget huvud - va?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Paketera om"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Fel: ogiltig utdatatillstånd: %s för %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Raderade: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Tar bort"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Rensar upp"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Kommando \"%s\" redan definierat"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Gör i ordning förråd"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Läser in förrådsmetadata från lokala filer"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Konfigurationsfel: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Fel bland flaggor: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Installerade: %s-%s %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Byggde      : %s %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Verkställde : %s %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Du måste ange något kommando"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Inget sådant kommando: %s.  Använd %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Diskbehov:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  Åtminstone %d MB mer utrymme behövs på filsystemet %s.\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  Åtminstone %d MB mer utrymme behövs på filsystemet %s.\n"
++msgstr[1] "  Åtminstone %d MB mer utrymme behövs på filsystemet %s.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -140,60 +143,60 @@ msgstr ""
+ "Felsammandrag\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "Försöker köra transaktionen men det finns inget att göra.  Avslutar."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Avslutar på användarens order"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Hämtar paket:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Fel när paket hämtades:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Kör transaktionskontroll"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "FEL Du behöver uppdatera rpm för att hantera:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "FEL med transaktionskontroll mot depsolve:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM behöver uppdateras"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Vänligen rapportera detta fel i %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Kör transaktionstest"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Transaktionskontrollfel:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Transaktionskontrollen lyckades"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Kör transaktionen"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -201,91 +204,110 @@ msgstr ""
+ "Vägrar att automatiskt importera nycklar vid oövervakad körning.\n"
+ "Använd \"-y\" för att åsidosätta."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Du kanske menade: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Paket %s%s%s tillgängliga, men inte installerade."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Inget paket %s%s%s tillgängligt."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Paket att installera"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d paket att installera"
++msgstr[1] "%d paket att installera"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Inget att göra"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d paket noterade att uppdateras"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d paket noterat att uppdateras"
++msgstr[1] "%d paket noterade att uppdateras"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Inga paket noterade att uppdateras"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d paket noterade för distributionssynkronisering"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d paket noterat för distributionssynkronisering"
++msgstr[1] "%d paket noterade för distributionssynkronisering"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "Inga paket noterade för distributionssynkronisering"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d paket noterade att tas bort"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d paket noterat att tas bort"
++msgstr[1] "%d paket noterade att tas bort"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Inga paket noterade att tas bort"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Paket att nedgradera"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d paket att nedgradera"
++msgstr[1] "%d paket att nedgradera"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (från %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Installerat paket %s%s%s%s inte tillgängligt."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Paket att ominstallera"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d paket att ominstallera"
++msgstr[1] "%d paket att ominstallera"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Inga paket angivna"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Paket att installera"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "N/S matchade: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Matchning %sendast%s av namn och sammandrag, använd \"search all\" för "
+ "allting."
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -293,150 +315,154 @@ msgstr ""
+ "  Matchning %sendast%s av fullständigt namn och sammandrag, använd \"search "
+ "all\" för allting."
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Matchade: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Matchning %shuvudsakligen%s av namn och sammandrag, använd \"search all\" "
+ "för allting."
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Varning: Ingen matchning hittades för: %s"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Inga matchningar hittades"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Inga paket hittades för %s"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Rensar förråd: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Rensar upp allt"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Rensar upp huvuden"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Rensar upp paket"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Rensar upp xml-metadata"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Rensar upp databas-cache"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Rensar upp expire-cache-metadata"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Rensar upp cachad rpmdb-data"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Rensar upp insticksmoduler"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Varning: Inga grupper matchar: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Installerade grupper:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Installerade språkgrupper:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Tillgängliga grupper:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Tillgängliga språkgrupper:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Klart"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Varning: Grupp %s finns inte."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "Inget paket i någon begärd grupp är tillgängligt för installation eller "
+ "uppdatering"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d paket att installera"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d paket att installera"
++msgstr[1] "%d paket att installera"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Ingen grupp med namnet %s finns"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Inget paket att ta bort från grupper"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d paket att ta bort"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d paket att ta bort"
++msgstr[1] "%d paket att ta bort"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Paket %s är redan installerat, hoppar över"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Kastar ojämförbart paket %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ "Ingen annat %s installerat, lägger till listan för potentiell installation"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Insticksmodulsalternativ"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Kommandoradsfel: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -447,284 +473,288 @@ msgstr ""
+ "\n"
+ "%s: flaggan %s behöver ett argument"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color tar en av: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "--installroot måste vara en absolut sökväg: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "visa detta hjälpmeddelande och avsluta"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "var tolerant vid fel"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "kör helt från systemets cache, uppdatera inte cachen"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "konfigurationsfilens plats"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "maximal tid att vänta på kommandon"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "nivå på felsökningsutskrifter"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "visa dubletter, i förråd, i list-/search-kommandon"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "nivå på felutskrifter"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "nivå på felsökningsutskrifter för rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "tyst operation"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "utförlig operation"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "svara ja på alla frågor"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "svara nej på alla frågor"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "visa Yum-version och avsluta"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "ange installationsrot"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "aktivera ett eller flera förråd (jokrertecken tillåts)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "inaktivera ett eller flera förråd (jokertecken tillåts)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "uteslut paket via namn eller mönster"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "inaktivera uteslutningar från main, för ett förråd, eller för allt"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "aktivera bearbetning av utfasningar under uppdateringar"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "inaktivera Yum-insticksmoduler"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "inaktivera kontroll av gpg-signatur"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "inaktivera insticksmoduler efter namn"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "aktivera insticksmoduler efter namn"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "hoppa över paket med problem vid beroendeupplösning"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "styr om färg skall användas"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "sätt värdet på $releasever i yum-konfigurations- och repo-filer"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "sätt godtyckliga konfigurations- och förrådsalternativ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "jan"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "feb"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "mar"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "apr"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "maj"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "jun"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "jul"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "aug"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "sep"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "okt"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "nov"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "dec"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Försöker med en annan spegel."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Namn        : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Arkitektur  : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Epok        : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Version     : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Utgåva      : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Storlek     : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Förråd      : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Från förråd : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Verkställare: %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Verkställt  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Byggt       : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Installerat : %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Installerat av: %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Ändrat av   : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Sammandrag  : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "URL         : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Licens      : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Beskrivning : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "j"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "ja"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "nej"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Är detta ok [j/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -733,154 +763,156 @@ msgstr ""
+ "\n"
+ "Grupp: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Grupp-id: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Beskrivning: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Språk: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Obligatoriska paket:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Standardpaket:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Valfria paket:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Villkorliga paket:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "paket: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Inga beroenden för detta paket"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  beroende: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Ej uppfyllt beroende"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Matchat från:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Licens      : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Filnamn     : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Övrigt      : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Ett fel uppstod vid beräkningen av total storlek att hämta"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Total storlek: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Total storlek att hämta: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Installerad storlek: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Ett fel uppstod vid beräkningen av installerad storlek"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Ominstallerar"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Nedgraderar"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Installerar på grund av beroenden"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Uppdaterar på grund av beroenden"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Tar bort på grund av beroenden"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Hoppas över (beroendeproblem)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Inte installerat"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Ej tillgängliga"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Paket"
++msgid_plural "Packages"
++msgstr[0] "Paket"
++msgstr[1] "Paket"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Ark"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Version"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Förråd"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Storl."
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     ersätter  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -891,57 +923,52 @@ msgstr ""
+ "Transaktionssammanfattning\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Installerar   %5.5s paket\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Installera"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Uppdaterar    %5.5s Paket\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Uppgradera"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Tar bort      %5.5s paket\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Ta bort"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Ominstallerar %5.5s paket\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Ominstallation"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Nedgraderar   %5.5s paket\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Nedgradering"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Borttagna"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Borttagna beroenden"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Installerade beroenden"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Uppdaterade beroenden"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Ersatte"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Misslyckade"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "två"
+ 
+@@ -949,7 +976,7 @@ msgstr "två"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -960,365 +987,417 @@ msgstr ""
+ " Aktuell nedladdning avbröts, %savbryt (ctrl-c) igen%s inom %s%s%s sekunder\n"
+ "för att avsluta.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "avbrott från användaren"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Totalt"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "UF"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "R"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "O"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "N"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<ej satt>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "System"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ "Hoppar över sammanslagen transaktion %d till %d, eftersom de överlappar"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Inga transaktioner"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Felaktiga transaktions ID:n, eller paket, angivna"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Kommandorad"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Inloggad användare"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Datum och tid"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Åtgärd(er)"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Ändrade"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Inget transaktions-ID angivet"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Felaktigt transaktions-ID angivet"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Hittade inte angivet transaktions-ID"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Hittade mer än ett transaktions-ID!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Inget transaktions-ID, eller paket, angivet"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Nedgraderade"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Äldre"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Nyare"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Transaktions-ID:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Starttid       :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Start-rpmdb    :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u sekunder)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u minuter)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u timmar)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u dagar)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Sluttid        : "
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Slut-rpmdb     :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Användare      :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Returkod       :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Avbruten"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Misslyckanden:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Misslyckades:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Lyckades"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Kommandoradsfel:"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Ytterligare icke-standardinformation lagrad: %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Transaktionen utförd med:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Ändrade paket:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Överhoppade paket:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb-problem:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Skriptutdata:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Fel:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Installation"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Ber-inst"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Fasar ut"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Radering"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Ominstallation"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Nedgradering"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Uppdatering"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Tid"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Senaste dagen"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Senaste veckan"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Senaste 2 veckorna"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Senaste 3 månaderna"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Senaste 6 månaderna"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Senaste året"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Mer än ett år tillbaka"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Ingen transaktion %s funnen"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Transaktions-ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Tillgänglig ytterligare historieinformation"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: Inga ytterligare data finns med detta namn"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Paket          :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Tillstånd      :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Storlek        :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Byggvärd       :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Byggtid        :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Paketerare     : "
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Leverantör     :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Licens         : "
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "URL            :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "Käll-RPM       : "
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Verkställt     :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Verkställare   :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Orsak          :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Från förråd    :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Installerat av :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Ändrat av      :"
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "installerat"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "en uppdatering"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "raderat"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "ominstallerat"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "en nedgradering"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "utfasning"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "uppdaterat"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "utfasat"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Paket %s.%s %s:%s-%s blir %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Kör transaktionskontroll"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Startar om beroendeupplösning med nya ändringar."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Avslutade beroendeupplösning"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Bearbetar beroende: %s för paket: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Behåller paketet: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Ej upplöst beroende: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Paket: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1327,7 +1406,7 @@ msgstr ""
+ "\n"
+ "    Behöver: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1336,7 +1415,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1345,7 +1424,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1354,85 +1433,85 @@ msgstr ""
+ "        Finns inte"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Uppdaterat av"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Nedgraderat av"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Utfasat av"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Tillgängliga"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Bearbetar konflikt: %s står i konflikt med %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Fyller transaktionsmängden med valda paket.  Var god dröj."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> Hämtar huvud för %s för att paketera i transaktionsmängden."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Kör"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Sover"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Oavbrytbar"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Zombie"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "Spårad/Stoppad"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Okänd"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Det andra programmet är: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Det andra programmet är: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Minne   : %5s RSS (%5s B VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Startade: %s - för %s sedan"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Status  : %s, pid: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1442,7 +1521,7 @@ msgstr ""
+ "\n"
+ "Slutar efter att användaren avbröt"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1452,7 +1531,7 @@ msgstr ""
+ "\n"
+ "Slutar med brutet rör (pipe)"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1463,7 +1542,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1471,35 +1550,35 @@ msgstr ""
+ "Ett annat program håller för närvarande yum-låset, avslutar som konfigurerad"
+ " av exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Insticksmodulsavslutsfel: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum-fel: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Fel: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Du kan försöka använda --skip-broken för att gå runt problemet"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Du kan försöka köra: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Okänt fel: Felkod: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1507,7 +1586,7 @@ msgstr ""
+ "\n"
+ "Beroenden upplösta"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Klart!"
+ 
+@@ -1519,7 +1598,7 @@ msgstr " Minianvändning:\n"
+ msgid "You need to be root to perform this command."
+ msgstr "Du måste vara root för att utföra detta kommando."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1549,53 +1628,53 @@ msgstr ""
+ "\n"
+ "För mer information, kontakta leverantören av din distribution eller paket.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Problemförråd     : %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Fel: Behöver skicka en lista paket till %s"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Fel: Behöver något att matcha emot"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Fel: Behöver en grupp eller lista av grupper"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Fel: clean behöver ett argument: %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Fel: felaktigt argument till clean: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Inget argument till skalet"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "Filnamn skickat till skalet: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Filen %s som gavs som ett argument till skalet finns inte."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Fel: mer än en fil angiven som argument till skalet."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1605,307 +1684,300 @@ msgstr ""
+ " Kör ”yum repolist all” för att se vilka förråd du har.\n"
+ " Du kan aktivera förråd med yum-config-manager --enable <förråd>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "PAKET..."
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Installera ett eller flera paket på ditt system"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Förbereder installationsprocessen"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[PAKET...]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Uppdatera ett eller flera paket på ditt system"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Förbereder uppdateringsprocessen"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Synkroniser installerade paket med de senaste tillgängliga versionerna"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Förbereder distributionssynkroniseringsprocessen"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Visa detaljer om ett paket eller en grupp paket"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Installerade paket"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Tillgängliga paket"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Extra paket"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Uppdaterade paket"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Fasar ut paket"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Nyligen tillagda paket"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "Inga matchande paket att lista"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Lista ett paket eller en grupp paket"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Ta bort ett eller flera paket från ditt system"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Förbereder processen att ta bort"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Visa, eller använd, gruppinformationen"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Förbereder grupprocessen"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Inga grupper att köra kommandot på"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Lista tillgängliga paketgrupper"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Installera paketen i en grupp på ditt system"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Ta bort paketen in en grupp från ditt system"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Visa detaljer om en paketgrupp"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Ogiltigt underkommando till group, använd: %s."
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Generera metadata-cache:n"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Skapar cache-filer för alla metadatafiler."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "Detta kan ta ett tag beroende på datorns fart"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Metadata-cache skapad"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Ta bort cache:ade data"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Ta reda på vilka paket som tillhandahåller det angivna värdet"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Leta efter tillgängliga paketuppdateringar"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Sök i paketdetaljer efter den angivna strängen"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Söker paket: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Uppdatera paket med hänsyn tagen till utfasningar"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Förbereder uppgraderingsprocessen"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Installera en lokal RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Förbereder den lokala paketprocessen"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Avgör vilket paket som tillhandahåller ett angivet beroende"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Söker i paketen efter beroende:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Kör ett interactivt yum-skal"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Förbereder ett yum-skal"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Lista ett pakets beroenden"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Letar efter beroenden: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Visa konfigurerade programvaruförråd"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "aktivt"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "inaktivt"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Förråds-id      : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Förrådsnamn     : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Förrådsstatus   : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Förrådsversion  : "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Förrådstaggar   : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Förråds-distro-taggar: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Förråd uppdaterat: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Förrådspaket    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Förrådstorlek   : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Förrådsbasurl   : "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Förrådsmetalänk : "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Uppdaterat    :"
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Förrådspeglar   : "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Aldrig (senast: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Omedelbart (senast: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s sekunder (senast: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Förråd går ut    : "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Förråd utesluter : "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Förråd inkluderar: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Förråd uteslutet : "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Förrådfilnamn: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "förråds-id"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "status"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "förrådsnamn"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Visa ett hjälpsamt meddelande om användning"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Ingen hjälp tillgänglig för %s"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1915,7 +1987,7 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1925,85 +1997,125 @@ msgstr ""
+ "\n"
+ "alias: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Förbereder ominstallationsprocessen"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "ominstallera ett paket"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Förbereder nedgraderingsprocessen"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "nedgradera ett paket"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Visa en version för maskinen och/eller tillgängliga förråd."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum versionsgrupper:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Grupp:"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Paket:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Installerade:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Gruppinstallerade:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Tillgängliga:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Grupptillgängliga:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Visa, eller använd, transaktionshistorien"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Transaktioner:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Starttid    :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Sluttid     : "
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Antal       :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm-DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum-DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Ogiltigt underkommando till history, använd: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "Du har inte tillgång till historie-DB:n."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Kontrollera om det finns problem i rpmdb:n"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "läs in en sparad transaktion från filnamn"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Ingen fil med sparad transaktion angiven."
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "läser in transaktionen från %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Transaktionen inläst från %s med %s medlemmar"
+@@ -2014,28 +2126,36 @@ msgstr "Transaktionen inläst från %s med %s medlemmar"
+ msgid " Yum checks failed: %s"
+ msgstr " Yums kontroller misslyckades: %s"
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
++msgstr "Inga läs-/skrivrättigheter i aktuell katalog, flyttar till /"
++
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "Det går inte att skapa en låsfil, avslutar"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr ""
+ "Ett annat program håller för närvarande yum-låset, väntar på att den skall "
+ "avsluta ..."
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr "Det går inte att skapa en låsfil, avslutar"
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Löser upp beroenden"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+-msgstr "Din transaktion sparades, kör om den med: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
++msgstr ""
++"Din transaktion sparades, kör om den med:\n"
++" yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2045,74 +2165,74 @@ msgstr ""
+ "\n"
+ "Slutar efter att användaren avbröt."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Förbereder transaktionsmängder före konfigurationsklass är uppe"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Ogiltig tsflag i konfigurationsfil: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Söker pkgSack efter beroende: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Medlem: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s konverterad till att installera"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Lägger till paket %s i läge %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Tar bort paket %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s behöver: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s behöver %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Nödvändigt behov har redan slagits upp, fuskar"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Nödvändigt behov är inte ett paketnamn.  Slår upp: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Potentiell tillhandahållare: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Läget är %s för tillhandahållare av %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Läge för paket som tillhandahåller %s: %s"
+@@ -2120,116 +2240,116 @@ msgstr "Läge för paket som tillhandahåller %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Försöker uppdatera %s för att lösa upp beroenden"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Hittar ingen uppdateringsväg för %s.  Misslyckat!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: paket %s behöver %s noteras att raderas"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "TSINFO: Fasar ut %s med %s för att lösa upp beroenden."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: Uppdaterar %s för att lösa upp beroenden"
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Hittar ingen uppdateringsväg för beroende för: %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Snabb matcning av %s mot behov för %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s finns bland tillhandahållande paket men det är redan installerat, tar "
+ "bort."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Potentiellt upplösande paket %s har nyare instans i ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Potentiellt upplösande paket %s har nyare instans installerad."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s är redan i ts, hoppar över denna"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: Noterar %s som en uppdatering av %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: Noterar %s som en installation av %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Klart - tom transaktion"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Startar om slingan"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Beroendeprocessen avslutas"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Klart - beroenden upplösta"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Kontrollerar beroenden för %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "letar efter %s som ett behov för %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Kör compare_providers() för %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "bättre arkitektur i po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s fasar ut %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2238,142 +2358,142 @@ msgstr ""
+ "arkitekturavstånd jämför %s med %s på %s\n"
+ "  Vinnare: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "samma käll-rpm %s och %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "baspaket %s är installerat för %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "gemensamt prefix för %s mellan %s och %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "behöver minst: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr "Vinnare: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Förlorare(med %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Bästa ordning: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Förråd %r: Fel vid tolkning konfiguration: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "Förrådet %r saknar namn i konfigurationen, använder id"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "insticksmoduler redan initierade"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Läser lokal RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Förbereder paketsäckar"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "förrådsobjekt för förrådet %s saknar en _resetSack-metod\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "därför kan inte detta förråd återställas.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Bygger uppdateringsobjekt"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() kommer att försvinna i en framtida version av Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Hämtar gruppmetadata"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Lägger till gruppfil från förrådet: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Kunde inte lägga till gruppfil för förrådet: %s - %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "Inga grupper tillgängliga i något förråd"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Hämtar pakettaggsmetadata"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Lägger till taggar från förrådet: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Kunde inte lägga till pakettaggar för förrådet: %s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Importerar ytterligare fillisteinformation"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "Programmet %s%s%s finns i paketet yum-utils."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2381,21 +2501,21 @@ msgstr ""
+ "Det finns oavslutade transaktioner kvar.  Du kan överväga att köra yum-"
+ "complete-transaction först för att avsluta dem."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Letar efter överblivna beroenden som inte behövs"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Skyddade multilibversioner: %s ≠ %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Försöker ta bort ”%s”, som är skyddad"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2403,90 +2523,93 @@ msgstr ""
+ "\n"
+ "Paket hoppades över på grund av beroendeproblem:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s från %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Hittade %d redan befintliga tidigare rpmdb-problem, ”yum check”-utdata "
+ "följer:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Varning: RPMDB ändrad utanför yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "saknade behov"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "installerade konflikter"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Varning: skript- eller annat icke ödesdigert fel inträffade under "
+ "transaktionen."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Transaktionen kunde inte starta:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Kunde inte köra transaktionen."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Kunde inte ta bort transaktionsfilen %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s skulle installerats men gjordes det inte!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s skulle tagits bort men det gjordes inte!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Kunde inte öppna låset %s: %s "
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Kan inte kontrollera om PID %s är aktiv"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Existerande lås %s: en annan kopia kör som pid %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Kunde inte skapa lås av %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2495,41 +2618,30 @@ msgstr ""
+ "Paketet matchar inte den avsedda hämtningen.  Förslag: kör yum "
+ "--enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Kunde inte utföra kontrollsummering"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Paketet stämmer inte med kontrollsumman"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ "paketet misslyckas med kontrollsumman men cachning är aktiverat för %s"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "använder lokal kopia av %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Otillräckligt utrymme i hämtningskatalogen %s\n"
+-"    * fritt   %s\n"
+-"    * behovet %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Huvudet är inte komplett."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2537,62 +2649,64 @@ msgstr ""
+ "Huvudet finns inte i den lokala cachen och endast-cache-läget är aktiverat."
+ "  Kan inte hämta %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Den publika nyckeln för %s är inte installerad"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Problem att öppna paketet %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Den publika nyckeln för %s är inte betrodd"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Paket %s är inte signerat"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Det går inte att ta bort %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s borttaget"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Det går inte att ta bort %s-filen %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s-filen %s borttagen"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s-filer borttagna"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d %s-fil borttagen"
++msgstr[1] "%d %s-filer borttagna"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "Mer än en identisk matchning i säcken för %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Ingenting matchar %s.%s %s:%s-%s från uppdateringarna"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2600,122 +2714,124 @@ msgstr ""
+ "searchPackages() kommer att försvinna i en framtida version av Yum."
+ "                      Använd searchGenerator() istället. \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Söker i %d paket"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Söker i %d paket"
++msgstr[1] "Söker i %d paket"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "söker i paketet %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "söker i filposter"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "söker i tillhandahållandeposter"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Inga gruppdata är tillgängliga för de konfigurerade förråden"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Det finns ingen grupp med namnet %s"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "paket %s noterades inte i gruppen %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Lägger till paket %s från grupp %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Inget paket med namnet %s är tillgängligt för installation"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Varning: Gruppen %s har inte några paket."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "Gruppen %s har %u villkorliga paket, vilka kan komma att installeras."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "Pakettupel %s fanns inte i paketsäcken"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "Pakettupel %s fanns inte i rpmdb"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Ogiltig versionsflagga från: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Inga paket hittades för %s"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Paketobjektet var inte en paketobjektinstans"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Inget angivet att installeras"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ "Kontrollerar virtuella tillhandahållanden eller filtillhandahållanden för %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Ingen matchning för argument: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Paket %s installerat och inte tillgänligt"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Inga paket tillgängliga att installera"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Paket: %s - redan i transaktionsmängden"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Paket %s fasas ut av %s, som redan är installerat"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2724,82 +2840,88 @@ msgstr ""
+ "Paket %s fasas ut av %s, men paketet som fasar ut tillhandahåller inte "
+ "behoven"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "Paket %s fasas ut av %s, försöker installera %s istället"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Paket %s är redan installerat och senaste version"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Paket som matchar %s är redan installerat.  Letar efter uppdatering."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Uppdaterar allt"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Uppdaterar inte paket som redan är utfasade: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Inget paket att uppgradera matchar: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Paketet är redan utfasat: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Uppdaterar inte paket som fasas ut: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Uppdaterar inte paket som redan är uppdaterat: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Inget paket att tas bort matchar"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Inget paket att ta bort matchar: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Hoppar över den körande kärnan: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Ta bort %s från transaktionen"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Det går inte att öppna: %s.  Hoppar över."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Undersöker %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Det går inte att lokalinstallera deltarpm: %s.  Hoppar över."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+@@ -2807,14 +2929,14 @@ msgstr ""
+ "Kan inte lägga till paket %s till transaktionen.  Inte en kompatibel "
+ "arkitektur: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Det går inte att installera paketet %s.  Det är fasas ut av det installerade"
+ " paketet %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2823,7 +2945,7 @@ msgstr ""
+ "Paket %s är inte installerat, kan inte uppdatera det.  Kör yum install för "
+ "att installera det istället."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2832,97 +2954,102 @@ msgstr ""
+ "Paketet %s.%s är inte installerat, kan inte uppdatera det.  Kör yum install "
+ "för att installera det istället."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Utesluter %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Noterar %s för installation"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Noterar %s som en uppdatering av %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: uppdaterar inte ett installerat paket."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Det går inte att öppna filen: %s.  Hoppar över."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Problem att ominstallera: inget paket matchades att tas bort"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "Problem att ominstallera: inget paket %s matchades att installera"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Inga paket tillgängliga att nedgradera"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "Paket %s tillåts multipla installationer, hoppar över"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Ingen matchning för tillgängliga paket: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Endast uppgradering tillgängliga för paket: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Misslyckades nedgradera: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Misslyckades att uppgradera: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Hämtar nyckel från %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Hämtandet av GPG-nyckeln misslyckades: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ "GPG-nyckelsignatur på nyckeln %s har inte någon matchande CA-nyckel för "
+ "förrådet: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "GPG-nyckelsignatur verifierad mot CA-nycklar"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Ogiltig GPG-nyckel från %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG-nyckeltolkning misslyckades: nyckeln har inte värde %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2935,7 +3062,7 @@ msgstr ""
+ " Paket     : %s (%s)\n"
+ " Från      : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2946,25 +3073,25 @@ msgstr ""
+ " Användarid: ”%s”\n"
+ " Från      : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "GPG-nyckel vid %s (0x%s) är redan installerad"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Nyckelimport misslyckades (kod %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Nyckelimport lyckades"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Installerade inte några nycklar"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2973,25 +3100,25 @@ msgstr ""
+ "GPG-nycklarna uppräknade för förrådet \"%s\" är redan installerade men de är inte korrekta för detta paket.\n"
+ "Kontrollera att de rätta nyckel-URL:erna är konfigurerade för detta förråd."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Import av nycklar hjälpte inte, fel nycklar?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "GPG-nyckel vid %s (0x%s) är redan importerad"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Nyckelimport misslyckades"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Installerade inte några nycklar för förrådet %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3000,160 +3127,184 @@ msgstr ""
+ "GPG-nycklarna uppräknade för förrådet \"%s\" är redan installerade men de är inte korrekta.\n"
+ "Kontrollera att rätt nyckel-URL:ar är konfigurerade för detta förråd."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Kan inte hitta en lämplig spegel."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Fel uppstod när paket hämtades."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Rapportera gärna detta fel till %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Transaktionstestfel: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Kunde inte sätta cache-katalog: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Beroenden inte upplösta.  Kommer inte att spara ouppklarad transaktion."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Kunde inte spara transaktionsfilen %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr "Kunde inte komma åt/läsa sparad transaktion %s: %s "
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "rpmdb-version stämmer inte med sparad transaktionsversion, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " bortser ifrån, som begärt."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " avbryter."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "det går inte att hitta tsflags eller så är tsflags inte ett heltal."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Hittade txmbr i okänt aktuellt tillstånd: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Kunde inte hitta txmbr: %s i tillstånd %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Kunde inte hitta txmbr: %s från ursprung: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Transaktionsmedlemmar, -relationer saknas eller ts har ändrats,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr " bortser ifrån, som begärt.  Du måste göra redepsolve!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s har redan besökts och kan inte tas bort."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Undersöker versionsberoenden för %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s har versionsberoende %s som var var användarinstallerat."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s: uppdaterar inga användarinstallerade versionsberoenden."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Inlästa insticksmoduler: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Ingen insticksmodul matchar: %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Läser inte in insticksmodulen \"%s\" eftersom den är inaktiverad"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Insticksmodulen \"%s\" kan inte importeras"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Insticksmodulen \"%s\" specificerare inte nödvändig API-version"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Insticksmodulen \"%s\" kräver API %s.  API:er som stöds är %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Läser in insticksmodulen \"%s\""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ "Två eller flera insticksmoduler med namnet \"%s\" finns i sökvägen för "
+ "insticksmoduler"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Konfigurationsfilen %s finns inte"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Kan inte hitta konfigurationsfil för insticksmodulen %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "registrering av kommandon stöds inte"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "har ett saknat beroende på"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "har installerad konflikt"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s är en dubblett med %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s fasas ut av %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s tillhandahåller %s men det kan inte hittas"
+@@ -3162,6 +3313,17 @@ msgstr "%s tillhandahåller %s men det kan inte hittas"
+ msgid "Repackaging"
+ msgstr "Paketerar om"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Otillräckligt utrymme i hämtningskatalogen %s\n"
++"    * fritt   %s\n"
++"    * behovet %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/uk.po b/po/uk.po
+index f5a658d..f534582 100644
+--- a/po/uk.po
++++ b/po/uk.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Yuri Chornoivan <yurchor at ukr.net>, 2011
++# Translators:
++# Yuri Chornoivan <yurchor at ukr.net>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
+-"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-24 14:54+0000\n"
++"Last-Translator: yurchor <yurchor at ukr.net>\n"
+ "Language-Team: Ukrainian (http://www.transifex.net/projects/p/yum/team/uk/)\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+@@ -17,123 +18,128 @@ msgstr ""
+ "Language: uk\n"
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "Оновлення"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "Вилучення"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "Встановлення"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "Став застарілим"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "Оновлено"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "Вилучено"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "Встановлено"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "Немає заголовка — як це?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "Перепакувати"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "Помилка: некоректний стан виводу: %s для %s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "Вилучено: %s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "Вилучення"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "Очищення диска"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "Команду «%s» вже визначено"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "Налаштування сховищ"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "Читання метаданих сховища з локальних файлів"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "Помилка налаштування: %s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "Помилка у параметрах: %s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  Встановлено: %s-%s у %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  Зібрано    : %s о %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  Надіслано  : %s о %s"
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "Вам слід вказати якусь команду"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "Команди %s не виявлено. Будь ласка, скористайтеся командою %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "Вимоги до диска:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++"  Потрібно принаймні ще %d МБ простору на диску для файлової системи %s.\n"
++msgstr[1] ""
++"  Потрібно принаймні ще %d МБ простору на диску для файлової системи %s.\n"
++msgstr[2] ""
+ "  Потрібно принаймні ще %d МБ простору на диску для файлової системи %s.\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,62 +147,62 @@ msgstr ""
+ "Резюме помилок\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ "Спроба виконання операції за умови порожнього списку операцій. Завершуємо "
+ "роботу."
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "Завершення роботи за бажанням користувача"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "Звантаження пакунків:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "Помилка завантаження пакетів:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr "Виконання перевірки операції"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "ПОМИЛКА. Вам слід оновити rpm для обробки:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr "ПОМИЛКА перевірки дії під час розв’язання залежностей:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM слід оновити"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "Будь ласка, повідомте про цю помилку за адресою %s"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "Запускається операція з перевірки"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "Помилка під час перевірки операції:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "Операцію з перевірки успішно завершено"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "Виконання операції"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -204,92 +210,117 @@ msgstr ""
+ "Автоматичне імпортування ключів під час некерованого запуску заборонено.\n"
+ "Скасувати заборону можна параметром «-y»."
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * Можливо, ви хотіли використати: "
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "Доступні невстановлені пакунки %s%s%s."
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "Пакунок %s%s%s недоступний."
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "Пакунки, які слід встановити"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] "%d пакунок для встановлення"
++msgstr[1] "%d пакунки для встановлення"
++msgstr[2] "%d пакунків для встановлення"
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "Нічого виконувати"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "%d пакунків позначено для оновлення"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] "%d пакунок позначено для оновлення"
++msgstr[1] "%d пакунки позначено для оновлення"
++msgstr[2] "%d пакунків позначено для оновлення"
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "Для оновлення не позначено жодного пакунка"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "%d пакунків позначено для виконання синхронізації дистрибутивів"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] "%d пакунок позначено для виконання синхронізації дистрибутивів"
++msgstr[1] "%d пакунки позначено для виконання синхронізації дистрибутивів"
++msgstr[2] "%d пакунків позначено для виконання синхронізації дистрибутивів"
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ "Для виконання синхронізації дистрибутивів не позначено жодного пакунка"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "%d пакунків позначено для вилучення"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] "%d пакунок позначено для вилучення"
++msgstr[1] "%d пакунки позначено для вилучення"
++msgstr[2] "%d пакунків позначено для вилучення"
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "Для вилучення не позначено жодного пакунка"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "Пакунки, версію яких слід знизити"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] "%d пакунок зі зниженням версії"
++msgstr[1] "%d пакунки зі зниженням версії"
++msgstr[2] "%d пакунків зі зниженням версії"
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr " (з %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "Встановлений пакунок %s%s%s%s недоступний."
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "Пакунки для перевстановлення"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] "%d пакунок для перевстановлення"
++msgstr[1] "%d пакунки для перевстановлення"
++msgstr[2] "%d пакунків для перевстановлення"
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "Не надано жодного пакунка"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "Пакунки, які слід встановити"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr "Відповідність Н/Р: %s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Виконано пошук %sлише%s за назвою і резюме, скористайтеся «search all» для"
+ " пошуку у всіх даних"
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+@@ -297,148 +328,154 @@ msgstr ""
+ "  Виконано пошук %sлише%s за повною назвою і резюме, скористайтеся «search "
+ "all» для пошуку у всіх даних"
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "Відповідники: %s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ "  Виконано пошук %sпереважно%s за назвою і резюме, скористайтеся «search "
+ "all» для пошуку у всіх даних"
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "Попередження: відповідників %s не знайдено"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "Не знайдено відповідників"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "Пакунків з %s не знайдено"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "Спорожнення записів сховищ: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "Вилучення всього"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "Вилучення заголовків"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "Вилучення зайвих пакунків"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "Вилучення метаданих xml"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "Вилучення кешу бази даних"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "Вилучення метаданих застарілого кешу"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "Вилучення кешованих даних rpmdb"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "Вилучення додатків"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr "Попередження: відповідних груп не знайдено: %s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "Встановлені групи:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr "Встановлені групи мов:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "Наявні групи:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr "Доступні групи мов:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "Виконано"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "Попередження: групи з назвою %s не існує."
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ "У жодній з вказаних груп немає пакунків для встановлення або оновлення"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d пакунків для встановлення"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d пакунок для встановлення"
++msgstr[1] "%d пакунки для встановлення"
++msgstr[2] "%d пакунків для встановлення"
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "Групи з назвою %s не існує"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "Пакунків для вилучення з груп не знайдено"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "%d пакунків для вилучення"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] "%d пакунок для вилучення"
++msgstr[1] "%d пакунки для вилучення"
++msgstr[2] "%d пакунків для вилучення"
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "Пакунок %s вже встановлено, пропускаємо"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "Відкинуто несумісний пакунок %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "Не встановлено інших %s, додаємо до списку потенційного встановлення"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "Параметри додатка"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "Помилка виконання команди: %s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -449,287 +486,291 @@ msgstr ""
+ "\n"
+ "%s: для параметра %s потрібен аргумент"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color повинен мати один з аргументів: auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr "Аргументом --installroot має бути абсолютний шлях: %s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "показати це довідкове повідомлення і завершити роботу"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "ігнорувати помилки"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "запустити на основі системного кешу, не оновлювати кеш"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "розташування файла налаштувань"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "максимальний час очікування на завершення команди"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "рівень докладності діагностичних повідомлень"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "показати дублікати у сховищах та командах побудови списку та пошуку"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "рівень докладності повідомлень про помилки"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "рівень докладності діагностичних повідомлень rpm"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "обробка без виведення повідомлень"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "докладна обробка команд"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "відповісти «так» на всі питання"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr "відповідати «ні» на всі питання"
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "показати версію Yum і завершити роботу"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "встановити кореневий каталог встановлення"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "увімкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ "вимкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "виключити пакунки за назвою або формальним виразом"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "вимкнути виключення з main для сховища або на загальному рівні"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "увімкнути обробку застарілих пакунків під час оновлень"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "вимкнути додатки Yum"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "вимкнути перевірку підписів gpg"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "вимкнути додатки за назвою"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "увімкнути додатки за назвою"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "пропустити пакунки з помилками у розв’язанні залежностей"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "визначає, чи слід використовувати розфарбовування"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ "встановити значення $releasever у налаштуванні yum config and repo files"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "встановити довільні параметри налаштування і сховищ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "січ"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "лют"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "бер"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "кві"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "тра"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "чер"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "лип"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "сер"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "вер"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "жов"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "лис"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "гру"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "Спроба використання іншого дзеркала."
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "Назва       : %s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "Архітектура : %s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "Епоха       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "Версія      : %s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "Випуск      : %s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "Розмір      : %s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "Сховище     : %s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "Зі сховища  : %s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "Автор       : %s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "Час внеску  : %s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "Час збирання : %s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "Встановлення: %s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "Користувач : %s"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "Змінено     : %s"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "Резюме      : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "Адреса      : %s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "Ліцензія     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "Опис        : "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "так"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "ні"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "Виконати дію? [y/N]: "
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -738,154 +779,157 @@ msgstr ""
+ "\n"
+ "Група: %s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " Ід. групи: %s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " Опис: %s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr " Мова: %s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " Обов’язкові пакунки:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " Типові пакунки:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " Додаткові пакунки:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " Залежні пакунки:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "пакунок: %s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr "  Пакунок не залежить від інших пакунків"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "  залежність: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr "   Незадоволена залежність"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "Відповідність:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "Ліцензія    : %s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "Назва файла : %s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "Інше        : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "Під час обчислення загального обсягу звантаження сталася помилка"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "Загальний обсяг: %s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "Загальний обсяг звантаження: %s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "Розмір після встановлення: %s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "Під час обчислення обсягу після встановлення сталася помилка"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "Перевстановлення"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "Зниження версії"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "Встановлення для залежностей"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "Оновлення для залежностей"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "Вилучення для залежностей"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "Пропущено (проблеми з залежностями)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "Не встановлено"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "Недоступний"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "Пакунок"
++msgid_plural "Packages"
++msgstr[0] "Пакунок"
++msgstr[1] "Пакунки"
++msgstr[2] "Пакунки"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "Архітектура"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "Версія"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "Сховище"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "Розмір"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "     заміна  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -896,57 +940,52 @@ msgstr ""
+ "Резюме операції\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "Встановлення %5.5s пакунків\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "Встановити"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "Оновлення  %5.5s пакунків\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr "Оновлення"
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "Вилучення %5.5s пакунків\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr "Вилучення"
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "Перевстановлення %5.5s пакунків\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "Перевстановлення"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "Зниження версії %5.5s пакунків\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "Понизити"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "Вилучено"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "Вилучено залежності"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "Встановлено залежності"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "Оновлено залежності"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "Замінено"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "Помилка"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "два"
+ 
+@@ -954,7 +993,7 @@ msgstr "два"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -965,364 +1004,416 @@ msgstr ""
+ " Поточне звантаження скасовано, %sперервіть роботу (ctrl-c) ще раз%s протягом %s%s%s секунд,\n"
+ "щоб завершити операцію.\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "перервано користувачем"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "Загалом"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<не встановлено>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "Система"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr "Пропущено операцію з об’єднання %d з %d через перекриття даних"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr "Немає операцій"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "Вказано помилкові ідентифікатори операцій або пакунки"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr "Командний рядок"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "Користувач"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "Ід."
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "Дата і час"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "Дії"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "Змінено"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "Не вказано ідентифікатора операції"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "Вказано помилковий ідентифікатор операції"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "Не виявлено вказаного ідентифікатора операції"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "Виявлено більше одного ідентифікатора операції!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "Не вказано ідентифікатора операції або назви пакунка"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "Знижено версію"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "Старіший"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "Новіший"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "Ід. операції   :"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "Час початку     :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "Початок rpmdb   :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr "(%u секунд)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr "(%u хвилин)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr "(%u годин)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr "(%u днів)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "Час завершення  :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "Завершення rpmdb:"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "Користувач     :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "Повернутий код :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "Перервано"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr "Помилки:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "Помилка:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "Успіх"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "Командний рядок :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "Збережені додаткові нетипові дані        : %d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "Результат виконання операції:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "Змінено пакунків:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "Пропущено пакунків:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Проблеми з rpmdb:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Виведено скриптом:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "Помилки:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "Встановити"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "Встановлення з залежностями"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "Робить застарілим"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "Стерти"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "Перевстановлення"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "Понизити"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "Оновити"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "Час"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "Протягом дня"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "Попереднього тижня"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "Попередні 2 тижні"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "Попередні 3 місяці"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "Попередні 6 місяців"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "Попередній рік"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "Понад рік тому"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "Не знайдено операції %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "Ід. операції  :"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "Доступні додаткові дані з журналу:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: для цієї назви додаткових даних не знайдено"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr "Пакунок        :"
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr "Стан           :"
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr "Розмір         :"
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr "Вузол збирання :"
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr "Час збирання   :"
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr "Пакувальник    :"
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr "Постачальник   :"
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr "Ліцензування   :"
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr "Адреса         :"
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr "RPM з кодом    :"
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr "Час надсилання :"
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr "Автор внеску   :"
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr "Причина        :"
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr "Зі сховища     :"
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr "Встановлено    :"
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr "Автор змін     :"
++
++#: ../output.py:2566
+ msgid "installed"
+-msgstr "встановлення"
++msgstr "встановлено"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr "оновленням"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "вилучено"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "перевстановлено"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr "зниженням версії"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr "робити застарілим"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "оновлено"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "визнано застарілим"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr "---> Пакунок %s.%s %s:%s-%s буде %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> Виконання перевірки операції"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> Перезапускається визначення залежностей з урахуванням змін."
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> Визначення залежностей завершено"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> Обробка залежності: %s для пакунка: %s"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> Збережено пакунок: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> Нерозв'язана залежність: %s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "Пакунок: %s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1331,7 +1422,7 @@ msgstr ""
+ "\n"
+ "    Потребує: %s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1340,7 +1431,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1349,7 +1440,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1358,85 +1449,85 @@ msgstr ""
+ "        Не знайдено"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "Оновлено"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "Знижено версію"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "Став застарілим"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "Наявні"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> Обробка конфлікту: %s конфліктів %s"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> Додавання вибраних пакунків до операції. Зачекайте, будь ласка."
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> У список операцій звантажується заголовок пакунка %s."
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "Виконання"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "Сплю"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "Безперервний"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "Зомбі"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "З трасуванням/зупинкою"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "Невідомо"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  Сторонньою програмою є: PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  Сторонньою програмою є: %s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    Пм’ять : %5s RSS (%5sБ VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    Почато: %s - %s тому"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    Стан   : %s, PID: %d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1446,7 +1537,7 @@ msgstr ""
+ "\n"
+ "Завершення роботи на запит користувача"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1456,7 +1547,7 @@ msgstr ""
+ "\n"
+ "Завершення роботи через розрив зв’язку"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1467,7 +1558,7 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+@@ -1475,35 +1566,35 @@ msgstr ""
+ "Зараз yum блокує стороння програма. Завершуємо роботу відповідно до "
+ "налаштування exit_on_lock"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "Помилка PluginExit: %s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Помилка Yum: %s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "Помилка: %s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " Щоб обійти проблему, спробуйте скористатися параметром --skip-broken"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " Спробуйте віддати команду: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "Невідомі помилки: код виходу: %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1511,7 +1602,7 @@ msgstr ""
+ "\n"
+ "Залежності розв’язано"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "Завершено!"
+ 
+@@ -1525,7 +1616,7 @@ msgstr ""
+ "Для виконання цієї команди вам слід набути прав доступу адміністративного "
+ "користувача."
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1556,53 +1647,53 @@ msgstr ""
+ "Докладніші відомості може бути отримано з довідки до вашого дистрибутива або від\n"
+ "постачальника пакунків.\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "Проблема зі сховищем: %s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "Помилка: %s слід передати список пакунків"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "Помилка: слід вказати ключ для встановлення відповідності"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "Помилка: слід вказати групу або список груп"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "Помилка: для виконання clean слід вказати %s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "Помилка: некоректний аргумент clean: %r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "Не вказано аргумент shell"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "shell передано назву файла: %s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "Файла %s, переданого як аргумент параметра shell, не знайдено."
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "Помилка: shell передано як аргументи декілька файлів."
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1612,309 +1703,302 @@ msgstr ""
+ " Для перегляду списку всіх сховищ віддайте команду «yum repolist all».\n"
+ " Увімкнути сховище можна за допомогою команди yum-config-manager --enable <repo>"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "ПАКУНОК…"
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "Встановлення пакунка або пакунків у вашій системі"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "Налаштування процесу встановлення"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[ПАКУНОК…]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "Оновлення пакунків вашої системи"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "Налаштування процесу оновлення"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ "Синхронізація встановлених пакунків з найсвіжішими доступними версіями"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "Налаштування процесу синхронізації дистрибутивів"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "Показати подробиці щодо пакунка або групи пакунків"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "Встановлені пакунки"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "Доступних пакунків"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "Зайвих пакунків"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "Оновлених пакунків"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "Застарілих пакунків"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "Останні додані пакунки"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "У списку не виявлено відповідних пакунків"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "Список пакунків або груп пакунків"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "Вилучення пакунка або пакунків з вашої системі"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "Налаштування процесу вилучення"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr "Показати або використати дані груп"
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "Налаштування обробки груп"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "Не виявлено груп, над якими має бути виконано команду"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "Список можливих груп пакунків"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "Встановлення пакунків групи"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "Вилучення пакунків групи"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "Показ подробиць щодо групи пакунків"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr "Некоректна підкоманда груп, скористайтеся: %s."
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "Створення кешу метаданих"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "Створення файлів кешу для всіх файлів метаданих."
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ "Процедура може тривати досить довго, тривалість залежить від потужності "
+ "комп’ютера."
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "Створено кеш метаданих"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "Вилучення кешованих даних"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "Пошук пакунка за вказаним ключем"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "Перевірка доступності оновлень пакунків"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "Пошук подробиць щодо пакунка за вказаним рядком"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "Пошук пакунків: "
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "Оновлення пакунків з врахуванням застарівання пакунків"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "Налаштування процесу оновлення"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "Встановлення локального пакунка RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "Налаштування обробки локального пакунка"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "Визначення пакунка, що містить вказану залежність"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "Пошук пакунків для задоволення залежності:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "Запуск інтерактивної оболонки yum"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "Налаштування оболонки Yum"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "Показ списку залежностей пакунків"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "Пошук залежностей: "
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "Показ списку увімкнених сховищ програмного забезпечення"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "увімкнено"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "вимкнено"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "Ід. сховища   : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "Назва сховища : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "Стан сховища  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "Версія сховища: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "Мітки сховища : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "Мітки дистрибутива сховища: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "Оновлення сховища: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "Пакунки сховища: "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "Розмір сховища: "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "Адреса сховища: "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "Метапосилання сховища: "
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "  Оновлено   : "
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "Дзеркала сховищ: "
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "Ніколи (востаннє: %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "Негайно (лишилося: %s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s секунд (лишилося: %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "Строк дії сховища: "
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "Виключення сховища: "
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "Включення сховища: "
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "Виключені сховища: "
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "Назва файла сховища: "
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "ід. сховища"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "стан"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "назва сховища"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "Показати корисну підказку щодо використання"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "Довідки щодо %s не виявлено"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1924,7 +2008,7 @@ msgstr ""
+ "\n"
+ "інші назви: "
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1934,85 +2018,125 @@ msgstr ""
+ "\n"
+ "інша назва: "
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "Налаштування процесу перевстановлення"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "перевстановлення пакунка"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "Налаштування процесу зниження версії"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "зниження версії пакунка"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "Показ версії для вашої архітектури і/або списку доступних сховищ."
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Групи версій Yum:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " Група   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " Пакунки:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "Встановлено:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "Встановлені групи:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "Доступні:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "Доступні групи:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "Показ або використання журналу операцій"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr "Операції:"
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr "Час початку :"
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr "Час закінч. :"
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr "Лічильники  :"
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr "  NEVRAC :"
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr "  NEVRA  :"
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr "  NA     :"
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr "  NEVR   :"
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr "  rpm DB :"
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr "  yum DB :"
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "Некоректна підкоманда журналу, скористайтеся: %s."
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "У вас немає права доступу до бази даних журналу."
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "Пошук проблем у rpmdb"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr "завантажити збережену операцію з файла з вказаною назвою"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr "Не вказано файла збережених записів операцій"
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr "завантаження операції з %s"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr "Операцію завантажено з %s, кількість дій — %s"
+@@ -2023,29 +2147,36 @@ msgstr "Операцію завантажено з %s, кількість дій
+ msgid " Yum checks failed: %s"
+ msgstr " Спроба перевірки yum зазнала невдачі: %s"
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+-"Зараз yum блокує стороння програма. Зачекаємо на завершення її роботи..."
++"Немає доступу до читання або запису до поточного каталогу, пересуваємо до /"
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr "Не вдалося створити файл блокування. Завершення роботи."
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++"Зараз yum блокує стороння програма. Зачекаємо на завершення її роботи..."
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "Розв’язання залежностей"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+-"Ваш запис операції було збережено, повторити операцію можна за допомогою "
+-"команди: yum load-transaction %s"
++"Ваш запис операції було збережено, повторити операцію можна за допомогою\n"
++" yum load-transaction %s"
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2055,74 +2186,74 @@ msgstr ""
+ "\n"
+ "Завершення роботи на запит користувача."
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "Налаштування наборів операцій до включення класу налаштувань"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "Некоректне значення tsflag у файлі налаштувань: %s"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "Пошук pkgSack для залежності: %s"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "Частина: %s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s перетворено для встановлення"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "Додавання пакунка %s у режимі %s"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "Вилучення пакунка %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s потребує: %s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s потребує %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "Потрібний пакунок вже знайдено, обхідний маневр"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "Потрібна залежність задана не яка назва пакунка. Шукаємо: %s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr "Можливе джерело залежності: %s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "Режим %s для надання %s: %s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "Режим надання пакунка %s: %s"
+@@ -2130,117 +2261,117 @@ msgstr "Режим надання пакунка %s: %s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr "Спроба оновлення %s з метою розв’язання залежностей"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr "Не знайдено шляхів оновлення %s. Помилка!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "TSINFO: пакунок %s, потрібний для %s, позначено для вилучення"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ "TSINFO: %s стає застарілим після встановлення %s для розв’язання "
+ "залежностей."
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "TSINFO: оновлення %s для розв’язання залежностей."
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "Не вдалося знайти шлях оновлення для залежності %s"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "Встановлено швидку відповідність %s пакунку потрібному для пакунка %s"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ "%s належить до списку супутніх пакунків, його вже встановлено, пропускаємо."
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "Потенційний пакунок розв’язання %s має новішу версію у ts."
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "Встановлено новішу версію потенційного пакунка розв’язання %s."
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s вже перебуває у списку, пропускаємо його"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "TSINFO: позначення %s як оновлення для %s"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "TSINFO: позначення %s як такий, який слід встановити для %s"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "Успіх — порожня операція"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "Перезапуск циклу"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "Завершення процесу розв’язання залежностей"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "Успіх — залежності розв’язано"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "Перевірка залежностей для %s"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "пошук %s, потрібного для %s"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "Виконання compare_providers() для %s"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "краща архітектура у po %s"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s робить застарілим %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2249,144 +2380,144 @@ msgstr ""
+ "archdist порівняно %s з %s у %s\n"
+ "  Кращий варіант: %s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "загальний sourcerpm %s і %s"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "базовий пакунок %s встановлено для %s"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "загальний префікс %s для %s і %s"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "мінімальна вимога: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " Переможець: %s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " Невдаха(з %d): %s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "Найкращий порядок: %s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "Сховище %r: помилка під час обробки налаштувань: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ "Для сховища %r у налаштуваннях не вказано назви, використовуємо "
+ "ідентифікатор"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "додатки вже ініціалізовано"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() буде усунуто у наступних версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "Читання локальної RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "Налаштування наборів пакунків"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "Об’єкт сховища %s не має _resetSack method,\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "тому параметри цього сховища не може бути відновлено до початкових.\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "Побудова об’єкта оновлення"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() буде усунуто у майбутніх версіях Yum.\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "Отримання метаданих групи"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "Додавання файла групи зі сховища: %s"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "Не вдалося додати файл груп зі сховища: %s — %s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "У жодному сховищі немає доступних груп"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "Отримання метаданих міток пакунків"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "Додавання міток зі сховища: %s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "Не вдалося додати мітки пакунків для сховища: %s — %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "Імпортування додаткових відомостей списку файлів"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "У пакунку yum-utils виявлено програму %s%s%s."
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+@@ -2394,21 +2525,21 @@ msgstr ""
+ "Залишилися незавершені операції. Для їх завершення вам слід спочатку "
+ "запустити yum-complete-transaction."
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr "--> Пошук непотрібних залишкових операцій"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr "Захищені версії multilib: %s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "Спроба вилучення захищеного запису «%s»"
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2416,90 +2547,93 @@ msgstr ""
+ "\n"
+ "Пакунки, пропущені через проблеми з залежностями:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s з %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ "** Знайдено %d проблем rpmdb, які вже існували, командою «yum check» "
+ "виведено такі дані:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "Попередження: RPMDB змінено поза межами yum."
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "не має потрібних"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "конфлікт встановлення"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ "Попередження: під час виконання операції сталися помилки виконання скриптів "
+ "та інші некритичні помилки."
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "Не вдалося розпочати операцію:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "Не вдалося розпочати операцію."
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "Не вдалося вилучити файл операції %s"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s мало бути встановлено, але цю дію не було виконано!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s мало бути вилучено, але цього не сталося!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "Не вдалося вилучити блокування %s: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "Не вдалося перевірити, чи є активним PID %s"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "Блокування %s: запущено іншу копію з PID %s."
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "Не вдалося створити блокування %s: %s "
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+@@ -2508,40 +2642,29 @@ msgstr ""
+ "Пакунок не відповідає тому, який програма має намір звантажити. Пропозиція: "
+ "віддайте команду yum -enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "Не вдалося перевірити контрольну суму"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "Контрольна сума пакунка не збігається з еталонною"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "контрольна сума пакунка не збігається, кешування для %s увімкнено"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "використано локальну копію %s"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"Недостатньо місця у каталозі для звантажень %s\n"
+-"    * вільно   %s\n"
+-"    * потрібно %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "Заголовок не завершено."
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+@@ -2549,62 +2672,65 @@ msgstr ""
+ "Заголовка немає у локальному кеші, увімкнено режим «лише кешування». Не "
+ "вдалося звантажити %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "Відкритий ключ для %s не встановлено"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "Проблеми з відкриттям пакунка %s"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "Відкритий ключ %s не є надійним"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "Пакунок %s не підписано"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "Не вдалося вилучити %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s вилучено"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "Не вдалося вилучити файл %s, %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "Файл %s, %s, вилучено"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "Вилучено %d файлів %s"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] "%d файл %s вилучено"
++msgstr[1] "%d файли %s вилучено"
++msgstr[2] "%d файлів %s вилучено"
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "У наборі для %s знайдено декілька ідентичних відповідників"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "Немає відповідників %s.%s %s:%s-%s з оновлення"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+@@ -2612,121 +2738,124 @@ msgstr ""
+ "searchPackages() буде усунуто у майбутніх версіях Yum.                      "
+ "Використовуйте краще searchGenerator(). \n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "Пошук %d пакунків"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] "Пошук %d пакунка"
++msgstr[1] "Пошук %d пакунків"
++msgstr[2] "Пошук %d пакунків"
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "пошук пакунка %s"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "пошук серед файлів"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "пошук у супутніх записах"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "Для налаштованих сховищ дані груп недоступні"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "Групи з назвою %s не існує"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "пакунок %s було позначено у групі %s"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "Додавання пакунка %s з групи %s"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "Не вдалося знайти пакунок з назвою %s для встановлення"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr "Попередження: у групі %s немає жодного пакунка."
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr "У групі %s %u необов’язкових пакунки, які може бути встановлено."
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "У наборі пакунків не вдалося знайти кортеж пакунків %s"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "У базі даних RPM не вдалося знайти кортеж пакунків %s"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr "Некоректний прапорець версії від: %s"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "Пакунків з %s не знайдено"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "Об’єкт пакунка не був екземпляром об’єкта пакунка"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "Список встановлення порожній"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "Пошук віртуальних супутніх пакунків або файлів для %s"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "Відповідника параметра не знайдено: %s"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "Пакунок %s вже встановлено, його не можна позначити"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "Немає доступних для встановлення пакунків"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "Пакунок: %s  — вже у наборі операцій"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "Пакунок %s став застарілим після встановлення %s"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+@@ -2735,97 +2864,103 @@ msgstr ""
+ "Пакунок %s став застарілим після встановлення %s, але застарілий пакунок не "
+ "містить вимог до інших пакунків"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ "Пакунок %s став застарілим після встановлення %s, спробуємо встановити "
+ "замість нього %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "Пакунок %s вже встановлено, його версія є найсвіжішою"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "Відповідник пакунка %s вже встановлено. Перевірка існування оновлень."
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "Повне оновлення"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Неоновлюваний пакунок, який вже застарів: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr "Відповідного пакунка для оновлення не знайдено: %s"
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "Пакунок вже застарілий: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "Неоновлюваний пакунок, який застарів: %s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "Неоновлюваний пакунок, який було оновлено раніше: %s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "Відповідного пакунка для вилучення не знайдено"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr "Відповідного пакунка для вилучення не знайдено: %s"
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "Пропущено поточне робоче ядро: %s"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "Вилучення %s з запису операції"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "Не вдалося відкрити: %s. Пропускаємо."
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "Перевірка %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "Не вдалося виконати локальне встановлення deltarpm: %s. Пропущено."
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr "Не вдалося додати пакунок %s до операції. Несумісна архітектура: %s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ "Не вдалося встановити пакунок %s. Він є застарілим після встановлення "
+ "пакунка %s"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+@@ -2834,7 +2969,7 @@ msgstr ""
+ "Пакунок %s не встановлено, не вдалося оновити його. Віддайте команду yum "
+ "install, щоб встановити цей пакунок."
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+@@ -2843,98 +2978,103 @@ msgstr ""
+ "Пакунок %s.%s не встановлено, його не можна оновити. Вам слід скористатися "
+ "командою «yum install» для його встановлення."
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "Виключення %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "Позначення %s для встановлення"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "Позначення %s як оновлення %s"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s: не оновлює встановлений пакунок."
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "Не вдалося відкрити файл %s. Пропускаємо."
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "Проблема з перевстановленням: не виявлено пакунків для вилучення"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ "Проблема з перевстановленням: не виявлено відповідного пакунка %s для "
+ "встановлення"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "Немає доступних для зниження версії пакунків"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ "Пакунок %s можна встановлювати паралельно з іншими версіями, пропускаємо"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "Немає відповідників для доступного пакунка: %s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "Для пакунка доступне лише оновлення: %s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "Не вдалося знизити версію: %s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr "Не вдалося оновити: %s"
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr "Отримання ключа з %s"
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "Невдала спроба отримання ключа GPG: "
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr "Ключ підпису GPG ключа %s не збігається з ключем CA сховища: %s"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr "Перевірено відповідність підпису ключа GPG ключам CA"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "Некоректний ключ GPG з %s: %s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "Помилка обробник ключа GPG: у ключі немає значення %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2947,7 +3087,7 @@ msgstr ""
+ " Пакунок      : %s (%s)\n"
+ " Джерело      : %s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2958,25 +3098,25 @@ msgstr ""
+ " Ідентифікатор: «%s»\n"
+ " Джерело      : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "Ключ GPG у %s (0x%s) вже встановлено"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "Помилка імпортування ключа (код %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "Ключ успішно імпортовано"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr "Не встановлено жодного ключа"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+@@ -2985,25 +3125,25 @@ msgstr ""
+ "Ключі GPG зі списку сховища «%s» вже встановлено, але вони є некоректними для цього пакунка.\n"
+ "Перевірте, чи правильно вказано адреси URL для цього сховища."
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "Імпортування ключів не допомогло, помилкові ключі?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "Ключ GPG у %s (0x%s) вже імпортовано"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "Помилка імпортування ключа"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr "Не встановлено жодного ключа для сховища %s"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -3012,162 +3152,186 @@ msgstr ""
+ "Ключі GPG зі списку сховища «%s» вже встановлено, але вони є некоректними.\n"
+ "Перевірте, чи правильно вказано адреси URL для цього сховища."
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "Не вдалося знайти відповідного дзеркала."
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "Під час спроби звантаження пакунків сталися помилки."
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "Повідомте про цю помилку за адресою %s"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "Помилки під час тестування: "
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "Не вдалося визначити теку кешування: %s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ "Залежності не розв’язано. Запис операції з нерозв’язаними залежностями не "
+ "буде збережено."
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr "Не вдалося зберегти файл операцій %s: %s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ "Не вдалося отримати доступ або прочитати збережений запис операції %s: %s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr "версія rpmdb не відповідає збереженим даним щодо версії у операції, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr " ігнорується у відповідь на запит."
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr " завершення роботи."
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr "не вдалося знайти tsflags або tsflags не є цілим числом."
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr "Знайдено txmbr у невідомому поточному стані: %s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr "Не вдалося знайти txmbr: %s у стані %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr "Не вдалося знайти txmbr: %s з джерела: %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr "Не вистачає дій операції, зв’язків або ts було змінено,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ " ігнорується у відповідь на запит. Вам слід повторно виконати розв’язання "
+ "залежностей!"
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr "%s вже було перевірено, його не можна вилучати."
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr "Перевірка залежностей версій %s"
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr "%s має залежність від версії %s, яку було встановлено користувачем."
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr "%s немає залежностей від версій, встановлених користувачем."
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "Завантажені додатки: "
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "Не виявлено відповідника додатка %s"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "Додаток «%s» не завантажується, оскільки його вимкнено"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "Додаток «%s» не можна імпортувати"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "Додаток «%s» не визначає потрібної версії API"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "Для додатка «%s» потрібна версія API %s. Поточна версія API — %s."
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "Завантаження додатка «%s»"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "За адресою пошуку додатків виявлено декілька додатків з назвою «%s»"
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "Файл налаштувань %s не знайдено"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "Не вдалося знайти файл налаштувань для додатка %s"
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "підтримки реєстрації команд не передбачено"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "не має потрібних залежностей"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "конфліктує зі встановленими пакунками"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s є дублікатом з %s"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s є застарілим після встановлення %s"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s містить %s, але його не вдалося знайти"
+@@ -3176,6 +3340,17 @@ msgstr "%s містить %s, але його не вдалося знайти"
+ msgid "Repackaging"
+ msgstr "Перепакування"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"Недостатньо місця у каталозі для звантажень %s\n"
++"    * вільно   %s\n"
++"    * потрібно %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/ur.po b/po/ur.po
+index 40bd619..da11e70 100644
+--- a/po/ur.po
++++ b/po/ur.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Urdu (http://www.transifex.net/projects/p/yum/team/ur/)\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,438 @@ msgstr ""
+ "Language: ur\n"
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +456,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +901,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +954,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +962,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1499,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1551,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1568,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2056,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2163,784 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2949,7 @@ msgid ""
+ " From   : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2957,231 @@ msgid ""
+ " From  : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3190,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/yum.pot b/po/yum.pot
+index 97ae91a..bf24412 100644
+--- a/po/yum.pot
++++ b/po/yum.pot
+@@ -8,7 +8,7 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: PACKAGE VERSION\n"
+ "Report-Msgid-Bugs-To: \n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
++"POT-Creation-Date: 2011-10-17 17:36-0400\n"
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+ "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+ "Language-Team: LANGUAGE <LL at li.org>\n"
+@@ -16,415 +16,441 @@ msgstr ""
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=CHARSET\n"
+ "Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2776 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2233 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1528 ../output.py:2075 ../output.py:2240
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2074
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1526
++#: ../output.py:2074 ../output.py:2076 ../output.py:2748
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2751
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:269 ../cli.py:273 ../utils.py:346
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:276 ../cli.py:1970 ../utils.py:349
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:323
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:325
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:327
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:368
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:382
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:440
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:442
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
++msgstr[1] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:447
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:495
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:542
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:546
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:551
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:570 ../yum/__init__.py:5491
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:579 ../yum/__init__.py:5500
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:581 ../yum/__init__.py:5503
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:587
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:588
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:594
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:606
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:613
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:645
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:678
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:697 ../cli.py:740
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:723 ../cli.py:731
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:737 ../cli.py:821 ../cli.py:1058
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:830
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:833 ../cli.py:834 ../cli.py:1065 ../cli.py:1115 ../cli.py:1150
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:884
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:886
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:997
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:999
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:1025
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:1027
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1064
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1101
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1102
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1114
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1136
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1149
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1256
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1273
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1275
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1293
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1300
+ #, python-format
+ msgid ""
+ "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1304
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1307
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1411
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1450
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1455
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1471
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1474
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1477
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1480
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1483
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1486
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1489
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1525
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1542 ../cli.py:1600
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1548 ../cli.py:1606
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1554 ../cli.py:1612
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1560 ../cli.py:1618
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1563 ../cli.py:1620
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1643 ../cli.py:1671 ../cli.py:1677 ../yum/__init__.py:3689
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1681
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1683
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1703 ../yum/__init__.py:3701
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1709
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1711
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1752
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1763
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1789
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1809
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1821
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1843
+ #, python-format
+ msgid ""
+ "\n"
+@@ -432,438 +458,444 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1907
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1982
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:2036
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:2040
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:2043
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:2046
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:2049
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:2051
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:2055
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:2057
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:2060
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:2063
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:2065
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:2067
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:2069
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2073
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2074
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2078
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2082
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2085
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2087
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2090
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2092
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2094
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2096
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2099
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2102
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2104
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2106
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2108
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1429 ../output.py:1530
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:1430 ../output.py:2076
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371 ../output.py:1431
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1441 ../output.py:1462 ../output.py:2435
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -871,57 +903,58 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2230 ../output.py:2231
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1425
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1427 ../output.py:2236
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1428 ../output.py:2237
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1464
++msgid "Dependent package"
++msgid_plural "Dependent packages"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../output.py:1524
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1525
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1527
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1529
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1531
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1532
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1619
+ msgid "two"
+ msgstr ""
+ 
+@@ -929,7 +962,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1630
+ #, python-format
+ msgid ""
+ "\n"
+@@ -938,484 +971,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1641
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1667
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1689
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1690
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1691
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1692
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1693
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1694
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1708
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1709
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1778
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1788 ../output.py:1978
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1813 ../output.py:2424 ../output.py:2514
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1860
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1862 ../output.py:2312
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1863 ../output.py:2433
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1865
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1866 ../output.py:2314 ../output.py:2434
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1867 ../output.py:2315
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1914
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1940 ../output.py:2380
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1945
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1953
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:2004 ../output.py:2388
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2075 ../output.py:2238
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2077
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2077
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2115 ../output.py:2117 ../output.py:2536
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2119 ../output.py:2538
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2122 ../output.py:2124
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2140
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2142
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2144
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2146
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2147
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2150 ../output.py:2152
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2155 ../output.py:2157
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2161 ../output.py:2164 ../output.py:2166 ../output.py:2168
++#: ../output.py:2170
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2161 ../output.py:2166
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2164
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2168
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2170
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2175 ../output.py:2177 ../output.py:2567
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2186
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2191
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2195
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2199
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2207
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2218
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2224
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2232
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2234
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2235
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2239
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2313
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2339
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2340
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2341
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2342
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2343
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2344
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2345
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2392
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2398
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2399
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2412
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2539
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2540
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2543
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2545
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2548
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2550
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2552
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2554
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2556
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2558
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2561
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2563
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2565
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2569
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2573
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2577
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2622
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2623
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2624
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2625
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2626
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2627
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2628
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2629
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2633
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2644
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2650
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2656
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2669 ../output.py:2682
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2695
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2704
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2721
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2723
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2732
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2737
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2739
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2754
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2755
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2756
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2774
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2809 ../output.py:2822
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2828
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2837
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:129
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:130
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:131
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:132
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:133
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:134 ../yumcommands.py:1796
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:155
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:157
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:160
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:165
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:167
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:196 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:208 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:210 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1423,47 +1508,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:286 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:352
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:355
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:413 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:417 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:419 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:426 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:432 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:448 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1475,7 +1560,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1493,451 +1578,480 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
+-msgid "Determine which package provides the given dependency"
+-msgstr ""
+-
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1457
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1488
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1514
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1557
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1584
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1616
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1695 ../yumcommands.py:1696
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1722 ../yumcommands.py:1723
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1739
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1740
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1743
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1746
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1750
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1756
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1761
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1763
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1764
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1771 ../yumcommands.py:1792
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1779
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1783
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1786
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1802
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1804
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1807
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1809
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1812
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1816
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1820
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1824
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1834 ../yumcommands.py:1863
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1851 ../yumcommands.py:1852 ../yumcommands.py:1870
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1864
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1926
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1968
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1973
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1975
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2060
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2072
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2135
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2146
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2185
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2237
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2247
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2248
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2277
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2285
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2294
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2303
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2367
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2461
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2462
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2463
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2464
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2465
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2466
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2467
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2468
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2469
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2470
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2503
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2510
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2602
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2667
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2684
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2688
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2694
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1948,908 +2062,927 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/execute access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:86
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:101
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:155
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:173
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:224
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:238 ../yum/depsolve.py:871
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:250
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:266
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:288
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:329
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:356
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:366
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:374
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:397
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:401
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+ 
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:406 ../yum/depsolve.py:441
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:435 ../yum/depsolve.py:445
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:451
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:464
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:467
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:475
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:506
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:548
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:564
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:575
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:593
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:642
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:651
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:786 ../yum/depsolve.py:901
+ msgid "Success - empty transaction"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:826 ../yum/depsolve.py:861
+ msgid "Restarting Loop"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:881
+ msgid "Dependency Process ending"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:903
+ msgid "Success - deps resolved"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:927
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:1013
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1256
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1283 ../yum/depsolve.py:1289
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1385
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1397
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1405
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1409
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1446
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1450
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1455
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1471
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr ""
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1630
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1640
+ msgid "Transaction couldn't start:"
+ msgstr ""
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1643
+ msgid "Could not run transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1657
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1700
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1769
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1896
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1913
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1917
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr ""
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1965
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2018
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum --enablerepo="
+ "%s clean metadata"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2041
+ msgid "Could not perform checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2044
+ msgid "Package does not match checksum"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2107
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2110 ../yum/__init__.py:2140
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2218
+ msgid "Header is not complete."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2258
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2318
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2322
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2330
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2334
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2376
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2380
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2439
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2443
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2445
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr ""
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2535
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2541
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2905
+ msgid ""
+ "searchPackages() will go away in a future version of "
+ "Yum.                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2961
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr ""
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
++msgstr[1] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2965
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2977
+ msgid "searching in file entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2984
+ msgid "searching in provides entries"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3069
+ msgid "No group data available for configured repositories"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3105 ../yum/__init__.py:3125 ../yum/__init__.py:3160
++#: ../yum/__init__.py:3166 ../yum/__init__.py:3259 ../yum/__init__.py:3263
++#: ../yum/__init__.py:3715
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3137 ../yum/__init__.py:3279
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3189
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3193
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3243
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3245
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3317
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3345
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3408 ../yum/__init__.py:3470
+ #, python-format
+ msgid "Invalid version flag from: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3432 ../yum/__init__.py:3437 ../yum/__init__.py:3494
++#: ../yum/__init__.py:3499
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3799
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3803
+ msgid "Nothing specified to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3822 ../yum/__init__.py:4724
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3828 ../yum/__init__.py:4192 ../yum/__init__.py:4394
++#: ../yum/__init__.py:4730
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3905
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3908
+ msgid "No package(s) available to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3920
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3948
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3953
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3956
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3964
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3978
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4101
+ msgid "Updating Everything"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4125 ../yum/__init__.py:4267 ../yum/__init__.py:4297
++#: ../yum/__init__.py:4333
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4170 ../yum/__init__.py:4390
+ #, python-format
+ msgid "%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4210
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4256
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4301 ../yum/__init__.py:4337
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4407
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4413
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4419
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4456
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4459 ../yum/__init__.py:4576 ../yum/__init__.py:4661
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4463
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4472 ../yum/__init__.py:4579 ../yum/__init__.py:4664
+ #, python-format
+ msgid "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4478
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4486
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4505 ../yum/__init__.py:4512
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4521 ../yum/__init__.py:4584 ../yum/__init__.py:4669
+ #, python-format
+ msgid "Excluding %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4526
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4532
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4539
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4573 ../yum/__init__.py:4658
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4613
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4639
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4752
+ msgid "No package(s) available to downgrade"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4760
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4806
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4813
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4926 ../yum/__init__.py:4993
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4943 ../yum/__init__.py:4999
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:5032
+ #, python-format
+ msgid "Retrieving key from %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:5050
+ msgid "GPG key retrieval failed: "
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:5073
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5075
+ msgid "GPG key signature verified against CA Key(s)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5083
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5092
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5108
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+-" Userid : %s\n"
+-" Package: %s (%s)\n"
+-" From   : %s"
++" Userid     : \"%s\"\n"
++" Fingerprint: %s\n"
++" Package    : %s (%s)\n"
++" From       : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5118
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+-" Userid: \"%s\"\n"
+-" From  : %s"
++" Userid     : \"%s\"\n"
++" Fingerprint: %s\n"
++" From       : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5153
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5192
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5193 ../yum/__init__.py:5279
+ msgid "Key imported successfully"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5197
+ msgid "Didn't install any keys"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5201
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they "
+@@ -2857,25 +2990,25 @@ msgid ""
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5210
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5234
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5278
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5294
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5298
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they "
+@@ -2883,158 +3016,182 @@ msgid ""
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5448
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5450
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5505
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5522
+ msgid "Test Transaction Errors: "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5634
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5695 ../yum/__init__.py:5697
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5726 ../yum/__init__.py:5728
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5752
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5781
+ msgid "rpmdb ver mismatched saved transaction version, "
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5783
+ msgid " ignoring, as requested."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5786 ../yum/__init__.py:5921
+ msgid " aborting."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5795
+ msgid "cannot find tsflags or tsflags not integer."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5834
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5838
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5874 ../yum/__init__.py:5891
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5916
+ msgid "Transaction members, relations are missing or ts has been modified,"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5918
+ msgid " ignoring, as requested. You must redepsolve!"
+ msgstr ""
+ 
++#. Debugging output
++#: ../yum/__init__.py:5993 ../yum/__init__.py:6012
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5996
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:6017
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:6031
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid ""
+ "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3043,6 +3200,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/zh_CN.po b/po/zh_CN.po
+index 9fe1a5c..f5d9391 100644
+--- a/po/zh_CN.po
++++ b/po/zh_CN.po
+@@ -2,14 +2,15 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
+-# Mike Ma <zhtx10 at gmail.com>, 2011
+-# lovenemesis <lovenemesis at gmail.com>, 2011
++# Translators:
++# lovenemesis <lovenemesis at gmail.com>, 2011.
++# Mike Ma <zhtx10 at gmail.com>, 2011.
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/yum/team/zh_CN/)\n"
+ "MIME-Version: 1.0\n"
+@@ -18,122 +19,123 @@ msgstr ""
+ "Language: zh_CN\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr "正在升级"
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr "正在删除"
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr "正在安装"
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr "被取代"
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr "更新完毕"
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr "已删除"
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr "已安装"
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr "没有文件头 - 怎么回事?"
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr "重新打包"
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr "错误:%s 输出状态不对:%s"
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr "已删除:%s"
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr "正在删除"
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr "清理"
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr "命令 \"%s\" 已有定义"
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr "设置仓库"
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr "从本地文件读入仓库元数据"
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr "配置错误:%s"
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr "属性错误:%s"
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr "  已安装: %s-%s 在 %s"
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr "  构建    :%s 在 %s"
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr "  已经提交:%s ,共 %s "
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr "你需要给出命令"
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr "没有命令: %s。请使用 %s --help"
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr "磁盘要求:\n"
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr "  至少需要 %d MB 以上的空间在文件系统 %s 上。\n"
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] "  至少需要 %d MB 以上的空间在文件系统 %s 上。\n"
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+@@ -141,60 +143,60 @@ msgstr ""
+ "出错情况\n"
+ "-------------\n"
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr "尝试执行事务但无须任何处理。现在退出。"
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr "在用户的命令下退出"
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr "下载软件包:"
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr "下载软件包出错:\n"
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+-msgstr ""
++msgstr "运行事务检查"
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr "错误:您需要更新 rpm 以处理:"
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+-msgstr ""
++msgstr "事务检查与依赖解决错误:"
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr "RPM 需要更新"
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr "请在%s报告此错误"
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr "执行事务测试"
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr "事务检验出错:\n"
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr "事务测试成功"
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr "执行事务"
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+@@ -202,233 +204,248 @@ msgstr ""
+ "如果不加干预,拒绝自动导入密钥。\n"
+ "指定 \"-y\" 改变这个行为。"
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr "  * 也许您希望:"
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr "包 %s%s%s 可用,但未安装。"
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr "没有可用的包 %s%s%s。"
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr "将安装的软件包"
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr "无须任何处理"
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr "升级 %d 个软件包"
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr "不升级任何软件包"
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr "已标记的欲分布同步的%d个包"
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr "没有已标记的欲分布同步的包"
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr "删除 %d 个软件包"
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr "不删除任何软件包"
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr "要降级的包"
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr "(来自 %s)"
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr "安装的包 %s%s%s%s 不可用。"
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr "重装的包"
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr "未指定软件包"
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr "将安装的软件包"
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+-msgstr ""
++msgstr "N/S 匹配:%s"
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  名称和简介匹配 %sonly%s,使用“search all”试试。"
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  全名和简介匹配 %sonly%s,使用“search all”试试。"
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr "匹配:%s"
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+-msgstr ""
++msgstr "  名称和简介匹配 %smonstly%s,使用“search all”试试。"
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr "警告:没有匹配 %s 的软件包"
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr "没有找到匹配的软件包"
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr "没有找到 %s 软件包"
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr "正在清理仓库: "
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr "清理一切"
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr "清理文件头缓存"
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr "清理软件包"
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr "清理 XML 元数据"
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr "清理数据库缓存"
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr "清理过期缓存元数据"
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr "正在清理缓存rpmdb数据"
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr "清理插件"
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+-msgstr ""
++msgstr "警告:无组匹配:%s"
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr "已安装的组:"
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+-msgstr ""
++msgstr "安装了的语言组:"
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr "有效的组:"
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+-msgstr ""
++msgstr "可用语言组:"
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr "完成"
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr "警告:组 %s 不存在。"
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr "指定组中没有可安装或升级的软件包"
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "安装 %d 个软件包"
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr "没有名为 %s 的组"
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr "指定组中没有要删除的软件包"
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr "删除 %d 个软件包"
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr "略过已安装的 %s 软件包"
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr "丢弃不可比较的软件包 %s.%s"
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr "%s 未安装,加入列表以备安装"
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr "插件选项"
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr "命令行错误:%s"
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -439,284 +456,288 @@ msgstr ""
+ "\n"
+ "%s: %s 选项需要参数"
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr "--color 需要参数:auto, always, never"
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+-msgstr ""
++msgstr "-- 安装根必须是绝对路径:%s"
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr "显示此帮助消息并退出"
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr "容忍错误"
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr "完全从系统缓存运行,不升级缓存"
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr "配置文件路径"
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr "命令最长等待时间"
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr "调试输出级别"
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr "在 list/search 命令下,显示仓库里重复的条目"
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr "错误输出级别"
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr "rpm调试输出等级"
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr "安静的操作"
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr "详尽的操作过程"
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr "回答所有的问题为是"
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr "显示 Yum 版本信息并退出"
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr "设置目标根目录"
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr "启用一个或多个仓库(支持通配符)"
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr "禁用一个或多个仓库(支持通配符)"
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr "用全名或通配符排除软件包"
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr "禁止从主配置,从仓库或者从任何位置排除"
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr "升级时考虑软件包取代关系"
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr "禁用 Yum 插件"
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr "禁用 gpg 签名检测"
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr "禁用指定名称的插件"
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr "由名称启用插件"
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr "跳过有依赖问题的软件包"
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr "配置是否使用颜色"
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr "在yum配置和repo文件里设置$releasever的值"
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr "设置任意配置和仓库选项"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr "一月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr "二月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr "三月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr "四月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr "五月"
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr "六月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr "七月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr "八月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr "九月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr "十月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr "十一月"
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr "十二月"
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr "尝试其他镜像。"
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr "名称        :%s%s%s"
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr "构架        :%s"
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr "时期       : %s"
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr "版本     :%s"
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr "发布     :%s"
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr "大小        :%s"
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr "仓库        :%s"
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr "来自仓库   :%s"
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr "提交者   :%s"
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr "提交时间  :%s"
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr "构建时间:%s"
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr "安装时间:%s"
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr "由 %s 安装"
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr "由 %s 修改"
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr "简介     : "
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr "网址         :%s"
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr "协议     : "
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr "描述: "
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr "y"
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr "是"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr "n"
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr "否"
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr "确定吗?[y/N]:"
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+@@ -725,154 +746,155 @@ msgstr ""
+ "\n"
+ "组:%s"
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr " 组编号:%s"
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr " 描述:%s"
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+-msgstr ""
++msgstr " 语言:%s"
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr " 必要的软件包:"
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr " 默认的软件包:"
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr " 可选的软件包:"
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr " 可能的软件包:"
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr "软件包:%s"
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr " 此软件包无依赖关系"
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr "   依赖: %s"
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr " 不满足的依赖关系"
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr "匹配来自于:"
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr "协议     :%s"
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr "文件名    :%s"
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr "其他       : "
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr "计算总下载量时出错"
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr "总文件大小:%s"
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr "总下载量:%s"
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr "安装大小:%s"
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr "有一个错误计算安装大小"
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr "重新安装"
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr "正在降级"
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr "为依赖而安装"
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr "为依赖而更新"
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr "为依赖而移除"
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr "跳过(依赖问题)"
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr "未安装"
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+-msgstr ""
++msgstr "不可用"
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr "软件包"
++msgid_plural "Packages"
++msgstr[0] "软件包"
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr "架构"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr "版本"
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr "仓库"
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr "大小"
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr "      替换  %s%s%s.%s %s\n"
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -883,57 +905,52 @@ msgstr ""
+ "事务概要\n"
+ "%s\n"
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
+-msgstr "安装   %5.5s 个包\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
++msgstr "安装"
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
+-msgstr "升级   %5.5s 个包\n"
++#: ../output.py:1422
++msgid "Upgrade"
++msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
+-msgstr "移除    %5.5s 个包\n"
++#: ../output.py:1423
++msgid "Remove"
++msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
+-msgstr "重新安装 %5.5s 个包\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
++msgstr "重新安装"
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
+-msgstr "降级 %5.5s 个包\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
++msgstr "降级"
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr "删除"
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr "作为依赖被删除"
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr "作为依赖被安装"
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr "作为依赖被升级"
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr "替代"
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr "失败"
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr "二"
+ 
+@@ -941,7 +958,7 @@ msgstr "二"
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -952,364 +969,416 @@ msgstr ""
+ " 当前下载已取消,再次输入%s个中断(ctrl-c)%s于 %s%s%s 秒内\n"
+ "以退出。\n"
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr "用户中断"
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr "总计"
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr "I"
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr "O"
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr "E"
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr "R"
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr "D"
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr "U"
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr "<空>"
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr "系统"
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+-msgstr ""
++msgstr "跳过合并事务 %d 到 %d,因为它俩重叠"
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+-msgstr ""
++msgstr "没有事务"
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr "错误的事务 ID 或软件包"
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+-msgstr ""
++msgstr "命令行"
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr "登陆用户"
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr "ID"
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr "日期和时间"
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr "操作"
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr "更改"
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr "没有事务 ID"
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr "错误的事务 ID"
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr "未能找到指定事务 ID"
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr "找到多个事务 ID!"
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr "未指定事务 ID、或者软件包"
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr "降级"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr "较老的"
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr "较早的"
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr "事务 ID:"
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr "起始时间    :"
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr "启动 rpmdb     :"
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+-msgstr ""
++msgstr "(%u 秒)"
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+-msgstr ""
++msgstr "(%u 分钟)"
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+-msgstr ""
++msgstr "(%u 小时)"
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+-msgstr ""
++msgstr "(%u 天)"
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr "结束时间       :"
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr "结束 rpmdb      :"
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr "用户           :"
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr "返回码    :"
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr "已终止"
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+-msgstr ""
++msgstr "失败:"
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr "失败:"
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr "成功"
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr "命令行   :"
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr "其他非默认信息已保存:%d"
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr "事务完成由:"
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr "已改变的包:"
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr "已跳过的包:"
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr "Rpmdb 问题:"
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr "Scriptlet 输出:"
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr "错误:"
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr "安装"
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr "依赖安装"
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr "取代中"
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr "抹去"
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr "重新安装"
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr "降级"
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr "更新"
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr "时间"
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr "最近一天"
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr "最近一周"
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr "最近2周"
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr "最近3个月"
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr "最近6个月"
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr "最近一年"
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr "一年以前"
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr "未找到事务 %s"
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr "事务 ID:"
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr "可用的额外历史信息:"
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr "%s: 未找到符合该名称的额外数据"
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr "安装"
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+-msgstr ""
++msgstr "一个更新"
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr "删除"
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr "已重新安装"
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+-msgstr ""
++msgstr "一个降级"
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+-msgstr ""
++msgstr "舍弃"
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr "升级"
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr "取代"
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+-msgstr ""
++msgstr "---> 软件包 %s.%s.%s.%s-%s 将被 %s"
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr "--> 执行事务检查"
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr "--> 使用新的信息重新计算依赖关系。"
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr "--> 完成依赖关系计算"
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr "--> 处理依赖关系 %s,它被软件包 %s 需要"
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr "---> 保留软件包: %s"
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr "--> 无法解决的依赖:%s"
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr "软件包:%s"
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1318,7 +1387,7 @@ msgstr ""
+ "\n"
+ "    需要:%s"
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1327,7 +1396,7 @@ msgstr ""
+ "\n"
+ "    %s: %s (%s)"
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1336,7 +1405,7 @@ msgstr ""
+ "\n"
+ "        %s"
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+@@ -1345,85 +1414,85 @@ msgstr ""
+ "        未找到"
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr "更新,由"
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr "降级,由"
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr "取代,由"
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr "可用"
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr "--> 处理 %s 与 %s 的冲突"
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr "--> 根据指定的软件包创建事务,请等待。"
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr "---> 下载 %s 的文件头作为事务的一部分。"
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr "运行中"
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr "睡眠中"
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr "不可中断"
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr "僵死"
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr "跟踪/停止"
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr "未知"
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr "  另一个应用程序是:PackageKit"
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr "  另一个应用程序是:%s"
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr "    内存:%5s RSS (%5sB VSZ)"
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr "    已启动: %s - %s之前"
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr "    状态  :%s,进程ID:%d"
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+@@ -1433,7 +1502,7 @@ msgstr ""
+ "\n"
+ "由于用户取消而退出"
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+@@ -1443,7 +1512,7 @@ msgstr ""
+ "\n"
+ "由于管道被破坏而退出"
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1454,41 +1523,41 @@ msgstr ""
+ "\n"
+ "%s"
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr "另外一个程序锁定了 yum;遵循 exit_on_lock 设置退出"
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr "插件退出错误:%s"
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr "Yum 错误:%s"
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr "错误:%s"
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr " 您可以尝试用 --skip-broken 来解决该问题"
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr " 您可以尝试运行: rpm -Va --nofiles --nodigest"
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr "未知错误:退出码 %d:"
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+@@ -1496,19 +1565,19 @@ msgstr ""
+ "\n"
+ "依赖关系解决"
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr "完毕!"
+ 
+ #: ../yumcommands.py:42
+ msgid " Mini usage:\n"
+-msgstr ""
++msgstr " 迷你用法:\n"
+ 
+ #: ../yumcommands.py:52
+ msgid "You need to be root to perform this command."
+ msgstr "你需要以 root 身份执行此命令。"
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1533,53 +1602,53 @@ msgstr ""
+ "\n"
+ "详情请联系您的发行版或软件包制作人。\n"
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+-msgstr ""
++msgstr "问题仓库:%s"
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr "错误:需要为 %s 指定软件包列表"
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr "错误:需要指定匹配模式"
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr "错误:需要组或组的列表"
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr "错误:清理命令需要参数:%s"
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr "错误:清理命令参数不正确:%r"
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr "没有给外壳指定参数"
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr "传给外壳的文件名:%s"
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr "作为参数传给外壳的文件 %s 不存在。"
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr "错误:作为参数传给外壳超过一个文件。"
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+@@ -1589,306 +1658,299 @@ msgstr ""
+ "执行 \"yum repolist all\" 查看您拥有的仓库。\n"
+ "您可以用 yum-config-manager --enable &lt;仓库名&gt; 来启用仓库"
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr "软件包……"
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr "向系统中安装一个或多个软件包"
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr "设置安装进程"
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr "[软件包……]"
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr "更新系统中的一个或多个软件包"
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr "设置更新进程"
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr "已同步软件包到最新可用版本"
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr "正在设置发行版同步进程"
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr "显示关于软件包或组的详细信息"
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr "已安装的软件包"
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr "可安装的软件包"
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr "更多软件包"
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr "更新的软件包"
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr "取代的软件包"
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr "最近添加的软件包"
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr "没有匹配的软件包可以列出"
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr "列出一个或一组软件包"
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr "从系统中移除一个或多个软件包"
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr "设置移除进程"
+ 
+-#: ../yumcommands.py:435
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
++msgstr ""
++
++#: ../yumcommands.py:776
+ msgid "Setting up Group Process"
+ msgstr "设置组进程"
+ 
+-#: ../yumcommands.py:441
++#: ../yumcommands.py:782
+ msgid "No Groups on which to run command"
+ msgstr "没有指定要处理的组"
+ 
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
+-msgstr "列出可安装的组"
+-
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
+-msgstr "向系统中安装一组软件包"
+-
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
+-msgstr "从系统中移除一组软件包"
+-
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
+-msgstr "显示组的详细信息"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
++msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr "创建元数据缓存"
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr "为元数据文件生成缓存文件。"
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr "这需要一段时间,取决于这台计算机的速度"
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr "元数据缓存已建立"
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr "删除缓存的数据"
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr "查找提供指定内容的软件包"
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr "检查是否有软件包更新"
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr "在软件包详细信息中搜索指定字符串"
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr "搜索软件包:"
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr "更新软件包同时考虑软件包取代关系"
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr "设置升级进程"
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr "安装本地的 RPM"
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr "设置本地安装进程"
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr "判断哪个包提供了指定的依赖"
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr "查找依赖的软件包:"
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr "运行交互式的 yum 外壳"
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr "设置 Yum 外壳"
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr "列出软件包的依赖关系"
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr "查找依赖:"
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr "显示已配置的仓库"
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr "启用"
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr "禁用"
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr "仓库ID     : "
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr "仓库名    : "
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr "仓库状态  : "
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr "仓库版本: "
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr "仓库标志    : "
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr "仓库发行版标签: "
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr "仓库更新: "
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr "仓库包    : "
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr "仓库大小    : "
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr "仓库基本地址: "
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr "仓库元链接:"
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr "更新:"
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr "仓库镜像:"
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr "从不 (最后 %s)"
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr "瞬间(最后%s)"
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr "%s 秒 (最后 %s)"
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr "仓库到期:"
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr "仓库排除:"
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr "仓库包括:"
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr "仓库除外:"
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+-msgstr ""
++msgstr "仓库文件名:"
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr "仓库标识"
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr "状态"
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr "仓库名称"
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr "显示用法信息"
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr "没有关于 %s 的帮助"
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+@@ -1898,7 +1960,7 @@ msgstr ""
+ "\n"
+ "别名:"
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+@@ -1908,115 +1970,161 @@ msgstr ""
+ "\n"
+ "别名:"
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr "设置覆盖安装进程"
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr "覆盖安装一个包"
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr "设置降级过程"
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr "降级包"
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr "显示机器和/或可用的仓库版本。"
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr " Yum版本组:"
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr " 组   :"
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr " 包:"
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr "已安装:"
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr "组已安装:"
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr "可用:"
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr "组内现有:"
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr "显示或使用事务历史"
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr "无效的历史子命令,使用:%s。"
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr "你没有权限到历史数据。"
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr "检查rpmdb里的问题"
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+-msgstr ""
++msgstr "从文件名中加载一个已存事务"
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+-msgstr ""
++msgstr "指定文件中没有已存事务。"
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+-msgstr ""
++msgstr "正在从 %s 中加载事务"
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+-msgstr ""
++msgstr "事务从 %s 载入,还有 %s 成员。"
+ 
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
+ msgid " Yum checks failed: %s"
++msgstr " Yum 检查失败:%s"
++
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:114
++#: ../yummain.py:124
++msgid "Can't create lock file; exiting"
++msgstr "不能创建锁文件,退出"
++
++#: ../yummain.py:128
+ msgid ""
+ "Another app is currently holding the yum lock; waiting for it to exit..."
+ msgstr "另外一个程序锁定了 yum;等待它退出……"
+ 
+-#: ../yummain.py:120
+-msgid "Can't create lock file; exiting"
+-msgstr ""
+-
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr "解决依赖关系"
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+@@ -2026,74 +2134,74 @@ msgstr ""
+ "\n"
+ "由于用户取消而退出。"
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr "doTsSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr "在配置可用前设置事务集"
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr "配置文件 %s 中使用 tsflag 是错误的"
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr "搜索群集中 %s 的依赖关系"
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr "成员:%s"
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr "%s 转为安装"
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr "添加软件包 %s 到 %s 模式"
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr "正在删除软件包 %s"
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr "%s 需要:%s"
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr "%s 需要 %s"
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr "已查询过所需的依赖关系,跳过"
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr "所需的依赖关系并非软件包名称。搜索:%s"
+ 
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
+ #, python-format
+ msgid "Potential Provider: %s"
+ msgstr " 可能的提供者:%s"
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
+ #, python-format
+ msgid "Mode is %s for provider of %s: %s"
+ msgstr "模式 %s 被用于提供 %s 的软件包:%s"
+ 
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr "提供 %s 的软件包使用的模式:%s"
+@@ -2101,114 +2209,114 @@ msgstr "提供 %s 的软件包使用的模式:%s"
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
+ #, python-format
+ msgid "Trying to update %s to resolve dep"
+-msgstr ""
++msgstr "尝试升级 %s 来解决依赖"
+ 
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
+ #, python-format
+ msgid "No update paths found for %s. Failure!"
+-msgstr ""
++msgstr "未为 %s 找到更新路径。失败!"
+ 
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
+ #, python-format
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr "事务:%s 软件包要求删除 %s"
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr "事务:令 %s 被 %s 取代以解决依赖关系。"
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr "事务:更新 %s 以解决依赖。"
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
+ #, python-format
+ msgid "Cannot find an update path for dep for: %s"
+ msgstr "无法找到 %s 依赖的更新路径"
+ 
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
+ #, python-format
+ msgid "Quick matched %s to require for %s"
+ msgstr "快速匹配 %s 到 %s 的需求"
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
+ #, python-format
+ msgid "%s is in providing packages but it is already installed, removing."
+ msgstr "提供 %s 的软件包存在而且已被安装,不再检测。"
+ 
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
+ #, python-format
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr "可能解决依赖的 %s 软件包已经有更新的版本存在于事务中了。"
+ 
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
+ #, python-format
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr "可能解决依赖的 %s 软件包已经有更新的版本安装过了。"
+ 
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
+ #, python-format
+ msgid "%s already in ts, skipping this one"
+ msgstr "%s 已包含在事务中,不再重复"
+ 
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
+ #, python-format
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr "事务:将 %s 作为 %s 的更新"
+ 
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
+ #, python-format
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr "事务:将 %s 作为 %s 安装"
+ 
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
+ msgstr "成功 - 空的事务"
+ 
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr "重新开始循环"
+ 
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
+ msgstr "依赖进程即将完成"
+ 
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
+ msgstr "成功 - 依赖关系解决"
+ 
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
+ #, python-format
+ msgid "Checking deps for %s"
+ msgstr "检查 %s 的依赖关系"
+ 
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
+ #, python-format
+ msgid "looking for %s as a requirement of %s"
+ msgstr "搜索 %s 作为 %s 的依赖关系"
+ 
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr "为 %s 运行 compare_providers()"
+ 
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
+ #, python-format
+ msgid "better arch in po %s"
+ msgstr "%s 提供了更好的架构选择"
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
+ #, python-format
+ msgid "%s obsoletes %s"
+ msgstr "%s 取代 %s"
+ 
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
+ #, python-format
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+@@ -2217,162 +2325,162 @@ msgstr ""
+ "比较 %s 与 %s 架构差异,在 %s\n"
+ "  胜者:%s"
+ 
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
+ #, python-format
+ msgid "common sourcerpm %s and %s"
+ msgstr "%s 和 %s 具有共同的源代码 rpm"
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
+ #, python-format
+ msgid "base package %s is installed for %s"
+ msgstr "基础软件包 %s 由于 %s 已经安装"
+ 
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
+ #, python-format
+ msgid "common prefix of %s between %s and %s"
+ msgstr "共同的前缀 %s 存在于 %s 和 %s 之间"
+ 
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr "最小需求: %d"
+ 
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr " 胜者:%s"
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
+ #, python-format
+ msgid " Loser(with %d): %s"
+ msgstr " 负者( %d):%s"
+ 
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
+ msgstr "最佳顺序:%s"
+ 
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr "doConfigSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
+ #, python-format
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr "软件仓库 %r:传递配置出错: %s"
+ 
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
+ #, python-format
+ msgid "Repository %r is missing name in configuration, using id"
+ msgstr "仓库 %r 在配置文件中未指定名字,使用标识代替"
+ 
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr "插件已初始化"
+ 
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr "doRpmDBSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr "读入本地 RPMDB"
+ 
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr "doRepoSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr "doSackSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr "设置软件包群集"
+ 
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
+ #, python-format
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr "仓库 %s 的对象缺少 _resetSack 方法\n"
+ 
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr "因此仓库无法复位。\n"
+ 
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr "doUpdateSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr "建立升级对象"
+ 
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr "doGroupSetup() 将从未来版本的 Yum 中去掉。\n"
+ 
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr "获取组的元数据"
+ 
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
+ #, python-format
+ msgid "Adding group file from repository: %s"
+ msgstr "从仓库 %s 中添加组文件"
+ 
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
+ #, python-format
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr "为仓库 %s 添加组文件时失败:%s"
+ 
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr "在现有的仓库中没有提供组"
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr "获取软件包标签元数据"
+ 
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
+ #, python-format
+ msgid "Adding tags from repository: %s"
+ msgstr "从软件仓库添加标签:%s"
+ 
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr "从软件仓库添加软件包标签失败:%s - %s"
+ 
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr "正在导入额外的文件列表信息"
+ 
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr "程序 %s%s%s 位于 yum-utils 软件包。"
+ 
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr "存在未完成的操作。您或许需要先运行 yum-complete-transaction 来完成。"
+ 
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+-msgstr ""
++msgstr "--> 找到剩下的不需要的依赖"
+ 
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+-msgstr ""
++msgstr "保护多库版本:%s != %s"
+ 
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
+ #, python-format
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr "尝试移除受保护的 \"%s\""
+ 
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+@@ -2380,502 +2488,507 @@ msgstr ""
+ "\n"
+ "因为依赖关系问题而跳过的软件包:"
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
+ #, python-format
+ msgid "    %s from %s"
+ msgstr "    %s 来自 %s"
+ 
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
+ #, python-format
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr "** 发现 %d 个已存在的 rpmdb 问题, 'yum check' 输出如下:"
+ 
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr "警告:RPMDB 在 yum 以外被修改。"
+ 
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr "缺失的需求"
+ 
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr "安装冲突"
+ 
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
+ msgid ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr "警告:事务过程中出现 scriptlet 或其他非致命性错误。"
+ 
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr "事务无法启动:"
+ 
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr "不能执行事务。"
+ 
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
+ #, python-format
+ msgid "Failed to remove transaction file %s"
+ msgstr "移除事务文件 %s 失败"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
+ #, python-format
+ msgid "%s was supposed to be installed but is not!"
+ msgstr "%s 假定被安装但并非这样!"
+ 
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
+ #, python-format
+ msgid "%s was supposed to be removed but is not!"
+ msgstr "%s 假定被移除但并非这样!"
+ 
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
+ #, python-format
+ msgid "Could not open lock %s: %s"
+ msgstr "不能打开锁 %s : %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
+ #, python-format
+ msgid "Unable to check if PID %s is active"
+ msgstr "无法检测 PID %s 是否激活"
+ 
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
+ #, python-format
+ msgid "Existing lock %s: another copy is running as pid %s."
+ msgstr "%s 已被锁定,PID 为 %s 的另一个程序正在运行。"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
+ #, python-format
+ msgid "Could not create lock at %s: %s "
+ msgstr "无法在 %s 创建锁:%s"
+ 
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
+ #, python-format
+ msgid ""
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
+ msgstr "软件包与预期下载的不符。建议:运行 yum --enablerepo=%s clean metadata"
+ 
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
+ msgstr "无法执行校验和"
+ 
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr "软件包校验和不匹配"
+ 
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
+ #, python-format
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr "软件包校验和失败但是 %s 已启用缓存"
+ 
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
+ #, python-format
+ msgid "using local copy of %s"
+ msgstr "使用本地的 %s 副本"
+ 
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
+-msgstr ""
+-"下载目录 %s 空间不足\n"
+-"    * 空闲   %s\n"
+-"    * 需要 %s"
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
+ msgstr "文件头不完整。"
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
+ msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
+ msgstr "文件头不在本地缓存中,但是因为处于只使用缓存的模式,无法下载 %s"
+ 
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
+ #, python-format
+ msgid "Public key for %s is not installed"
+ msgstr "%s 的公钥没有安装"
+ 
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
+ #, python-format
+ msgid "Problem opening package %s"
+ msgstr "打开软件包 %s 出现问题"
+ 
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
+ msgstr "%s 的公钥不可信任"
+ 
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr "软件包 %s 没有签名"
+ 
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr "无法删除 %s"
+ 
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr "%s 已删除"
+ 
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
+ #, python-format
+ msgid "Cannot remove %s file %s"
+ msgstr "无法删除 %s 文件 %s"
+ 
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
+ #, python-format
+ msgid "%s file %s removed"
+ msgstr "%s 文件 %s 已删除"
+ 
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
+ #, python-format
+-msgid "%d %s files removed"
+-msgstr "%d %s 文件已删除"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
+ #, python-format
+ msgid "More than one identical match in sack for %s"
+ msgstr "群集中有超过一个相同的匹配 %s"
+ 
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
+ #, python-format
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr "更新不包括匹配 %s.%s %s:%s-%s 的内容"
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr "searchPackages() 将从未来版本的 Yum 中去掉,被searchGenerator() 替代。\n"
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
+ #, python-format
+-msgid "Searching %d packages"
+-msgstr "搜索 %d 个软件包"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
+ 
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr "搜索 %s 软件包"
+ 
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr "在文件中搜索"
+ 
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr "在可提供的依赖中搜索"
+ 
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr "配置的软件仓库不包含组数据"
+ 
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
+ #, python-format
+ msgid "No Group named %s exists"
+ msgstr "不存在 %s 组"
+ 
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
+ #, python-format
+ msgid "package %s was not marked in group %s"
+ msgstr "软件包 %s 没有包含在 %s 组中"
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr "添加包 %s 从组 %s 中"
+ 
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr "找不到名为 %s 的软件包来安装"
+ 
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
+ #, python-format
+ msgid "Warning: Group %s does not have any packages."
+-msgstr ""
++msgstr "警告:%s 组不包含任何包。"
+ 
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+-msgstr ""
++msgstr "组 %s 拥有 %u 有条件的包可能安装。"
+ 
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr "群集中找不到软件包 %s"
+ 
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr "rpmdb 中找不到软件包元组 %s"
+ 
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
+ #, python-format
+ msgid "Invalid version flag from: %s"
+-msgstr ""
++msgstr "来自 %s 的无效版本标志"
+ 
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
+ #, python-format
+ msgid "No Package found for %s"
+ msgstr "找不到 %s 软件包"
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr "不是一个软件包对象的实例"
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr "没有指定要安装的内容"
+ 
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
+ #, python-format
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr "检测 %s 提供的依赖或文件"
+ 
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
+ #, python-format
+ msgid "No Match for argument: %s"
+ msgstr "参数 %s 没有匹配"
+ 
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr "包 %s 已安装且不可用"
+ 
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr "没有包可供安装"
+ 
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr "软件包 %s 已包含在事务中"
+ 
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr "软件包 %s 被已安装的 %s 取代"
+ 
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr "软件包 %s 已经被 %s 取代,但是取代的软件包并未满足需求"
+ 
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr "软件包 %s 已经被 %s 取代,改为尝试安装 %s"
+ 
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr "包 %s 已安装并且是最新版本"
+ 
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
+ #, python-format
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr "匹配 %s 的软件包已经安装。检查更新。"
+ 
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr "全部升级"
+ 
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "不更新已被取代的软件包:%s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
+ #, python-format
+ msgid "%s"
+ msgstr "%s"
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
+ #, python-format
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr "包已被取代:%s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr "未更新已被废除的软件包:%s"
+ 
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr "未更新已被更新的软件包:%s.%s %s:%s-%s"
+ 
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
+-msgstr "没有匹配的要删除的包"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
++msgstr ""
+ 
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr "跳过正在运行的内核:%ss"
+ 
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
+ #, python-format
+ msgid "Removing %s from the transaction"
+ msgstr "从操作中移除 %s"
+ 
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
+ #, python-format
+ msgid "Cannot open: %s. Skipping."
+ msgstr "无法打开 %s ,跳过。"
+ 
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
+ #, python-format
+ msgid "Examining %s: %s"
+ msgstr "诊断 %s: %s"
+ 
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr "无法本地安装 deltarpm %s ,跳过。"
+ 
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr "无法添加软件包 %s 到操作中。不属于可兼容的架构:%s"
+ 
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
+ #, python-format
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr "无法安装软件包 %s 。被已安装软件包 %s 标识为废除"
+ 
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
+ msgid ""
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr "软件包 %s 没有安装,不能更新。运行 yum install 安装它。"
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
+ #, python-format
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+-msgstr ""
++msgstr "软件包 %s.%s 未安装,不能更新它。替代方案是运行 yum install 安装。"
+ 
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
+ #, python-format
+ msgid "Excluding %s"
+ msgstr "排除 %s"
+ 
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
+ #, python-format
+ msgid "Marking %s to be installed"
+ msgstr "%s 将被安装"
+ 
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr "%s 将作为 %s 的更新"
+ 
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
+ #, python-format
+ msgid "%s: does not update installed package."
+ msgstr "%s:不更新已安装的软件包。"
+ 
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
+ #, python-format
+ msgid "Cannot open file: %s. Skipping."
+ msgstr "无法打开文件:%s。跳过。"
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr "覆盖安装出错:没有匹配的要删除的软件包"
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
+ #, python-format
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr "重新安装出错:没有匹配的软件包 %s 来安装"
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr "没有可供降级的软件包"
+ 
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
+ #, python-format
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr "软件包 %s 允许同时安装多个版本,跳过"
+ 
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
+ #, python-format
+ msgid "No Match for available package: %s"
+ msgstr "未找到匹配的可用软件包:%s"
+ 
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
+ #, python-format
+ msgid "Only Upgrade available on package: %s"
+ msgstr "只更新可用软件包:%s"
+ 
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
+ #, python-format
+ msgid "Failed to downgrade: %s"
+ msgstr "降级失败:%s"
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
+ #, python-format
+-msgid "Retrieving key from %s"
++msgid "Failed to upgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4958
++#, python-format
++msgid "Retrieving key from %s"
++msgstr "从 %s 检索密钥"
++
++#: ../yum/__init__.py:4976
+ msgid "GPG key retrieval failed: "
+ msgstr "获取 GPG 密钥失败:"
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
+ #, python-format
+ msgid "GPG key signature on key %s does not match CA Key for repo: %s"
+-msgstr ""
++msgstr "密钥 %s 上的 GPG 密钥签名与 %s 仓库的 CA 密钥不匹配"
+ 
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
+ msgid "GPG key signature verified against CA Key(s)"
+-msgstr ""
++msgstr "GPG 密钥签名验证与 CA 密钥冲突"
+ 
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
+ #, python-format
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr "来自 %s 的不可用 GPG 密钥:%s"
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr "GPG 密钥传递失败:密钥未包含值 %s"
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2883,59 +2996,66 @@ msgid ""
+ " Package: %s (%s)\n"
+ " From   : %s"
+ msgstr ""
++"导入 %s 键 0x%s:\n"
++"  用户ID:%s\n"
++"  软件包:%s(%s)\n"
++"  来自  :%s"
+ 
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+ " Userid: \"%s\"\n"
+ " From  : %s"
+ msgstr ""
++"导入 %s 键 0x%s:\n"
++"  用户ID:“%s”\n"
++"  来自  :%s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr "%s 的 GPG 密钥(0x%s)已安装"
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
+ #, python-format
+ msgid "Key import failed (code %d)"
+ msgstr "导入密钥失败(代码 %d)"
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr "导入密钥成功"
+ 
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
+ msgid "Didn't install any keys"
+-msgstr ""
++msgstr "没有安装任何键"
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr "仓库 \"%s\" 的 GPG 密钥已安装,但是不适用于此软件包。请检查仓库的公钥 URL 是否配置正确。"
+ 
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr "导入的密钥没有用处,错误的密钥?"
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr "位于 %s 的 GPG 密钥 (0x%s) 已经导入"
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr "导入密钥失败"
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
+ #, python-format
+ msgid "Didn't install any keys for repo %s"
+-msgstr ""
++msgstr "没有对 %s 仓库安装任何键"
+ 
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+@@ -2944,157 +3064,181 @@ msgstr ""
+ "\"%s\" 仓库列出的 GPG 密钥已经安装但并不正确。\n"
+ "请检查此仓库正确的密钥 URL 配置。"
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr "不能发现合适的镜像。"
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr "下载软件包时出错。"
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr "请在 %s 报告这个错误"
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr "事务测试出错:"
+ 
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr "不能置缓存目录:%s"
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
+ msgid "Dependencies not solved. Will not save unresolved transaction."
+-msgstr ""
++msgstr "依赖没有解决。将不会保存未解决事务。"
+ 
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
+ #, python-format
+ msgid "Could not save transaction file %s: %s"
+-msgstr ""
++msgstr "不能保存事务文件 %s:%s"
+ 
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
+ #, python-format
+ msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
++msgstr "不能访问或都去已存事务 %s:%s"
+ 
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
+ msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
++msgstr "RPM数据库版本与已存事务版本不匹配, "
+ 
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
+ msgid " ignoring, as requested."
+-msgstr ""
++msgstr " 忽略,作为请求。"
+ 
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
+ msgid " aborting."
+-msgstr ""
++msgstr " 终止。"
+ 
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
+ msgid "cannot find tsflags or tsflags not integer."
+-msgstr ""
++msgstr "不能找到 tsflags 或 tsflags 非整数。"
+ 
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
+ #, python-format
+ msgid "Found txmbr in unknown current state: %s"
+-msgstr ""
++msgstr "在未知当前状态找到 txmbr:%s"
+ 
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
+ #, python-format
+ msgid "Could not find txmbr: %s in state %s"
+-msgstr ""
++msgstr "不能找到 txmbr:在 %s 状态中 %s"
+ 
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
+ #, python-format
+ msgid "Could not find txmbr: %s from origin: %s"
+-msgstr ""
++msgstr "不能找到 txmbr:来自原地 %s 的 %s"
+ 
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
+ msgid "Transaction members, relations are missing or ts has been modified,"
+-msgstr ""
++msgstr "事务成员、关系缺失或 ts 已被修改,"
+ 
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
+ msgid " ignoring, as requested. You must redepsolve!"
++msgstr " 忽略,作为请求。您必须解决依赖!"
++
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
+ msgstr ""
+ 
+ #. Mostly copied from YumOutput._outKeyValFill()
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr "已加载插件:"
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr "没有匹配 %s 的插件"
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr "\"%s\" 插件被禁用,因此未加载它"
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr "插件 \"%s\" 不能被导入"
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr "插件 \"%s\" 没有指定必要的 API 版本"
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr "插件 \"%s\" 需要 API %s。支持的 API 为 %s。"
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr "加载 \"%s\" 插件"
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr "搜索路径中存在两个或多个重名插件 \"%s\""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr "找不到配置文件 %s"
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr "找不到插件 %s 的配置文件 "
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr "不支持注册命令"
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr "有缺少的需求"
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr "有已安装冲突"
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr "%s 是 %s 的副本"
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr "%s 被 %s 取代"
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr "%s 提供 %s 但不能被找到"
+@@ -3103,6 +3247,17 @@ msgstr "%s 提供 %s 但不能被找到"
+ msgid "Repackaging"
+ msgstr "正在重新包装"
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++"下载目录 %s 空间不足\n"
++"    * 空闲   %s\n"
++"    * 需要 %s"
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
+diff --git a/po/zh_TW.po b/po/zh_TW.po
+index 704a726..a1f1dd0 100644
+--- a/po/zh_TW.po
++++ b/po/zh_TW.po
+@@ -2,12 +2,13 @@
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+ # This file is distributed under the same license as the PACKAGE package.
+ # 
++# Translators:
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: Yum\n"
+ "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
+-"POT-Creation-Date: 2011-06-06 10:21-0400\n"
+-"PO-Revision-Date: 2011-06-06 14:21+0000\n"
++"POT-Creation-Date: 2011-08-23 11:08-0400\n"
++"PO-Revision-Date: 2011-08-23 15:09+0000\n"
+ "Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
+ "Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/yum/team/zh_TW/)\n"
+ "MIME-Version: 1.0\n"
+@@ -16,413 +17,429 @@ msgstr ""
+ "Language: zh_TW\n"
+ "Plural-Forms: nplurals=1; plural=0\n"
+ 
+-#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1355 ../yum/rpmtrans.py:73
+ msgid "Updating"
+ msgstr ""
+ 
+-#: ../callback.py:49 ../yum/rpmtrans.py:74
++#: ../callback.py:46 ../yum/rpmtrans.py:74
+ msgid "Erasing"
+ msgstr ""
+ 
+-#: ../callback.py:50 ../callback.py:51 ../callback.py:53 ../output.py:1036
+-#: ../output.py:2218 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1354
++#: ../output.py:2720 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
+ #: ../yum/rpmtrans.py:78
+ msgid "Installing"
+ msgstr ""
+ 
+-#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2177 ../yum/rpmtrans.py:77
+ msgid "Obsoleted"
+ msgstr ""
+ 
+-#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
++#: ../callback.py:51 ../output.py:1476 ../output.py:2023 ../output.py:2184
+ msgid "Updated"
+ msgstr ""
+ 
+-#: ../callback.py:55 ../output.py:1685
++#: ../callback.py:52 ../output.py:2022
+ msgid "Erased"
+ msgstr ""
+ 
+-#: ../callback.py:56 ../callback.py:57 ../callback.py:59 ../output.py:1167
+-#: ../output.py:1685 ../output.py:1687 ../output.py:2190
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1474
++#: ../output.py:2022 ../output.py:2024 ../output.py:2692
+ msgid "Installed"
+ msgstr ""
+ 
+-#: ../callback.py:130
++#: ../callback.py:142
+ msgid "No header - huh?"
+ msgstr ""
+ 
+-#: ../callback.py:168
++#: ../callback.py:180
+ msgid "Repackage"
+ msgstr ""
+ 
+-#: ../callback.py:189
++#: ../callback.py:201
+ #, python-format
+ msgid "Error: invalid output state: %s for %s"
+ msgstr ""
+ 
+-#: ../callback.py:212
++#: ../callback.py:224
+ #, python-format
+ msgid "Erased: %s"
+ msgstr ""
+ 
+-#: ../callback.py:217 ../output.py:1038 ../output.py:2193
++#: ../callback.py:229 ../output.py:1356 ../output.py:2695
+ msgid "Removing"
+ msgstr ""
+ 
+-#: ../callback.py:219 ../yum/rpmtrans.py:79
++#: ../callback.py:231 ../yum/rpmtrans.py:79
+ msgid "Cleanup"
+ msgstr ""
+ 
+-#: ../cli.py:115
++#: ../cli.py:118
+ #, python-format
+ msgid "Command \"%s\" already defined"
+ msgstr ""
+ 
+-#: ../cli.py:127
++#: ../cli.py:133
+ msgid "Setting up repositories"
+ msgstr ""
+ 
+-#: ../cli.py:138
++#: ../cli.py:144
+ msgid "Reading repository metadata in from local files"
+ msgstr ""
+ 
+-#: ../cli.py:245 ../utils.py:281
++#: ../cli.py:252 ../utils.py:340
+ #, python-format
+ msgid "Config Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
++#: ../cli.py:255 ../cli.py:1897 ../utils.py:343
+ #, python-format
+ msgid "Options Error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:293
++#: ../cli.py:302
+ #, python-format
+ msgid "  Installed: %s-%s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:295
++#: ../cli.py:304
+ #, python-format
+ msgid "  Built    : %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:297
++#: ../cli.py:306
+ #, python-format
+ msgid "  Committed: %s at %s"
+ msgstr ""
+ 
+-#: ../cli.py:336
++#: ../cli.py:347
+ msgid "You need to give some command"
+ msgstr ""
+ 
+-#: ../cli.py:350
++#: ../cli.py:361
+ #, python-format
+ msgid "No such command: %s. Please use %s --help"
+ msgstr ""
+ 
+-#: ../cli.py:400
++#: ../cli.py:419
+ msgid "Disk Requirements:\n"
+ msgstr ""
+ 
+-#: ../cli.py:402
++#: ../cli.py:421
+ #, python-format
+ msgid "  At least %dMB more space needed on the %s filesystem.\n"
+-msgstr ""
++msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
++msgstr[0] ""
+ 
+ #. TODO: simplify the dependency errors?
+ #. Fixup the summary
+-#: ../cli.py:407
++#: ../cli.py:426
+ msgid ""
+ "Error Summary\n"
+ "-------------\n"
+ msgstr ""
+ 
+-#: ../cli.py:450
++#: ../cli.py:474
+ msgid "Trying to run the transaction but nothing to do. Exiting."
+ msgstr ""
+ 
+-#: ../cli.py:497
++#: ../cli.py:521
+ msgid "Exiting on user Command"
+ msgstr ""
+ 
+-#: ../cli.py:501
++#: ../cli.py:525
+ msgid "Downloading Packages:"
+ msgstr ""
+ 
+-#: ../cli.py:506
++#: ../cli.py:530
+ msgid "Error Downloading Packages:\n"
+ msgstr ""
+ 
+-#: ../cli.py:525 ../yum/__init__.py:4967
++#: ../cli.py:549 ../yum/__init__.py:5413
+ msgid "Running Transaction Check"
+ msgstr ""
+ 
+-#: ../cli.py:534 ../yum/__init__.py:4976
++#: ../cli.py:558 ../yum/__init__.py:5422
+ msgid "ERROR You need to update rpm to handle:"
+ msgstr ""
+ 
+-#: ../cli.py:536 ../yum/__init__.py:4979
++#: ../cli.py:560 ../yum/__init__.py:5425
+ msgid "ERROR with transaction check vs depsolve:"
+ msgstr ""
+ 
+-#: ../cli.py:542
++#: ../cli.py:566
+ msgid "RPM needs to be updated"
+ msgstr ""
+ 
+-#: ../cli.py:543
++#: ../cli.py:567
+ #, python-format
+ msgid "Please report this error in %s"
+ msgstr ""
+ 
+-#: ../cli.py:549
++#: ../cli.py:573
+ msgid "Running Transaction Test"
+ msgstr ""
+ 
+-#: ../cli.py:561
++#: ../cli.py:585
+ msgid "Transaction Check Error:\n"
+ msgstr ""
+ 
+-#: ../cli.py:568
++#: ../cli.py:592
+ msgid "Transaction Test Succeeded"
+ msgstr ""
+ 
+-#: ../cli.py:600
++#: ../cli.py:624
+ msgid "Running Transaction"
+ msgstr ""
+ 
+-#: ../cli.py:630
++#: ../cli.py:657
+ msgid ""
+ "Refusing to automatically import keys when running unattended.\n"
+ "Use \"-y\" to override."
+ msgstr ""
+ 
+-#: ../cli.py:649 ../cli.py:692
++#: ../cli.py:676 ../cli.py:719
+ msgid "  * Maybe you meant: "
+ msgstr ""
+ 
+-#: ../cli.py:675 ../cli.py:683
++#: ../cli.py:702 ../cli.py:710
+ #, python-format
+ msgid "Package(s) %s%s%s available, but not installed."
+ msgstr ""
+ 
+-#: ../cli.py:689 ../cli.py:722 ../cli.py:908
++#: ../cli.py:716 ../cli.py:760 ../cli.py:998
+ #, python-format
+ msgid "No package %s%s%s available."
+ msgstr ""
+ 
+-#: ../cli.py:729 ../cli.py:973
+-msgid "Package(s) to install"
+-msgstr ""
++#: ../cli.py:768
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:771 ../cli.py:772 ../cli.py:1005 ../cli.py:1051 ../cli.py:1086
++#: ../yumcommands.py:268
+ msgid "Nothing to do"
+ msgstr ""
+ 
+-#: ../cli.py:767
++#: ../cli.py:824
+ #, python-format
+-msgid "%d packages marked for Update"
+-msgstr ""
++msgid "%d package marked for Update"
++msgid_plural "%d packages marked for Update"
++msgstr[0] ""
+ 
+-#: ../cli.py:770
++#: ../cli.py:826
+ msgid "No Packages marked for Update"
+ msgstr ""
+ 
+-#: ../cli.py:866
++#: ../cli.py:937
+ #, python-format
+-msgid "%d packages marked for Distribution Synchronization"
+-msgstr ""
++msgid "%d package marked for Distribution Synchronization"
++msgid_plural "%d packages marked for Distribution Synchronization"
++msgstr[0] ""
+ 
+-#: ../cli.py:869
++#: ../cli.py:939
+ msgid "No Packages marked for Distribution Synchronization"
+ msgstr ""
+ 
+-#: ../cli.py:885
++#: ../cli.py:965
+ #, python-format
+-msgid "%d packages marked for removal"
+-msgstr ""
++msgid "%d package marked for removal"
++msgid_plural "%d packages marked for removal"
++msgstr[0] ""
+ 
+-#: ../cli.py:888
++#: ../cli.py:967
+ msgid "No Packages marked for removal"
+ msgstr ""
+ 
+-#: ../cli.py:913
+-msgid "Package(s) to downgrade"
+-msgstr ""
++#: ../cli.py:1004
++#, python-format
++msgid "%d package to downgrade"
++msgid_plural "%d packages to downgrade"
++msgstr[0] ""
+ 
+-#: ../cli.py:938
++#: ../cli.py:1040
+ #, python-format
+ msgid " (from %s)"
+ msgstr ""
+ 
+-#: ../cli.py:939
++#: ../cli.py:1041
+ #, python-format
+ msgid "Installed package %s%s%s%s not available."
+ msgstr ""
+ 
+-#: ../cli.py:947
+-msgid "Package(s) to reinstall"
+-msgstr ""
++#: ../cli.py:1050
++#, python-format
++msgid "%d package to reinstall"
++msgid_plural "%d packages to reinstall"
++msgstr[0] ""
+ 
+-#: ../cli.py:960
++#: ../cli.py:1072
+ msgid "No Packages Provided"
+ msgstr ""
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1085
++msgid "Package(s) to install"
++msgstr ""
++
++#: ../cli.py:1192
+ #, python-format
+ msgid "N/S Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1075
++#: ../cli.py:1209
+ #, python-format
+ msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1077
++#: ../cli.py:1211
+ #, python-format
+ msgid ""
+ "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1095
++#: ../cli.py:1229
+ #, python-format
+ msgid "Matched: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1102
++#: ../cli.py:1236
+ #, python-format
+ msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+ msgstr ""
+ 
+-#: ../cli.py:1106
++#: ../cli.py:1240
+ #, python-format
+ msgid "Warning: No matches found for: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1109
++#: ../cli.py:1243
+ msgid "No Matches found"
+ msgstr ""
+ 
+-#: ../cli.py:1174
++#: ../cli.py:1339
+ #, python-format
+ msgid "No Package Found for %s"
+ msgstr ""
+ 
+-#: ../cli.py:1184
++#: ../cli.py:1377
+ msgid "Cleaning repos: "
+ msgstr ""
+ 
+-#: ../cli.py:1189
++#: ../cli.py:1382
+ msgid "Cleaning up Everything"
+ msgstr ""
+ 
+-#: ../cli.py:1205
++#: ../cli.py:1398
+ msgid "Cleaning up Headers"
+ msgstr ""
+ 
+-#: ../cli.py:1208
++#: ../cli.py:1401
+ msgid "Cleaning up Packages"
+ msgstr ""
+ 
+-#: ../cli.py:1211
++#: ../cli.py:1404
+ msgid "Cleaning up xml metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1214
++#: ../cli.py:1407
+ msgid "Cleaning up database cache"
+ msgstr ""
+ 
+-#: ../cli.py:1217
++#: ../cli.py:1410
+ msgid "Cleaning up expire-cache metadata"
+ msgstr ""
+ 
+-#: ../cli.py:1220
++#: ../cli.py:1413
+ msgid "Cleaning up cached rpmdb data"
+ msgstr ""
+ 
+-#: ../cli.py:1223
++#: ../cli.py:1416
+ msgid "Cleaning up plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1247
++#: ../cli.py:1452
+ #, python-format
+ msgid "Warning: No groups match: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1264
++#: ../cli.py:1469 ../cli.py:1527
+ msgid "Installed Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1270
++#: ../cli.py:1475 ../cli.py:1533
+ msgid "Installed Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1276
++#: ../cli.py:1481 ../cli.py:1539
+ msgid "Available Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1282
++#: ../cli.py:1487 ../cli.py:1545
+ msgid "Available Language Groups:"
+ msgstr ""
+ 
+-#: ../cli.py:1285
++#: ../cli.py:1490 ../cli.py:1547
+ msgid "Done"
+ msgstr ""
+ 
+-#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
++#: ../cli.py:1570 ../cli.py:1598 ../cli.py:1604 ../yum/__init__.py:3648
+ #, python-format
+ msgid "Warning: Group %s does not exist."
+ msgstr ""
+ 
+-#: ../cli.py:1324
++#: ../cli.py:1608
+ msgid "No packages in any requested group available to install or update"
+ msgstr ""
+ 
+-#: ../cli.py:1326
++#: ../cli.py:1610
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr ""
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
+ 
+-#: ../cli.py:1336 ../yum/__init__.py:3325
++#: ../cli.py:1630 ../yum/__init__.py:3660
+ #, python-format
+ msgid "No group named %s exists"
+ msgstr ""
+ 
+-#: ../cli.py:1342
++#: ../cli.py:1636
+ msgid "No packages to remove from groups"
+ msgstr ""
+ 
+-#: ../cli.py:1344
++#: ../cli.py:1638
+ #, python-format
+-msgid "%d Package(s) to remove"
+-msgstr ""
++msgid "%d package to remove"
++msgid_plural "%d packages to remove"
++msgstr[0] ""
+ 
+-#: ../cli.py:1386
++#: ../cli.py:1679
+ #, python-format
+ msgid "Package %s is already installed, skipping"
+ msgstr ""
+ 
+-#: ../cli.py:1397
++#: ../cli.py:1690
+ #, python-format
+ msgid "Discarding non-comparable pkg %s.%s"
+ msgstr ""
+ 
+ #. we've not got any installed that match n or n+a
+-#: ../cli.py:1423
++#: ../cli.py:1716
+ #, python-format
+ msgid "No other %s installed, adding to list for potential install"
+ msgstr ""
+ 
+-#: ../cli.py:1443
++#: ../cli.py:1736
+ msgid "Plugin Options"
+ msgstr ""
+ 
+-#: ../cli.py:1451
++#: ../cli.py:1748
+ #, python-format
+ msgid "Command line error: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1467
++#: ../cli.py:1770
+ #, python-format
+ msgid ""
+ "\n"
+@@ -430,438 +447,443 @@ msgid ""
+ "%s: %s option requires an argument"
+ msgstr ""
+ 
+-#: ../cli.py:1521
++#: ../cli.py:1834
+ msgid "--color takes one of: auto, always, never"
+ msgstr ""
+ 
+ #. We have a relative installroot ... haha
+-#: ../cli.py:1596
++#: ../cli.py:1909
+ #, python-format
+ msgid "--installroot must be an absolute path: %s"
+ msgstr ""
+ 
+-#: ../cli.py:1642
++#: ../cli.py:1963
+ msgid "show this help message and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1646
++#: ../cli.py:1967
+ msgid "be tolerant of errors"
+ msgstr ""
+ 
+-#: ../cli.py:1649
++#: ../cli.py:1970
+ msgid "run entirely from system cache, don't update cache"
+ msgstr ""
+ 
+-#: ../cli.py:1652
++#: ../cli.py:1973
+ msgid "config file location"
+ msgstr ""
+ 
+-#: ../cli.py:1655
++#: ../cli.py:1976
+ msgid "maximum command wait time"
+ msgstr ""
+ 
+-#: ../cli.py:1657
++#: ../cli.py:1978
+ msgid "debugging output level"
+ msgstr ""
+ 
+-#: ../cli.py:1661
++#: ../cli.py:1982
+ msgid "show duplicates, in repos, in list/search commands"
+ msgstr ""
+ 
+-#: ../cli.py:1663
++#: ../cli.py:1984
+ msgid "error output level"
+ msgstr ""
+ 
+-#: ../cli.py:1666
++#: ../cli.py:1987
+ msgid "debugging output level for rpm"
+ msgstr ""
+ 
+-#: ../cli.py:1669
++#: ../cli.py:1990
+ msgid "quiet operation"
+ msgstr ""
+ 
+-#: ../cli.py:1671
++#: ../cli.py:1992
+ msgid "verbose operation"
+ msgstr ""
+ 
+-#: ../cli.py:1673
++#: ../cli.py:1994
+ msgid "answer yes for all questions"
+ msgstr ""
+ 
+-#: ../cli.py:1675
++#: ../cli.py:1996
++msgid "answer no for all questions"
++msgstr ""
++
++#: ../cli.py:2000
+ msgid "show Yum version and exit"
+ msgstr ""
+ 
+-#: ../cli.py:1676
++#: ../cli.py:2001
+ msgid "set install root"
+ msgstr ""
+ 
+-#: ../cli.py:1680
++#: ../cli.py:2005
+ msgid "enable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1684
++#: ../cli.py:2009
+ msgid "disable one or more repositories (wildcards allowed)"
+ msgstr ""
+ 
+-#: ../cli.py:1687
++#: ../cli.py:2012
+ msgid "exclude package(s) by name or glob"
+ msgstr ""
+ 
+-#: ../cli.py:1689
++#: ../cli.py:2014
+ msgid "disable exclude from main, for a repo or for everything"
+ msgstr ""
+ 
+-#: ../cli.py:1692
++#: ../cli.py:2017
+ msgid "enable obsoletes processing during updates"
+ msgstr ""
+ 
+-#: ../cli.py:1694
++#: ../cli.py:2019
+ msgid "disable Yum plugins"
+ msgstr ""
+ 
+-#: ../cli.py:1696
++#: ../cli.py:2021
+ msgid "disable gpg signature checking"
+ msgstr ""
+ 
+-#: ../cli.py:1698
++#: ../cli.py:2023
+ msgid "disable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1701
++#: ../cli.py:2026
+ msgid "enable plugins by name"
+ msgstr ""
+ 
+-#: ../cli.py:1704
++#: ../cli.py:2029
+ msgid "skip packages with depsolving problems"
+ msgstr ""
+ 
+-#: ../cli.py:1706
++#: ../cli.py:2031
+ msgid "control whether color is used"
+ msgstr ""
+ 
+-#: ../cli.py:1708
++#: ../cli.py:2033
+ msgid "set value of $releasever in yum config and repo files"
+ msgstr ""
+ 
+-#: ../cli.py:1710
++#: ../cli.py:2035
+ msgid "set arbitrary config and repo options"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jan"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Feb"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Mar"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Apr"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "May"
+ msgstr ""
+ 
+-#: ../output.py:307
++#: ../output.py:440
+ msgid "Jun"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Jul"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Aug"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Sep"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Oct"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Nov"
+ msgstr ""
+ 
+-#: ../output.py:308
++#: ../output.py:441
+ msgid "Dec"
+ msgstr ""
+ 
+-#: ../output.py:318
++#: ../output.py:455
+ msgid "Trying other mirror."
+ msgstr ""
+ 
+-#: ../output.py:581
++#: ../output.py:798
+ #, python-format
+ msgid "Name        : %s%s%s"
+ msgstr ""
+ 
+-#: ../output.py:582
++#: ../output.py:799
+ #, python-format
+ msgid "Arch        : %s"
+ msgstr ""
+ 
+-#: ../output.py:584
++#: ../output.py:801
+ #, python-format
+ msgid "Epoch       : %s"
+ msgstr ""
+ 
+-#: ../output.py:585
++#: ../output.py:802
+ #, python-format
+ msgid "Version     : %s"
+ msgstr ""
+ 
+-#: ../output.py:586
++#: ../output.py:803
+ #, python-format
+ msgid "Release     : %s"
+ msgstr ""
+ 
+-#: ../output.py:587
++#: ../output.py:804
+ #, python-format
+ msgid "Size        : %s"
+ msgstr ""
+ 
+-#: ../output.py:588 ../output.py:900
++#: ../output.py:805 ../output.py:1198
+ #, python-format
+ msgid "Repo        : %s"
+ msgstr ""
+ 
+-#: ../output.py:590
++#: ../output.py:807
+ #, python-format
+ msgid "From repo   : %s"
+ msgstr ""
+ 
+-#: ../output.py:592
++#: ../output.py:809
+ #, python-format
+ msgid "Committer   : %s"
+ msgstr ""
+ 
+-#: ../output.py:593
++#: ../output.py:810
+ #, python-format
+ msgid "Committime  : %s"
+ msgstr ""
+ 
+-#: ../output.py:594
++#: ../output.py:811
+ #, python-format
+ msgid "Buildtime   : %s"
+ msgstr ""
+ 
+-#: ../output.py:596
++#: ../output.py:813
+ #, python-format
+ msgid "Install time: %s"
+ msgstr ""
+ 
+-#: ../output.py:604
++#: ../output.py:821
+ #, python-format
+ msgid "Installed by: %s"
+ msgstr ""
+ 
+-#: ../output.py:611
++#: ../output.py:828
+ #, python-format
+ msgid "Changed by  : %s"
+ msgstr ""
+ 
+-#: ../output.py:612
++#: ../output.py:829
+ msgid "Summary     : "
+ msgstr ""
+ 
+-#: ../output.py:614 ../output.py:913
++#: ../output.py:831 ../output.py:1214
+ #, python-format
+ msgid "URL         : %s"
+ msgstr ""
+ 
+-#: ../output.py:615
++#: ../output.py:832
+ msgid "License     : "
+ msgstr ""
+ 
+-#: ../output.py:616 ../output.py:910
++#: ../output.py:833 ../output.py:1211
+ msgid "Description : "
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "y"
+ msgstr ""
+ 
+-#: ../output.py:684
++#: ../output.py:949
+ msgid "yes"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "n"
+ msgstr ""
+ 
+-#: ../output.py:685
++#: ../output.py:950
+ msgid "no"
+ msgstr ""
+ 
+-#: ../output.py:689
++#: ../output.py:954
+ msgid "Is this ok [y/N]: "
+ msgstr ""
+ 
+-#: ../output.py:777
++#: ../output.py:1046
+ #, python-format
+ msgid ""
+ "\n"
+ "Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:781
++#: ../output.py:1050
+ #, python-format
+ msgid " Group-Id: %s"
+ msgstr ""
+ 
+-#: ../output.py:786
++#: ../output.py:1055
+ #, python-format
+ msgid " Description: %s"
+ msgstr ""
+ 
+-#: ../output.py:788
++#: ../output.py:1057
+ #, python-format
+ msgid " Language: %s"
+ msgstr ""
+ 
+-#: ../output.py:790
++#: ../output.py:1059
+ msgid " Mandatory Packages:"
+ msgstr ""
+ 
+-#: ../output.py:791
++#: ../output.py:1060
+ msgid " Default Packages:"
+ msgstr ""
+ 
+-#: ../output.py:792
++#: ../output.py:1061
+ msgid " Optional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:793
++#: ../output.py:1062
+ msgid " Conditional Packages:"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1086
+ #, python-format
+ msgid "package: %s"
+ msgstr ""
+ 
+-#: ../output.py:816
++#: ../output.py:1088
+ msgid "  No dependencies for this package"
+ msgstr ""
+ 
+-#: ../output.py:821
++#: ../output.py:1093
+ #, python-format
+ msgid "  dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:823
++#: ../output.py:1095
+ msgid "   Unsatisfied dependency"
+ msgstr ""
+ 
+-#: ../output.py:901
++#: ../output.py:1206
+ msgid "Matched from:"
+ msgstr ""
+ 
+-#: ../output.py:916
++#: ../output.py:1217
+ #, python-format
+ msgid "License     : %s"
+ msgstr ""
+ 
+-#: ../output.py:919
++#: ../output.py:1220
+ #, python-format
+ msgid "Filename    : %s"
+ msgstr ""
+ 
+-#: ../output.py:923
++#: ../output.py:1224
+ msgid "Other       : "
+ msgstr ""
+ 
+-#: ../output.py:966
++#: ../output.py:1280
+ msgid "There was an error calculating total download size"
+ msgstr ""
+ 
+-#: ../output.py:971
++#: ../output.py:1285
+ #, python-format
+ msgid "Total size: %s"
+ msgstr ""
+ 
+-#: ../output.py:974
++#: ../output.py:1288
+ #, python-format
+ msgid "Total download size: %s"
+ msgstr ""
+ 
+-#: ../output.py:978 ../output.py:998
++#: ../output.py:1292 ../output.py:1315
+ #, python-format
+ msgid "Installed size: %s"
+ msgstr ""
+ 
+-#: ../output.py:994
++#: ../output.py:1311
+ msgid "There was an error calculating installed size"
+ msgstr ""
+ 
+-#: ../output.py:1039
++#: ../output.py:1357
+ msgid "Reinstalling"
+ msgstr ""
+ 
+-#: ../output.py:1040
++#: ../output.py:1358
+ msgid "Downgrading"
+ msgstr ""
+ 
+-#: ../output.py:1041
++#: ../output.py:1359
+ msgid "Installing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1042
++#: ../output.py:1360
+ msgid "Updating for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1043
++#: ../output.py:1361
+ msgid "Removing for dependencies"
+ msgstr ""
+ 
+-#: ../output.py:1050 ../output.py:1171
++#: ../output.py:1368 ../output.py:1478
+ msgid "Skipped (dependency problems)"
+ msgstr ""
+ 
+-#: ../output.py:1052 ../output.py:1687
++#: ../output.py:1370 ../output.py:2024
+ msgid "Not installed"
+ msgstr ""
+ 
+-#: ../output.py:1053
++#: ../output.py:1371
+ msgid "Not available"
+ msgstr ""
+ 
+-#: ../output.py:1075 ../output.py:2024
++#: ../output.py:1393 ../output.py:1428 ../output.py:2379
+ msgid "Package"
+-msgstr ""
++msgid_plural "Packages"
++msgstr[0] ""
+ 
+-#: ../output.py:1075
++#: ../output.py:1393
+ msgid "Arch"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Version"
+ msgstr ""
+ 
+-#: ../output.py:1076
++#: ../output.py:1394
+ msgid "Repository"
+ msgstr ""
+ 
+-#: ../output.py:1077
++#: ../output.py:1395
+ msgid "Size"
+ msgstr ""
+ 
+-#: ../output.py:1089
++#: ../output.py:1407
+ #, python-format
+ msgid "     replacing  %s%s%s.%s %s\n"
+ msgstr ""
+ 
+-#: ../output.py:1098
++#: ../output.py:1416
+ #, python-format
+ msgid ""
+ "\n"
+@@ -869,57 +891,52 @@ msgid ""
+ "%s\n"
+ msgstr ""
+ 
+-#: ../output.py:1109
+-#, python-format
+-msgid "Install   %5.5s Package(s)\n"
++#: ../output.py:1421 ../output.py:2174 ../output.py:2175
++msgid "Install"
+ msgstr ""
+ 
+-#: ../output.py:1113
+-#, python-format
+-msgid "Upgrade   %5.5s Package(s)\n"
++#: ../output.py:1422
++msgid "Upgrade"
+ msgstr ""
+ 
+-#: ../output.py:1117
+-#, python-format
+-msgid "Remove    %5.5s Package(s)\n"
++#: ../output.py:1423
++msgid "Remove"
+ msgstr ""
+ 
+-#: ../output.py:1121
+-#, python-format
+-msgid "Reinstall %5.5s Package(s)\n"
++#: ../output.py:1424 ../output.py:2180
++msgid "Reinstall"
+ msgstr ""
+ 
+-#: ../output.py:1125
+-#, python-format
+-msgid "Downgrade %5.5s Package(s)\n"
++#: ../output.py:1425 ../output.py:2181
++msgid "Downgrade"
+ msgstr ""
+ 
+-#: ../output.py:1165
++#: ../output.py:1472
+ msgid "Removed"
+ msgstr ""
+ 
+-#: ../output.py:1166
++#: ../output.py:1473
+ msgid "Dependency Removed"
+ msgstr ""
+ 
+-#: ../output.py:1168
++#: ../output.py:1475
+ msgid "Dependency Installed"
+ msgstr ""
+ 
+-#: ../output.py:1170
++#: ../output.py:1477
+ msgid "Dependency Updated"
+ msgstr ""
+ 
+-#: ../output.py:1172
++#: ../output.py:1479
+ msgid "Replaced"
+ msgstr ""
+ 
+-#: ../output.py:1173
++#: ../output.py:1480
+ msgid "Failed"
+ msgstr ""
+ 
+ #. Delta between C-c's so we treat as exit
+-#: ../output.py:1260
++#: ../output.py:1567
+ msgid "two"
+ msgstr ""
+ 
+@@ -927,7 +944,7 @@ msgstr ""
+ #. Current download cancelled, interrupt (ctrl-c) again within two seconds
+ #. to exit.
+ #. Where "interupt (ctrl-c) again" and "two" are highlighted.
+-#: ../output.py:1271
++#: ../output.py:1578
+ #, python-format
+ msgid ""
+ "\n"
+@@ -935,484 +952,536 @@ msgid ""
+ "to exit.\n"
+ msgstr ""
+ 
+-#: ../output.py:1282
++#: ../output.py:1589
+ msgid "user interrupt"
+ msgstr ""
+ 
+-#: ../output.py:1300
++#: ../output.py:1615
+ msgid "Total"
+ msgstr ""
+ 
+-#: ../output.py:1322
++#: ../output.py:1637
+ msgid "I"
+ msgstr ""
+ 
+-#: ../output.py:1323
++#: ../output.py:1638
+ msgid "O"
+ msgstr ""
+ 
+-#: ../output.py:1324
++#: ../output.py:1639
+ msgid "E"
+ msgstr ""
+ 
+-#: ../output.py:1325
++#: ../output.py:1640
+ msgid "R"
+ msgstr ""
+ 
+-#: ../output.py:1326
++#: ../output.py:1641
+ msgid "D"
+ msgstr ""
+ 
+-#: ../output.py:1327
++#: ../output.py:1642
+ msgid "U"
+ msgstr ""
+ 
+-#: ../output.py:1341
++#: ../output.py:1656
+ msgid "<unset>"
+ msgstr ""
+ 
+-#: ../output.py:1342
++#: ../output.py:1657
+ msgid "System"
+ msgstr ""
+ 
+-#: ../output.py:1411
++#: ../output.py:1726
+ #, python-format
+ msgid "Skipping merged transaction %d to %d, as it overlaps"
+ msgstr ""
+ 
+-#: ../output.py:1421 ../output.py:1592
++#: ../output.py:1736 ../output.py:1926
+ msgid "No transactions"
+ msgstr ""
+ 
+-#: ../output.py:1446 ../output.py:2013
++#: ../output.py:1761 ../output.py:2368 ../output.py:2458
+ msgid "Bad transaction IDs, or package(s), given"
+ msgstr ""
+ 
+-#: ../output.py:1484
++#: ../output.py:1808
+ msgid "Command line"
+ msgstr ""
+ 
+-#: ../output.py:1486 ../output.py:1908
++#: ../output.py:1810 ../output.py:2256
+ msgid "Login user"
+ msgstr ""
+ 
+ #. REALLY Needs to use columns!
+-#: ../output.py:1487 ../output.py:2022
++#: ../output.py:1811 ../output.py:2377
+ msgid "ID"
+ msgstr ""
+ 
+-#: ../output.py:1489
++#: ../output.py:1813
+ msgid "Date and time"
+ msgstr ""
+ 
+-#: ../output.py:1490 ../output.py:1910 ../output.py:2023
++#: ../output.py:1814 ../output.py:2258 ../output.py:2378
+ msgid "Action(s)"
+ msgstr ""
+ 
+-#: ../output.py:1491 ../output.py:1911
++#: ../output.py:1815 ../output.py:2259
+ msgid "Altered"
+ msgstr ""
+ 
+-#: ../output.py:1538
++#: ../output.py:1862
+ msgid "No transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1564 ../output.py:1972
++#: ../output.py:1888 ../output.py:2324
+ msgid "Bad transaction ID given"
+ msgstr ""
+ 
+-#: ../output.py:1569
++#: ../output.py:1893
+ msgid "Not found given transaction ID"
+ msgstr ""
+ 
+-#: ../output.py:1577
++#: ../output.py:1901
+ msgid "Found more than one transaction ID!"
+ msgstr ""
+ 
+-#: ../output.py:1618 ../output.py:1980
++#: ../output.py:1952 ../output.py:2332
+ msgid "No transaction ID, or package, given"
+ msgstr ""
+ 
+-#: ../output.py:1686 ../output.py:1845
++#: ../output.py:2023 ../output.py:2182
+ msgid "Downgraded"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Older"
+ msgstr ""
+ 
+-#: ../output.py:1688
++#: ../output.py:2025
+ msgid "Newer"
+ msgstr ""
+ 
+-#: ../output.py:1724 ../output.py:1726
++#: ../output.py:2061 ../output.py:2063 ../output.py:2480
+ msgid "Transaction ID :"
+ msgstr ""
+ 
+-#: ../output.py:1728
++#: ../output.py:2065 ../output.py:2482
+ msgid "Begin time     :"
+ msgstr ""
+ 
+-#: ../output.py:1731 ../output.py:1733
++#: ../output.py:2068 ../output.py:2070
+ msgid "Begin rpmdb    :"
+ msgstr ""
+ 
+-#: ../output.py:1749
++#: ../output.py:2086
+ #, python-format
+ msgid "(%u seconds)"
+ msgstr ""
+ 
+-#: ../output.py:1751
++#: ../output.py:2088
+ #, python-format
+ msgid "(%u minutes)"
+ msgstr ""
+ 
+-#: ../output.py:1753
++#: ../output.py:2090
+ #, python-format
+ msgid "(%u hours)"
+ msgstr ""
+ 
+-#: ../output.py:1755
++#: ../output.py:2092
+ #, python-format
+ msgid "(%u days)"
+ msgstr ""
+ 
+-#: ../output.py:1756
++#: ../output.py:2093
+ msgid "End time       :"
+ msgstr ""
+ 
+-#: ../output.py:1759 ../output.py:1761
++#: ../output.py:2096 ../output.py:2098
+ msgid "End rpmdb      :"
+ msgstr ""
+ 
+-#: ../output.py:1764 ../output.py:1766
++#: ../output.py:2101 ../output.py:2103
+ msgid "User           :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
+-#: ../output.py:1779
++#: ../output.py:2107 ../output.py:2110 ../output.py:2112 ../output.py:2114
++#: ../output.py:2116
+ msgid "Return-Code    :"
+ msgstr ""
+ 
+-#: ../output.py:1770 ../output.py:1775
++#: ../output.py:2107 ../output.py:2112
+ msgid "Aborted"
+ msgstr ""
+ 
+-#: ../output.py:1773
++#: ../output.py:2110
+ msgid "Failures:"
+ msgstr ""
+ 
+-#: ../output.py:1777
++#: ../output.py:2114
+ msgid "Failure:"
+ msgstr ""
+ 
+-#: ../output.py:1779
++#: ../output.py:2116
+ msgid "Success"
+ msgstr ""
+ 
+-#: ../output.py:1784 ../output.py:1786
++#: ../output.py:2121 ../output.py:2123 ../output.py:2511
+ msgid "Command Line   :"
+ msgstr ""
+ 
+-#: ../output.py:1795
++#: ../output.py:2132
+ #, python-format
+ msgid "Additional non-default information stored: %d"
+ msgstr ""
+ 
+ #. This is _possible_, but not common
+-#: ../output.py:1800
++#: ../output.py:2137
+ msgid "Transaction performed with:"
+ msgstr ""
+ 
+-#: ../output.py:1804
++#: ../output.py:2141
+ msgid "Packages Altered:"
+ msgstr ""
+ 
+-#: ../output.py:1808
++#: ../output.py:2145
+ msgid "Packages Skipped:"
+ msgstr ""
+ 
+-#: ../output.py:1814
++#: ../output.py:2151
+ msgid "Rpmdb Problems:"
+ msgstr ""
+ 
+-#: ../output.py:1825
++#: ../output.py:2162
+ msgid "Scriptlet output:"
+ msgstr ""
+ 
+-#: ../output.py:1831
++#: ../output.py:2168
+ msgid "Errors:"
+ msgstr ""
+ 
+-#: ../output.py:1837 ../output.py:1838
+-msgid "Install"
+-msgstr ""
+-
+-#: ../output.py:1839
++#: ../output.py:2176
+ msgid "Dep-Install"
+ msgstr ""
+ 
+-#: ../output.py:1841
++#: ../output.py:2178
+ msgid "Obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:1842
++#: ../output.py:2179
+ msgid "Erase"
+ msgstr ""
+ 
+-#: ../output.py:1843
+-msgid "Reinstall"
+-msgstr ""
+-
+-#: ../output.py:1844
+-msgid "Downgrade"
+-msgstr ""
+-
+-#: ../output.py:1846
++#: ../output.py:2183
+ msgid "Update"
+ msgstr ""
+ 
+-#: ../output.py:1909
++#: ../output.py:2257
+ msgid "Time"
+ msgstr ""
+ 
+-#: ../output.py:1935
++#: ../output.py:2283
+ msgid "Last day"
+ msgstr ""
+ 
+-#: ../output.py:1936
++#: ../output.py:2284
+ msgid "Last week"
+ msgstr ""
+ 
+-#: ../output.py:1937
++#: ../output.py:2285
+ msgid "Last 2 weeks"
+ msgstr ""
+ 
+ #. US default :p
+-#: ../output.py:1938
++#: ../output.py:2286
+ msgid "Last 3 months"
+ msgstr ""
+ 
+-#: ../output.py:1939
++#: ../output.py:2287
+ msgid "Last 6 months"
+ msgstr ""
+ 
+-#: ../output.py:1940
++#: ../output.py:2288
+ msgid "Last year"
+ msgstr ""
+ 
+-#: ../output.py:1941
++#: ../output.py:2289
+ msgid "Over a year ago"
+ msgstr ""
+ 
+-#: ../output.py:1984
++#: ../output.py:2336
+ #, python-format
+ msgid "No Transaction %s found"
+ msgstr ""
+ 
+-#: ../output.py:1990
++#: ../output.py:2342
+ msgid "Transaction ID:"
+ msgstr ""
+ 
+-#: ../output.py:1991
++#: ../output.py:2343
+ msgid "Available additional history information:"
+ msgstr ""
+ 
+-#: ../output.py:2003
++#: ../output.py:2356
+ #, python-format
+ msgid "%s: No additional data found by this name"
+ msgstr ""
+ 
+-#: ../output.py:2106
++#: ../output.py:2483
++msgid "Package        :"
++msgstr ""
++
++#: ../output.py:2484
++msgid "State          :"
++msgstr ""
++
++#: ../output.py:2487
++msgid "Size           :"
++msgstr ""
++
++#: ../output.py:2489
++msgid "Build host     :"
++msgstr ""
++
++#: ../output.py:2492
++msgid "Build time     :"
++msgstr ""
++
++#: ../output.py:2494
++msgid "Packager       :"
++msgstr ""
++
++#: ../output.py:2496
++msgid "Vendor         :"
++msgstr ""
++
++#: ../output.py:2498
++msgid "License        :"
++msgstr ""
++
++#: ../output.py:2500
++msgid "URL            :"
++msgstr ""
++
++#: ../output.py:2502
++msgid "Source RPM     :"
++msgstr ""
++
++#: ../output.py:2505
++msgid "Commit Time    :"
++msgstr ""
++
++#: ../output.py:2507
++msgid "Committer      :"
++msgstr ""
++
++#: ../output.py:2509
++msgid "Reason         :"
++msgstr ""
++
++#: ../output.py:2513
++msgid "From repo      :"
++msgstr ""
++
++#: ../output.py:2517
++msgid "Installed by   :"
++msgstr ""
++
++#: ../output.py:2521
++msgid "Changed by     :"
++msgstr ""
++
++#: ../output.py:2566
+ msgid "installed"
+ msgstr ""
+ 
+-#: ../output.py:2107
++#: ../output.py:2567
+ msgid "an update"
+ msgstr ""
+ 
+-#: ../output.py:2108
++#: ../output.py:2568
+ msgid "erased"
+ msgstr ""
+ 
+-#: ../output.py:2109
++#: ../output.py:2569
+ msgid "reinstalled"
+ msgstr ""
+ 
+-#: ../output.py:2110
++#: ../output.py:2570
+ msgid "a downgrade"
+ msgstr ""
+ 
+-#: ../output.py:2111
++#: ../output.py:2571
+ msgid "obsoleting"
+ msgstr ""
+ 
+-#: ../output.py:2112
++#: ../output.py:2572
+ msgid "updated"
+ msgstr ""
+ 
+-#: ../output.py:2113
++#: ../output.py:2573
+ msgid "obsoleted"
+ msgstr ""
+ 
+-#: ../output.py:2117
++#: ../output.py:2577
+ #, python-format
+ msgid "---> Package %s.%s %s:%s-%s will be %s"
+ msgstr ""
+ 
+-#: ../output.py:2124
++#: ../output.py:2588
+ msgid "--> Running transaction check"
+ msgstr ""
+ 
+-#: ../output.py:2129
++#: ../output.py:2594
+ msgid "--> Restarting Dependency Resolution with new changes."
+ msgstr ""
+ 
+-#: ../output.py:2134
++#: ../output.py:2600
+ msgid "--> Finished Dependency Resolution"
+ msgstr ""
+ 
+-#: ../output.py:2139 ../output.py:2144
++#: ../output.py:2613 ../output.py:2626
+ #, python-format
+ msgid "--> Processing Dependency: %s for package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2149
++#: ../output.py:2639
+ #, python-format
+ msgid "---> Keeping package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2152
++#: ../output.py:2648
+ #, python-format
+ msgid "--> Unresolved Dependency: %s"
+ msgstr ""
+ 
+-#: ../output.py:2163
++#: ../output.py:2665
+ #, python-format
+ msgid "Package: %s"
+ msgstr ""
+ 
+-#: ../output.py:2165
++#: ../output.py:2667
+ #, python-format
+ msgid ""
+ "\n"
+ "    Requires: %s"
+ msgstr ""
+ 
+-#: ../output.py:2174
++#: ../output.py:2676
+ #, python-format
+ msgid ""
+ "\n"
+ "    %s: %s (%s)"
+ msgstr ""
+ 
+-#: ../output.py:2179
++#: ../output.py:2681
+ #, python-format
+ msgid ""
+ "\n"
+ "        %s"
+ msgstr ""
+ 
+-#: ../output.py:2181
++#: ../output.py:2683
+ msgid ""
+ "\n"
+ "        Not found"
+ msgstr ""
+ 
+ #. These should be the only three things we care about:
+-#: ../output.py:2196
++#: ../output.py:2698
+ msgid "Updated By"
+ msgstr ""
+ 
+-#: ../output.py:2197
++#: ../output.py:2699
+ msgid "Downgraded By"
+ msgstr ""
+ 
+-#: ../output.py:2198
++#: ../output.py:2700
+ msgid "Obsoleted By"
+ msgstr ""
+ 
+-#: ../output.py:2216
++#: ../output.py:2718
+ msgid "Available"
+ msgstr ""
+ 
+-#: ../output.py:2243 ../output.py:2248
++#: ../output.py:2753 ../output.py:2766
+ #, python-format
+ msgid "--> Processing Conflict: %s conflicts %s"
+ msgstr ""
+ 
+-#: ../output.py:2252
++#: ../output.py:2772
+ msgid "--> Populating transaction set with selected packages. Please wait."
+ msgstr ""
+ 
+-#: ../output.py:2256
++#: ../output.py:2781
+ #, python-format
+ msgid "---> Downloading header for %s to pack into transaction set."
+ msgstr ""
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
+ msgid "Running"
+ msgstr ""
+ 
+-#: ../utils.py:100
++#: ../utils.py:124
+ msgid "Sleeping"
+ msgstr ""
+ 
+-#: ../utils.py:101
++#: ../utils.py:125
+ msgid "Uninterruptible"
+ msgstr ""
+ 
+-#: ../utils.py:102
++#: ../utils.py:126
+ msgid "Zombie"
+ msgstr ""
+ 
+-#: ../utils.py:103
++#: ../utils.py:127
+ msgid "Traced/Stopped"
+ msgstr ""
+ 
+-#: ../utils.py:104 ../yumcommands.py:994
++#: ../utils.py:128 ../yumcommands.py:1792
+ msgid "Unknown"
+ msgstr ""
+ 
+-#: ../utils.py:115
++#: ../utils.py:149
+ msgid "  The other application is: PackageKit"
+ msgstr ""
+ 
+-#: ../utils.py:117
++#: ../utils.py:151
+ #, python-format
+ msgid "  The other application is: %s"
+ msgstr ""
+ 
+-#: ../utils.py:120
++#: ../utils.py:154
+ #, python-format
+ msgid "    Memory : %5s RSS (%5sB VSZ)"
+ msgstr ""
+ 
+-#: ../utils.py:125
++#: ../utils.py:159
+ #, python-format
+ msgid "    Started: %s - %s ago"
+ msgstr ""
+ 
+-#: ../utils.py:127
++#: ../utils.py:161
+ #, python-format
+ msgid "    State  : %s, pid: %d"
+ msgstr ""
+ 
+-#: ../utils.py:170 ../yummain.py:43
++#: ../utils.py:190 ../yummain.py:43
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel"
+ msgstr ""
+ 
+-#: ../utils.py:176 ../yummain.py:49
++#: ../utils.py:202 ../yummain.py:49
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on Broken Pipe"
+ msgstr ""
+ 
+-#: ../utils.py:178 ../yummain.py:51
++#: ../utils.py:204 ../yummain.py:51
+ #, python-format
+ msgid ""
+ "\n"
+@@ -1420,47 +1489,47 @@ msgid ""
+ "%s"
+ msgstr ""
+ 
+-#: ../utils.py:228 ../yummain.py:123
++#: ../utils.py:280 ../yummain.py:134
+ msgid ""
+ "Another app is currently holding the yum lock; exiting as configured by "
+ "exit_on_lock"
+ msgstr ""
+ 
+-#: ../utils.py:287
++#: ../utils.py:346
+ #, python-format
+ msgid "PluginExit Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:290
++#: ../utils.py:349
+ #, python-format
+ msgid "Yum Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
++#: ../utils.py:407 ../yummain.py:161 ../yummain.py:200
+ #, python-format
+ msgid "Error: %s"
+ msgstr ""
+ 
+-#: ../utils.py:346 ../yummain.py:194
++#: ../utils.py:411 ../yummain.py:205
+ msgid " You could try using --skip-broken to work around the problem"
+ msgstr ""
+ 
+-#: ../utils.py:348 ../yummain.py:87
++#: ../utils.py:413 ../yummain.py:87
+ msgid " You could try running: rpm -Va --nofiles --nodigest"
+ msgstr ""
+ 
+-#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
++#: ../utils.py:420 ../yummain.py:171 ../yummain.py:213
+ #, python-format
+ msgid "Unknown Error(s): Exit Code: %d:"
+ msgstr ""
+ 
+-#: ../utils.py:361 ../yummain.py:208
++#: ../utils.py:426 ../yummain.py:219
+ msgid ""
+ "\n"
+ "Dependencies Resolved"
+ msgstr ""
+ 
+-#: ../utils.py:376 ../yummain.py:234
++#: ../utils.py:442 ../yummain.py:251
+ msgid "Complete!"
+ msgstr ""
+ 
+@@ -1472,7 +1541,7 @@ msgstr ""
+ msgid "You need to be root to perform this command."
+ msgstr ""
+ 
+-#: ../yumcommands.py:59
++#: ../yumcommands.py:65
+ msgid ""
+ "\n"
+ "You have enabled checking of packages via GPG keys. This is a good thing. \n"
+@@ -1489,451 +1558,484 @@ msgid ""
+ "For more information contact your distribution or package provider.\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:74
++#: ../yumcommands.py:80
+ #, python-format
+ msgid "Problem repository: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:80
++#: ../yumcommands.py:94
+ #, python-format
+ msgid "Error: Need to pass a list of pkgs to %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:86
++#: ../yumcommands.py:110
+ msgid "Error: Need an item to match"
+ msgstr ""
+ 
+-#: ../yumcommands.py:92
++#: ../yumcommands.py:124
+ msgid "Error: Need a group or list of groups"
+ msgstr ""
+ 
+-#: ../yumcommands.py:101
++#: ../yumcommands.py:141
+ #, python-format
+ msgid "Error: clean requires an option: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:106
++#: ../yumcommands.py:146
+ #, python-format
+ msgid "Error: invalid clean argument: %r"
+ msgstr ""
+ 
+-#: ../yumcommands.py:119
++#: ../yumcommands.py:161
+ msgid "No argument to shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:121
++#: ../yumcommands.py:163
+ #, python-format
+ msgid "Filename passed to shell: %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:125
++#: ../yumcommands.py:167
+ #, python-format
+ msgid "File %s given as argument to shell does not exist."
+ msgstr ""
+ 
+-#: ../yumcommands.py:131
++#: ../yumcommands.py:173
+ msgid "Error: more than one file given as argument to shell."
+ msgstr ""
+ 
+-#: ../yumcommands.py:148
++#: ../yumcommands.py:192
+ msgid ""
+ "There are no enabled repos.\n"
+ " Run \"yum repolist all\" to see the repos you have.\n"
+ " You can enable repos with yum-config-manager --enable <repo>"
+ msgstr ""
+ 
+-#: ../yumcommands.py:200
++#: ../yumcommands.py:300
+ msgid "PACKAGE..."
+ msgstr ""
+ 
+-#: ../yumcommands.py:203
++#: ../yumcommands.py:307
+ msgid "Install a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:212
++#: ../yumcommands.py:338
+ msgid "Setting up Install Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:223 ../yumcommands.py:245
++#: ../yumcommands.py:363 ../yumcommands.py:423
+ msgid "[PACKAGE...]"
+ msgstr ""
+ 
+-#: ../yumcommands.py:226
++#: ../yumcommands.py:370
+ msgid "Update a package or packages on your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:234
++#: ../yumcommands.py:399
+ msgid "Setting up Update Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:248
++#: ../yumcommands.py:430
+ msgid "Synchronize installed packages to the latest available versions"
+ msgstr ""
+ 
+-#: ../yumcommands.py:256
++#: ../yumcommands.py:459
+ msgid "Setting up Distribution Synchronization Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:299
++#: ../yumcommands.py:519
+ msgid "Display details about a package or group of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:348
++#: ../yumcommands.py:581
+ msgid "Installed Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:356
++#: ../yumcommands.py:589
+ msgid "Available Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:360
++#: ../yumcommands.py:593
+ msgid "Extra Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:364
++#: ../yumcommands.py:597
+ msgid "Updated Packages"
+ msgstr ""
+ 
+ #. This only happens in verbose mode
+-#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
++#: ../yumcommands.py:605 ../yumcommands.py:612 ../yumcommands.py:1193
+ msgid "Obsoleting Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:381
++#: ../yumcommands.py:614
+ msgid "Recently Added Packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:388
++#: ../yumcommands.py:621
+ msgid "No matching Packages to list"
+ msgstr ""
+ 
+-#: ../yumcommands.py:402
++#: ../yumcommands.py:656
+ msgid "List a package or groups of packages"
+ msgstr ""
+ 
+-#: ../yumcommands.py:414
++#: ../yumcommands.py:685
+ msgid "Remove a package or packages from your system"
+ msgstr ""
+ 
+-#: ../yumcommands.py:421
++#: ../yumcommands.py:714
+ msgid "Setting up Remove Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:435
+-msgid "Setting up Group Process"
+-msgstr ""
+-
+-#: ../yumcommands.py:441
+-msgid "No Groups on which to run command"
+-msgstr ""
+-
+-#: ../yumcommands.py:454
+-msgid "List available package groups"
++#: ../yumcommands.py:773
++msgid "Display, or use, the groups information"
+ msgstr ""
+ 
+-#: ../yumcommands.py:474
+-msgid "Install the packages in a group on your system"
++#: ../yumcommands.py:776
++msgid "Setting up Group Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:497
+-msgid "Remove the packages in a group from your system"
++#: ../yumcommands.py:782
++msgid "No Groups on which to run command"
+ msgstr ""
+ 
+-#: ../yumcommands.py:525
+-msgid "Display details about a package group"
++#: ../yumcommands.py:833
++#, python-format
++msgid "Invalid groups sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:550
++#: ../yumcommands.py:929
+ msgid "Generate the metadata cache"
+ msgstr ""
+ 
+-#: ../yumcommands.py:556
++#: ../yumcommands.py:955
+ msgid "Making cache files for all metadata files."
+ msgstr ""
+ 
+-#: ../yumcommands.py:557
++#: ../yumcommands.py:956
+ msgid "This may take a while depending on the speed of this computer"
+ msgstr ""
+ 
+-#: ../yumcommands.py:578
++#: ../yumcommands.py:977
+ msgid "Metadata Cache Created"
+ msgstr ""
+ 
+-#: ../yumcommands.py:592
++#: ../yumcommands.py:1015
+ msgid "Remove cached data"
+ msgstr ""
+ 
+-#: ../yumcommands.py:613
++#: ../yumcommands.py:1082
+ msgid "Find what package provides the given value"
+ msgstr ""
+ 
+-#: ../yumcommands.py:633
++#: ../yumcommands.py:1139
+ msgid "Check for available package updates"
+ msgstr ""
+ 
+-#: ../yumcommands.py:687
++#: ../yumcommands.py:1230
+ msgid "Search package details for the given string"
+ msgstr ""
+ 
+-#: ../yumcommands.py:693
++#: ../yumcommands.py:1256
+ msgid "Searching Packages: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:710
++#: ../yumcommands.py:1298
+ msgid "Update packages taking obsoletes into account"
+ msgstr ""
+ 
+-#: ../yumcommands.py:719
++#: ../yumcommands.py:1328
+ msgid "Setting up Upgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:737
++#: ../yumcommands.py:1363
+ msgid "Install a local RPM"
+ msgstr ""
+ 
+-#: ../yumcommands.py:745
++#: ../yumcommands.py:1393
+ msgid "Setting up Local Package Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:764
++#: ../yumcommands.py:1437
+ msgid "Determine which package provides the given dependency"
+ msgstr ""
+ 
+-#: ../yumcommands.py:767
++#: ../yumcommands.py:1453
+ msgid "Searching Packages for Dependency:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:781
++#: ../yumcommands.py:1484
+ msgid "Run an interactive yum shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:787
++#: ../yumcommands.py:1510
+ msgid "Setting up Yum Shell"
+ msgstr ""
+ 
+-#: ../yumcommands.py:805
++#: ../yumcommands.py:1553
+ msgid "List a package's dependencies"
+ msgstr ""
+ 
+-#: ../yumcommands.py:811
++#: ../yumcommands.py:1580
+ msgid "Finding dependencies: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:827
++#: ../yumcommands.py:1612
+ msgid "Display the configured software repositories"
+ msgstr ""
+ 
+-#: ../yumcommands.py:893 ../yumcommands.py:894
++#: ../yumcommands.py:1691 ../yumcommands.py:1692
+ msgid "enabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:920 ../yumcommands.py:921
++#: ../yumcommands.py:1718 ../yumcommands.py:1719
+ msgid "disabled"
+ msgstr ""
+ 
+-#: ../yumcommands.py:937
++#: ../yumcommands.py:1735
+ msgid "Repo-id      : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:938
++#: ../yumcommands.py:1736
+ msgid "Repo-name    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:941
++#: ../yumcommands.py:1739
+ msgid "Repo-status  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:944
++#: ../yumcommands.py:1742
+ msgid "Repo-revision: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:948
++#: ../yumcommands.py:1746
+ msgid "Repo-tags    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:954
++#: ../yumcommands.py:1752
+ msgid "Repo-distro-tags: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:959
++#: ../yumcommands.py:1757
+ msgid "Repo-updated : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:961
++#: ../yumcommands.py:1759
+ msgid "Repo-pkgs    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:962
++#: ../yumcommands.py:1760
+ msgid "Repo-size    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:969 ../yumcommands.py:990
++#: ../yumcommands.py:1767 ../yumcommands.py:1788
+ msgid "Repo-baseurl : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:977
++#: ../yumcommands.py:1775
+ msgid "Repo-metalink: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:981
++#: ../yumcommands.py:1779
+ msgid "  Updated    : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:984
++#: ../yumcommands.py:1782
+ msgid "Repo-mirrors : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1000
++#: ../yumcommands.py:1798
+ #, python-format
+ msgid "Never (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1002
++#: ../yumcommands.py:1800
+ #, python-format
+ msgid "Instant (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1005
++#: ../yumcommands.py:1803
+ #, python-format
+ msgid "%s second(s) (last: %s)"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1007
++#: ../yumcommands.py:1805
+ msgid "Repo-expire  : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1010
++#: ../yumcommands.py:1808
+ msgid "Repo-exclude : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1014
++#: ../yumcommands.py:1812
+ msgid "Repo-include : "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1018
++#: ../yumcommands.py:1816
+ msgid "Repo-excluded: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1022
++#: ../yumcommands.py:1820
+ msgid "Repo-filename: "
+ msgstr ""
+ 
+ #. Work out the first (id) and last (enabled/disalbed/count),
+ #. then chop the middle (name)...
+-#: ../yumcommands.py:1032 ../yumcommands.py:1061
++#: ../yumcommands.py:1830 ../yumcommands.py:1859
+ msgid "repo id"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
++#: ../yumcommands.py:1847 ../yumcommands.py:1848 ../yumcommands.py:1866
+ msgid "status"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1062
++#: ../yumcommands.py:1860
+ msgid "repo name"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1099
++#: ../yumcommands.py:1922
+ msgid "Display a helpful usage message"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1133
++#: ../yumcommands.py:1964
+ #, python-format
+ msgid "No help available for %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1138
++#: ../yumcommands.py:1969
+ msgid ""
+ "\n"
+ "\n"
+ "aliases: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1140
++#: ../yumcommands.py:1971
+ msgid ""
+ "\n"
+ "\n"
+ "alias: "
+ msgstr ""
+ 
+-#: ../yumcommands.py:1168
++#: ../yumcommands.py:2056
+ msgid "Setting up Reinstall Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1176
++#: ../yumcommands.py:2068
+ msgid "reinstall a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1195
++#: ../yumcommands.py:2131
+ msgid "Setting up Downgrade Process"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1202
++#: ../yumcommands.py:2142
+ msgid "downgrade a package"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1216
++#: ../yumcommands.py:2181
+ msgid "Display a version for the machine and/or available repos."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1255
++#: ../yumcommands.py:2233
+ msgid " Yum version groups:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1265
++#: ../yumcommands.py:2243
+ msgid " Group   :"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1266
++#: ../yumcommands.py:2244
+ msgid " Packages:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1295
++#: ../yumcommands.py:2273
+ msgid "Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1303
++#: ../yumcommands.py:2281
+ msgid "Group-Installed:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1312
++#: ../yumcommands.py:2290
+ msgid "Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1321
++#: ../yumcommands.py:2299
+ msgid "Group-Available:"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1360
++#: ../yumcommands.py:2363
+ msgid "Display, or use, the transaction history"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2435
++msgid "Transactions:"
++msgstr ""
++
++#: ../yumcommands.py:2436
++msgid "Begin time  :"
++msgstr ""
++
++#: ../yumcommands.py:2437
++msgid "End time    :"
++msgstr ""
++
++#: ../yumcommands.py:2438
++msgid "Counts      :"
++msgstr ""
++
++#: ../yumcommands.py:2439
++msgid "  NEVRAC :"
++msgstr ""
++
++#: ../yumcommands.py:2440
++msgid "  NEVRA  :"
++msgstr ""
++
++#: ../yumcommands.py:2441
++msgid "  NA     :"
++msgstr ""
++
++#: ../yumcommands.py:2442
++msgid "  NEVR   :"
++msgstr ""
++
++#: ../yumcommands.py:2443
++msgid "  rpm DB :"
++msgstr ""
++
++#: ../yumcommands.py:2444
++msgid "  yum DB :"
++msgstr ""
++
++#: ../yumcommands.py:2475
+ #, python-format
+ msgid "Invalid history sub-command, use: %s."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1439
++#: ../yumcommands.py:2482
+ msgid "You don't have access to the history DB."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1487
++#: ../yumcommands.py:2574
+ msgid "Check for problems in the rpmdb"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1514
++#: ../yumcommands.py:2639
+ msgid "load a saved transaction from filename"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1518
++#: ../yumcommands.py:2656
+ msgid "No saved transaction file specified."
+ msgstr ""
+ 
+-#: ../yumcommands.py:1522
++#: ../yumcommands.py:2660
+ #, python-format
+ msgid "loading transaction from %s"
+ msgstr ""
+ 
+-#: ../yumcommands.py:1528
++#: ../yumcommands.py:2666
+ #, python-format
+ msgid "Transaction loaded from %s with %s members"
+ msgstr ""
+@@ -1944,100 +2046,106 @@ msgstr ""
+ msgid " Yum checks failed: %s"
+ msgstr ""
+ 
+-#: ../yummain.py:114
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
++#: ../yummain.py:110
++msgid "No read/write access in current directory, moving to /"
+ msgstr ""
+ 
+-#: ../yummain.py:120
++#: ../yummain.py:124
+ msgid "Can't create lock file; exiting"
+ msgstr ""
+ 
++#: ../yummain.py:128
++msgid ""
++"Another app is currently holding the yum lock; waiting for it to exit..."
++msgstr ""
++
+ #. Depsolve stage
+-#: ../yummain.py:167
++#: ../yummain.py:178
+ msgid "Resolving Dependencies"
+ msgstr ""
+ 
+-#: ../yummain.py:230
++#: ../yummain.py:241 ../yummain.py:249
+ #, python-format
+-msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
++msgid ""
++"Your transaction was saved, rerun it with:\n"
++" yum load-transaction %s"
+ msgstr ""
+ 
+-#: ../yummain.py:288
++#: ../yummain.py:326
+ msgid ""
+ "\n"
+ "\n"
+ "Exiting on user cancel."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:84
++#: ../yum/depsolve.py:83
+ msgid "doTsSetup() will go away in a future version of Yum.\n"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:99
++#: ../yum/depsolve.py:98
+ msgid "Setting up TransactionSets before config class is up"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:153
++#: ../yum/depsolve.py:152
+ #, python-format
+ msgid "Invalid tsflag in config file: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:164
++#: ../yum/depsolve.py:170
+ #, python-format
+ msgid "Searching pkgSack for dep: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:207
++#: ../yum/depsolve.py:221
+ #, python-format
+ msgid "Member: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
++#: ../yum/depsolve.py:235 ../yum/depsolve.py:831
+ #, python-format
+ msgid "%s converted to install"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:233
++#: ../yum/depsolve.py:247
+ #, python-format
+ msgid "Adding Package %s in mode %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:249
++#: ../yum/depsolve.py:263
+ #, python-format
+ msgid "Removing Package %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:271
++#: ../yum/depsolve.py:285
+ #, python-format
+ msgid "%s requires: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:312
++#: ../yum/depsolve.py:326
+ #, python-format
+ msgid "%s requires %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:339
++#: ../yum/depsolve.py:353
+ msgid "Needed Require has already been looked up, cheating"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:349
++#: ../yum/depsolve.py:363
+ #, python-format
+ msgid "Needed Require is not a package name. Looking up: %s"
+ msgstr ""
  
- #: ../yumcommands.py:1528
+-#: ../yum/depsolve.py:357
++#: ../yum/depsolve.py:371
  #, python-format
-@@ -2009,6 +2009,8 @@ msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ msgid "Potential Provider: %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:380
++#: ../yum/depsolve.py:394
  #, python-format
- msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
+ msgid "Mode is %s for provider of %s: %s"
  msgstr ""
-+"ਤੁਹਾਡੀ ਟਰਾਂਸੈਕਸ਼ਨ ਸੰਭਾਲੀ ਗਈ ਹੈ, ਇਸ ਨੂੰ ਬਾਅਦ ਵਿੱਚ ਚਲਾਉ: yum load-transaction "
-+"%s"
  
- #: ../yummain.py:288
- msgid ""
-@@ -2098,12 +2100,12 @@ msgstr ""
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
+-#: ../yum/depsolve.py:384
++#: ../yum/depsolve.py:398
+ #, python-format
+ msgid "Mode for pkg providing %s: %s"
+ msgstr ""
+@@ -2045,774 +2153,782 @@ msgstr ""
+ #. the thing it needs is being updated or obsoleted away
+ #. try to update the requiring package in hopes that all this problem goes
+ #. away :(
+-#: ../yum/depsolve.py:389 ../yum/depsolve.py:406
++#: ../yum/depsolve.py:403 ../yum/depsolve.py:420
  #, python-format
  msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕਰਨ ਲਈ %s ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ msgstr ""
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
+-#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
++#: ../yum/depsolve.py:414 ../yum/depsolve.py:424
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
-+msgstr "%s ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ। ਫੇਲ੍ਹ!"
+ msgstr ""
  
- #: ../yum/depsolve.py:416
+-#: ../yum/depsolve.py:416
++#: ../yum/depsolve.py:430
  #, python-format
-@@ -2123,7 +2125,7 @@ msgstr ""
- #: ../yum/depsolve.py:440
+ msgid "TSINFO: %s package requiring %s marked as erase"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:429
++#: ../yum/depsolve.py:443
+ #, python-format
+ msgid "TSINFO: Obsoleting %s with %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:432
++#: ../yum/depsolve.py:446
+ #, python-format
+ msgid "TSINFO: Updating %s to resolve dep."
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:440
++#: ../yum/depsolve.py:454
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
--msgstr ""
-+msgstr "%s: ਲਈ ਨਿਰਭਰਤਾ ਵਾਸਤੇ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ ਜਾ ਸਕਦਾ"
+ msgstr ""
  
- #: ../yum/depsolve.py:471
+-#: ../yum/depsolve.py:471
++#: ../yum/depsolve.py:485
  #, python-format
-@@ -2135,6 +2137,8 @@ msgstr ""
+ msgid "Quick matched %s to require for %s"
+ msgstr ""
+ 
+ #. is it already installed?
+-#: ../yum/depsolve.py:513
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
-+"%s ਉਪਲੱਬਧ ਕਰਵਾਉਣ ਵਾਲਿਆ ਪੈਕੇਜਾਂ ਵਿੱਚ ਹੈ, ਪਰ ਇਹ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ, ਹਟਾਇਆ ਜਾ "
-+"ਰਿਹਾ ਹੈ।"
  
- #: ../yum/depsolve.py:529
+-#: ../yum/depsolve.py:529
++#: ../yum/depsolve.py:543
  #, python-format
-@@ -2256,7 +2260,7 @@ msgstr ""
- #: ../yum/__init__.py:488
- #, python-format
- msgid "Repository %r is missing name in configuration, using id"
--msgstr ""
-+msgstr "ਰਿਪੋਜ਼ਟਰੀ %r ਦਾ ਸੰਰਚਨਾ ਵਿੱਚ ਨਾਂ ਮੌਜੂਦ ਨਹੀਂ ਹੈ, id ਵਰਤੋਂ ਨਾਲ"
+ msgid "Potential resolving package %s has newer instance in ts."
+ msgstr ""
  
- #: ../yum/__init__.py:526
- msgid "plugins already initialised"
-@@ -2333,7 +2337,7 @@ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਟੈਗ ਸ਼ਾਮਲ ਕੀ
- #: ../yum/__init__.py:866
+-#: ../yum/depsolve.py:540
++#: ../yum/depsolve.py:554
  #, python-format
- msgid "Failed to add Pkg Tags for repository: %s - %s"
--msgstr ""
-+msgstr "ਰਿਪੋਜ਼ਟਰੀ ਲਈ Pkg ਟੈਗ ਜੋੜਨ ਲਈ ਫੇਲ੍ਹ: %s - %s"
+ msgid "Potential resolving package %s has newer instance installed."
+ msgstr ""
  
- #: ../yum/__init__.py:944
- msgid "Importing additional filelist information"
-@@ -2441,7 +2445,7 @@ msgstr "%s ਲਾਕ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s
- #: ../yum/__init__.py:1785
+-#: ../yum/depsolve.py:558
++#: ../yum/depsolve.py:572
  #, python-format
- msgid "Unable to check if PID %s is active"
--msgstr ""
-+msgstr "ਚੈੱਕ ਕਰਨ ਲਈ ਅਸਮਰੱਥ ਕਿਕੀ PID %s ਐਕਟਿਵ ਹੈ"
+ msgid "%s already in ts, skipping this one"
+ msgstr ""
  
- #. Another copy seems to be running.
- #: ../yum/__init__.py:1789
-@@ -2609,12 +2613,12 @@ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਨਾਂ ਦਾ ਕੋਈ ਪੈ
- #: ../yum/__init__.py:2941
+-#: ../yum/depsolve.py:607
++#: ../yum/depsolve.py:621
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "ਸਾਵਧਾਨ: %s ਗਰੁੱਪ ਵਿੱਚ ਕੋਈ ਵੀ ਪੈਕੇਜ ਨਹੀਂ ਹੈ।"
+ msgid "TSINFO: Marking %s as update for %s"
+ msgstr ""
  
- #: ../yum/__init__.py:2943
+-#: ../yum/depsolve.py:616
++#: ../yum/depsolve.py:630
  #, python-format
- msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
-+msgstr "ਗਰੁੱਪ %s ਵਿੱਚ %u ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹਨ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ।"
+ msgid "TSINFO: Marking %s as install for %s"
+ msgstr ""
  
- #. This can happen due to excludes after .up has
- #. happened.
-@@ -2787,6 +2791,8 @@ msgid ""
- "Package %s.%s not installed, cannot update it. Run yum install to install it"
- " instead."
+-#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
++#: ../yum/depsolve.py:765 ../yum/depsolve.py:861
+ msgid "Success - empty transaction"
  msgstr ""
-+"ਪੈਕੇਜ %s.%s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਅੱਪਡੇਟ ਨਹੀਂ ਹੋ ਸਕਦਾ। ਇਸ ਦੀ ਬਜਾਏ ਪਹਿਲਾਂ yum "
-+"install ਚਲਾਉ।"
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
- #, python-format
-@@ -2849,7 +2855,7 @@ msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ: %s"
- #: ../yum/__init__.py:4516
- #, python-format
- msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "%s ਤੋਂ ਕੁੰਜੀ ਲਈ ਜਾ ਰਹੀ ਹੈ"
+-#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
++#: ../yum/depsolve.py:805 ../yum/depsolve.py:821
+ msgid "Restarting Loop"
+ msgstr ""
  
- #: ../yum/__init__.py:4534
- msgid "GPG key retrieval failed: "
-@@ -2884,6 +2890,10 @@ msgid ""
- " Package: %s (%s)\n"
- " From   : %s"
+-#: ../yum/depsolve.py:799
++#: ../yum/depsolve.py:841
+ msgid "Dependency Process ending"
  msgstr ""
-+"%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n"
-+" Userid : %s\n"
-+" ਪੈਕੇਜ: %s (%s)\n"
-+" ਤੋਂ   : %s"
  
- #: ../yum/__init__.py:4600
- #, python-format
-@@ -2892,11 +2902,14 @@ msgid ""
- " Userid: \"%s\"\n"
- " From  : %s"
+-#: ../yum/depsolve.py:821
++#: ../yum/depsolve.py:863
+ msgid "Success - deps resolved"
  msgstr ""
-+"%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n"
-+" Userid: \"%s\"\n"
-+" ਤੋਂ  : %s"
  
- #: ../yum/__init__.py:4634
+-#: ../yum/depsolve.py:845
++#: ../yum/depsolve.py:887
  #, python-format
- msgid "GPG key at %s (0x%s) is already installed"
--msgstr ""
-+msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
+ msgid "Checking deps for %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4671
+-#: ../yum/depsolve.py:931
++#: ../yum/depsolve.py:973
  #, python-format
-@@ -2909,7 +2922,7 @@ msgstr "ਕੁੰਜੀ ਠੀਕ ਤਰ੍ਹਾਂ ਇੰਪੋਰਟ ਕੀ
+ msgid "looking for %s as a requirement of %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4676
- msgid "Didn't install any keys"
--msgstr ""
-+msgstr "ਕੋਈ ਵੀ ਕੁੰਜੀ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੀ"
+-#: ../yum/depsolve.py:1169
++#: ../yum/depsolve.py:1216
+ #, python-format
+ msgid "Running compare_providers() for %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4680
+-#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
++#: ../yum/depsolve.py:1243 ../yum/depsolve.py:1249
  #, python-format
-@@ -2925,7 +2938,7 @@ msgstr ""
- #: ../yum/__init__.py:4713
+ msgid "better arch in po %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1298
++#: ../yum/depsolve.py:1345
  #, python-format
- msgid "GPG key at %s (0x%s) is already imported"
--msgstr ""
-+msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਨੂੰ ਪਹਿਲਾਂ ਹੀ ਇੰਪੋਰਟ ਕੀਤਾ ਗਿਆ ਹੈ"
+ msgid "%s obsoletes %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4754
- msgid "Key import failed"
-@@ -2934,7 +2947,7 @@ msgstr "ਕੁੰਜੀ ਇੰਪੋਰਟ ਫੇਲ੍ਹ"
- #: ../yum/__init__.py:4770
+-#: ../yum/depsolve.py:1310
++#: ../yum/depsolve.py:1357
  #, python-format
- msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "%s ਰੈਪੋ ਲਈ ਕੋਈ ਵੀ ਕੁੰਜੀਆਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
+ msgid ""
+ "archdist compared %s to %s on %s\n"
+ "  Winner: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
+-#: ../yum/depsolve.py:1318
++#: ../yum/depsolve.py:1365
  #, python-format
-@@ -2972,7 +2985,7 @@ msgstr ""
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
+ msgid "common sourcerpm %s and %s"
+ msgstr ""
+ 
+-#: ../yum/depsolve.py:1322
++#: ../yum/depsolve.py:1369
  #, python-format
- msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ %s ਸੰਭਾਲੀ ਨਹੀਂ ਜਾ ਸਕੀ: %s"
+ msgid "base package %s is installed for %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5195
+-#: ../yum/depsolve.py:1328
++#: ../yum/depsolve.py:1375
  #, python-format
-@@ -2985,11 +2998,11 @@ msgstr ""
+ msgid "common prefix of %s between %s and %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5216
- msgid " ignoring, as requested."
--msgstr ""
-+msgstr " ਕੀਤੀ ਮੰਗ ਮੁਤਾਬਕ ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+-#: ../yum/depsolve.py:1359
++#: ../yum/depsolve.py:1406
+ #, python-format
+ msgid "requires minimal: %d"
+ msgstr ""
  
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
- msgid " aborting."
--msgstr ""
-+msgstr "ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
+-#: ../yum/depsolve.py:1363
++#: ../yum/depsolve.py:1410
+ #, python-format
+ msgid " Winner: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5228
- msgid "cannot find tsflags or tsflags not integer."
-@@ -3096,7 +3109,7 @@ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਜਾਂਦਾ ਹੈ"
- #: ../yum/rpmsack.py:176
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1415
  #, python-format
- msgid "%s provides %s but it cannot be found"
--msgstr ""
-+msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਇਹ ਲੱਭਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+ msgid " Loser(with %d): %s"
+ msgstr ""
  
- #: ../yum/rpmtrans.py:80
- msgid "Repackaging"
-diff --git a/po/pl.po b/po/pl.po
-index 0fe83a9..42699c5 100644
---- a/po/pl.po
-+++ b/po/pl.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Piotr Drąg <piotrdrag at gmail.com>, 2011
-+# Piotr Drąg <piotrdrag at gmail.com>, 2011.
- msgid ""
+-#: ../yum/depsolve.py:1384
++#: ../yum/depsolve.py:1431
+ #, python-format
+ msgid "Best Order: %s"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-06-06 15:10+0000\n"
-+"Last-Translator: raven <piotrdrag at gmail.com>\n"
- "Language-Team: Polish (http://www.transifex.net/projects/p/yum/team/pl/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -859,7 +859,7 @@ msgstr "Nie zainstalowano"
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Niedostępne"
+-#: ../yum/__init__.py:234
++#: ../yum/__init__.py:261
+ msgid "doConfigSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1558,7 +1558,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../yum/__init__.py:482
++#: ../yum/__init__.py:527
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Problemowe repozytorium: %s"
+ msgid "Repository %r: Error parsing config: %s"
+ msgstr ""
  
- #: ../yumcommands.py:80
+-#: ../yum/__init__.py:488
++#: ../yum/__init__.py:533
  #, python-format
-@@ -1885,7 +1885,7 @@ msgstr "Wykluczenia z repozytorium        : "
- 
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Nazwa pliku repozytorium: "
- 
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/pt_BR.po b/po/pt_BR.po
-index 493f090..94e2da6 100644
---- a/po/pt_BR.po
-+++ b/po/pt_BR.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# ufa <ufa at technotroll.org>, 2011
-+# ufa <ufa at technotroll.org>, 2011.
- msgid ""
+ msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-08-06 18:09+0000\n"
-+"Last-Translator: thiagopeixoto <thiagolcpeixoto at gmail.com>\n"
- "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/yum/team/pt_BR/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -158,7 +158,7 @@ msgstr "Erro ao baixar pacotes:\n"
  
- #: ../cli.py:525 ../yum/__init__.py:4967
- msgid "Running Transaction Check"
--msgstr ""
-+msgstr "Executando Verificação da Transação"
+-#: ../yum/__init__.py:526
++#: ../yum/__init__.py:571
+ msgid "plugins already initialised"
+ msgstr ""
  
- #: ../cli.py:534 ../yum/__init__.py:4976
- msgid "ERROR You need to update rpm to handle:"
-@@ -360,7 +360,7 @@ msgstr "Grupos instalados:"
+-#: ../yum/__init__.py:533
++#: ../yum/__init__.py:580
+ msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../cli.py:1270
- msgid "Installed Language Groups:"
--msgstr ""
-+msgstr "Grupos de Idiomas Instalados:"
+-#: ../yum/__init__.py:544
++#: ../yum/__init__.py:591
+ msgid "Reading Local RPMDB"
+ msgstr ""
  
- #: ../cli.py:1276
- msgid "Available Groups:"
-@@ -368,7 +368,7 @@ msgstr "Grupos disponíveis:"
+-#: ../yum/__init__.py:567
++#: ../yum/__init__.py:621
+ msgid "doRepoSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../cli.py:1282
- msgid "Available Language Groups:"
--msgstr ""
-+msgstr "Grupos de Idiomas Disponíveis:"
+-#: ../yum/__init__.py:630
++#: ../yum/__init__.py:692
+ msgid "doSackSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../cli.py:1285
- msgid "Done"
-@@ -449,7 +449,7 @@ msgstr "--color aceita uma destas opções: auto, always, never"
- #: ../cli.py:1596
- #, python-format
- msgid "--installroot must be an absolute path: %s"
--msgstr ""
-+msgstr "--installroot deve ser um caminho absoluto: %s"
+-#: ../yum/__init__.py:660
++#: ../yum/__init__.py:722
+ msgid "Setting up Package Sacks"
+ msgstr ""
  
- #: ../cli.py:1642
- msgid "show this help message and exit"
-@@ -743,7 +743,7 @@ msgstr " Descrição: %s"
- #: ../output.py:788
+-#: ../yum/__init__.py:705
++#: ../yum/__init__.py:767
  #, python-format
- msgid " Language: %s"
--msgstr ""
-+msgstr " Linguagem: %s"
- 
- #: ../output.py:790
- msgid " Mandatory Packages:"
-@@ -850,7 +850,7 @@ msgstr "Não instalado"
+ msgid "repo object for repo %s lacks a _resetSack method\n"
+ msgstr ""
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Não disponível"
+-#: ../yum/__init__.py:706
++#: ../yum/__init__.py:768
+ msgid "therefore this repo cannot be reset.\n"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1004,7 +1004,7 @@ msgstr ""
+-#: ../yum/__init__.py:711
++#: ../yum/__init__.py:776
+ msgid "doUpdateSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../output.py:1421 ../output.py:1592
- msgid "No transactions"
--msgstr ""
-+msgstr "Nenhuma transação"
+-#: ../yum/__init__.py:723
++#: ../yum/__init__.py:788
+ msgid "Building updates object"
+ msgstr ""
  
- #: ../output.py:1446 ../output.py:2013
- msgid "Bad transaction IDs, or package(s), given"
-@@ -1012,7 +1012,7 @@ msgstr "IDs de transação ou pacote(s) fornecido(s) inválido(s)"
+-#: ../yum/__init__.py:765
++#: ../yum/__init__.py:832
+ msgid "doGroupSetup() will go away in a future version of Yum.\n"
+ msgstr ""
  
- #: ../output.py:1484
- msgid "Command line"
--msgstr ""
-+msgstr "Linha de comando"
+-#: ../yum/__init__.py:790
++#: ../yum/__init__.py:857
+ msgid "Getting group metadata"
+ msgstr ""
  
- #: ../output.py:1486 ../output.py:1908
- msgid "Login user"
-@@ -1082,22 +1082,22 @@ msgstr "Início do rpmdb:"
- #: ../output.py:1749
+-#: ../yum/__init__.py:816
++#: ../yum/__init__.py:885
  #, python-format
- msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u segundos)"
+ msgid "Adding group file from repository: %s"
+ msgstr ""
  
- #: ../output.py:1751
+-#: ../yum/__init__.py:827
++#: ../yum/__init__.py:896
  #, python-format
- msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u minutos)"
+ msgid "Failed to add groups file for repository: %s - %s"
+ msgstr ""
  
- #: ../output.py:1753
- #, python-format
- msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u horas)"
+-#: ../yum/__init__.py:833
++#: ../yum/__init__.py:902
+ msgid "No Groups Available in any repository"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:845
++#: ../yum/__init__.py:914
+ msgid "Getting pkgtags metadata"
+ msgstr ""
  
- #: ../output.py:1755
+-#: ../yum/__init__.py:855
++#: ../yum/__init__.py:924
  #, python-format
- msgid "(%u days)"
--msgstr ""
-+msgstr "(%u dias)"
+ msgid "Adding tags from repository: %s"
+ msgstr ""
  
- #: ../output.py:1756
- msgid "End time       :"
-@@ -1122,7 +1122,7 @@ msgstr "Interrompido"
+-#: ../yum/__init__.py:866
++#: ../yum/__init__.py:935
+ #, python-format
+ msgid "Failed to add Pkg Tags for repository: %s - %s"
+ msgstr ""
  
- #: ../output.py:1773
- msgid "Failures:"
--msgstr ""
-+msgstr "Falhas:"
+-#: ../yum/__init__.py:944
++#: ../yum/__init__.py:1015
+ msgid "Importing additional filelist information"
+ msgstr ""
  
- #: ../output.py:1777
- msgid "Failure:"
-@@ -1251,7 +1251,7 @@ msgstr "instalado"
+-#: ../yum/__init__.py:958
++#: ../yum/__init__.py:1033
+ #, python-format
+ msgid "The program %s%s%s is found in the yum-utils package."
+ msgstr ""
  
- #: ../output.py:2107
- msgid "an update"
--msgstr ""
-+msgstr "uma atualização"
+-#: ../yum/__init__.py:966
++#: ../yum/__init__.py:1050
+ msgid ""
+ "There are unfinished transactions remaining. You might consider running yum-"
+ "complete-transaction first to finish them."
+ msgstr ""
  
- #: ../output.py:2108
- msgid "erased"
-@@ -1267,7 +1267,7 @@ msgstr ""
+-#: ../yum/__init__.py:983
++#: ../yum/__init__.py:1067
+ msgid "--> Finding unneeded leftover dependencies"
+ msgstr ""
  
- #: ../output.py:2111
- msgid "obsoleting"
--msgstr ""
-+msgstr "obsoleto"
+-#: ../yum/__init__.py:1041
++#: ../yum/__init__.py:1125
+ #, python-format
+ msgid "Protected multilib versions: %s != %s"
+ msgstr ""
  
- #: ../output.py:2112
- msgid "updated"
-@@ -1280,7 +1280,7 @@ msgstr "obsoleto"
- #: ../output.py:2117
+-#: ../yum/__init__.py:1096
++#: ../yum/__init__.py:1180
  #, python-format
- msgid "---> Package %s.%s %s:%s-%s will be %s"
--msgstr ""
-+msgstr "---> O pacote %s.%s %s:%s-%s será %s"
+ msgid "Trying to remove \"%s\", which is protected"
+ msgstr ""
  
- #: ../output.py:2124
- msgid "--> Running transaction check"
-@@ -1551,7 +1551,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../yum/__init__.py:1217
++#: ../yum/__init__.py:1301
+ msgid ""
+ "\n"
+ "Packages skipped because of dependency problems:"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:1221
++#: ../yum/__init__.py:1305
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Repositório problema: %s"
+ msgid "    %s from %s"
+ msgstr ""
  
- #: ../yumcommands.py:80
+ #. FIXME: _N()
+-#: ../yum/__init__.py:1391
++#: ../yum/__init__.py:1477
  #, python-format
-@@ -1994,12 +1994,12 @@ msgstr ""
+ msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
+ msgstr ""
  
- #: ../yumcommands.py:1518
- msgid "No saved transaction file specified."
--msgstr ""
-+msgstr "Nenhum arquivo de transação salvo especificado."
+-#: ../yum/__init__.py:1395
++#: ../yum/__init__.py:1481
+ msgid "Warning: RPMDB altered outside of yum."
+ msgstr ""
  
- #: ../yumcommands.py:1522
- #, python-format
- msgid "loading transaction from %s"
--msgstr ""
-+msgstr "carregando transação de %s"
+-#: ../yum/__init__.py:1407
++#: ../yum/__init__.py:1493
+ msgid "missing requires"
+ msgstr ""
  
- #: ../yumcommands.py:1528
- #, python-format
-@@ -2010,7 +2010,7 @@ msgstr ""
- #: ../yummain.py:84
- #, python-format
- msgid " Yum checks failed: %s"
--msgstr ""
-+msgstr "A verificação do yum falhou: %s"
+-#: ../yum/__init__.py:1408
++#: ../yum/__init__.py:1494
+ msgid "installed conflict"
+ msgstr ""
  
- #: ../yummain.py:114
+-#: ../yum/__init__.py:1525
++#: ../yum/__init__.py:1617
  msgid ""
-@@ -2021,7 +2021,7 @@ msgstr ""
+ "Warning: scriptlet or other non-fatal errors occurred during transaction."
+ msgstr ""
  
- #: ../yummain.py:120
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Não é possível criar o arquivo de bloqueio; saindo"
+-#: ../yum/__init__.py:1535
++#: ../yum/__init__.py:1627
+ msgid "Transaction couldn't start:"
+ msgstr ""
  
- #. Depsolve stage
- #: ../yummain.py:167
-@@ -2122,7 +2122,7 @@ msgstr "Modo para o pacote que fornece o %s: %s"
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
- #, python-format
- msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "Tentando atualizar %s para resolver a dependência"
+ #. should this be 'to_unicoded'?
+-#: ../yum/__init__.py:1538
++#: ../yum/__init__.py:1630
+ msgid "Could not run transaction."
+ msgstr ""
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
+-#: ../yum/__init__.py:1552
++#: ../yum/__init__.py:1644
  #, python-format
-@@ -2826,6 +2826,8 @@ msgid ""
- "Package %s.%s not installed, cannot update it. Run yum install to install it"
- " instead."
+ msgid "Failed to remove transaction file %s"
  msgstr ""
-+"Pacote %s.%s não instalado, não pode ser atualizado. Execute yum install "
-+"para instalá-lo em vez disso."
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
- #, python-format
-@@ -2888,7 +2890,7 @@ msgstr "Falha ao desatualizar: %s"
- #: ../yum/__init__.py:4516
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1590
++#: ../yum/__init__.py:1687
  #, python-format
- msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "Recuperando chave de %s"
- 
- #: ../yum/__init__.py:4534
- msgid "GPG key retrieval failed: "
-@@ -2948,7 +2950,7 @@ msgstr "Chave importada com sucesso"
- 
- #: ../yum/__init__.py:4676
- msgid "Didn't install any keys"
--msgstr ""
-+msgstr "Não instalar nenhuma das chaves"
+ msgid "%s was supposed to be installed but is not!"
+ msgstr ""
  
- #: ../yum/__init__.py:4680
- #, python-format
-@@ -2975,7 +2977,7 @@ msgstr "Falha na importação da chave"
- #: ../yum/__init__.py:4770
+ #. maybe a file log here, too
+ #. but raising an exception is not going to do any good
+-#: ../yum/__init__.py:1651
++#. Note: This actually triggers atm. because we can't
++#. always find the erased txmbr to set it when
++#. we should.
++#: ../yum/__init__.py:1756
  #, python-format
- msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "Não instalar nenhuma das chaves para o repositório %s"
+ msgid "%s was supposed to be removed but is not!"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
+-#: ../yum/__init__.py:1768
++#: ../yum/__init__.py:1883
  #, python-format
-@@ -3011,16 +3013,17 @@ msgstr "Não foi possível definir a cachedir: %s"
- #: ../yum/__init__.py:5148 ../yum/__init__.py:5150
- msgid "Dependencies not solved. Will not save unresolved transaction."
+ msgid "Could not open lock %s: %s"
  msgstr ""
-+"Dependências não resolvidas. Transações não resolvidas não serão salvas."
  
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1785
++#: ../yum/__init__.py:1900
  #, python-format
- msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "Não foi possível salvar o arquivo de transação %s: %s"
+ msgid "Unable to check if PID %s is active"
+ msgstr ""
  
- #: ../yum/__init__.py:5195
+ #. Another copy seems to be running.
+-#: ../yum/__init__.py:1789
++#: ../yum/__init__.py:1904
  #, python-format
- msgid "Could not access/read saved transaction %s : %s"
--msgstr ""
-+msgstr "Não foi possível acessar/ler a transação salva %s : %s"
- 
- #: ../yum/__init__.py:5214
- msgid "rpmdb ver mismatched saved transaction version, "
-@@ -3028,11 +3031,11 @@ msgstr ""
- 
- #: ../yum/__init__.py:5216
- msgid " ignoring, as requested."
--msgstr ""
-+msgstr "ignorando, conforme solicitado."
- 
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
- msgid " aborting."
--msgstr ""
-+msgstr "abortando."
- 
- #: ../yum/__init__.py:5228
- msgid "cannot find tsflags or tsflags not integer."
-diff --git a/po/pygettext.py b/po/pygettext.py
-index 276a433..7f13138 100644
---- a/po/pygettext.py
-+++ b/po/pygettext.py
-@@ -1,4 +1,5 @@
- #!/usr/bin/python
-+# coding=utf-8
- # Originally written by Barry Warsaw <bwarsaw at python.org>
- #
- # minimally patched to make it even more xgettext compatible 
-diff --git a/po/ru.po b/po/ru.po
-index 52ba58b..a94c27b 100644
---- a/po/ru.po
-+++ b/po/ru.po
-@@ -2,15 +2,15 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Misha Shnurapet <shnurapet AT fedoraproject.org>, 2011
--# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011
-+# Misha Shnurapet <shnurapet AT fedoraproject.org>, 2011.
-+# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011.
- msgid ""
+ msgid "Existing lock %s: another copy is running as pid %s."
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-06-07 09:13+0000\n"
-+"Last-Translator: shnurapet <shnurapet at fedoraproject.org>\n"
- "Language-Team: Russian (http://www.transifex.net/projects/p/yum/team/ru/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -283,16 +283,16 @@ msgstr "Совпадений: %s"
+ 
+ #. Whoa. What the heck happened?
+-#: ../yum/__init__.py:1830
++#: ../yum/__init__.py:1952
  #, python-format
- msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
+ msgid "Could not create lock at %s: %s "
  msgstr ""
--"  Название и описание совпадают только с %sonly%s, используйте «search all»,"
--" чтобы искать везде."
-+"  Показаны %sтолько%s совпадения по названиям и описаниям, для большего "
-+"используйте «search all»."
  
- #: ../cli.py:1077
+-#: ../yum/__init__.py:1875
++#: ../yum/__init__.py:2005
  #, python-format
  msgid ""
- "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+ "Package does not match intended download. Suggestion: run yum "
+ "--enablerepo=%s clean metadata"
  msgstr ""
--"  Полное название и описание совпадают только с %sonly%s, используйте "
--"«search all», чтобы искать везде."
-+"  Показаны %sтолько%s полные совпадения по названиям и описаниям, для "
-+"большего используйте «search all»."
  
- #: ../cli.py:1095
- #, python-format
-@@ -303,8 +303,8 @@ msgstr "Совпадений: %s"
- #, python-format
- msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
+-#: ../yum/__init__.py:1891
++#: ../yum/__init__.py:2028
+ msgid "Could not perform checksum"
  msgstr ""
--"  Название и описание совпадают с %smostly%s, используйте «search all», "
--"чтобы искать везде."
-+"  Показаны %sв основном%s совпадения по названияю и описанию, для большего "
-+"используйте «search all»."
  
- #: ../cli.py:1106
- #, python-format
-@@ -857,7 +857,7 @@ msgstr "Не установлено"
- 
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Недоступно"
+-#: ../yum/__init__.py:1894
++#: ../yum/__init__.py:2031
+ msgid "Package does not match checksum"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1554,7 +1554,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../yum/__init__.py:1946
++#: ../yum/__init__.py:2094
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Проблема с репозиторием: %s"
+ msgid "package fails checksum but caching is enabled for %s"
+ msgstr ""
  
- #: ../yumcommands.py:80
+-#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
++#: ../yum/__init__.py:2097 ../yum/__init__.py:2127
  #, python-format
-@@ -1885,7 +1885,7 @@ msgstr "Исключено из репозитория   : "
+ msgid "using local copy of %s"
+ msgstr ""
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
+-#: ../yum/__init__.py:1991
+-#, python-format
+-msgid ""
+-"Insufficient space in download directory %s\n"
+-"    * free   %s\n"
+-"    * needed %s"
 -msgstr ""
-+msgstr "Файл репозитория:"
- 
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/sv.po b/po/sv.po
-index b9c109b..95b1345 100644
---- a/po/sv.po
-+++ b/po/sv.po
-@@ -2,7 +2,7 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Göran Uddeborg <goeran at uddeborg.se>, 2011
-+# Göran Uddeborg <goeran at uddeborg.se>, 2011.
- msgid ""
+-
+-#: ../yum/__init__.py:2052
++#: ../yum/__init__.py:2205
+ msgid "Header is not complete."
  msgstr ""
- "Project-Id-Version: Yum\n"
-diff --git a/po/uk.po b/po/uk.po
-index f5a658d..7751c57 100644
---- a/po/uk.po
-+++ b/po/uk.po
-@@ -2,14 +2,14 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Yuri Chornoivan <yurchor at ukr.net>, 2011
-+# Yuri Chornoivan <yurchor at ukr.net>, 2011.
+ 
+-#: ../yum/__init__.py:2089
++#: ../yum/__init__.py:2245
+ #, python-format
  msgid ""
+ "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-06-07 16:46+0000\n"
-+"Last-Translator: yurchor <yurchor at ukr.net>\n"
- "Language-Team: Ukrainian (http://www.transifex.net/projects/p/yum/team/uk/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -858,7 +858,7 @@ msgstr "Не встановлено"
- 
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "Недоступний"
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -1559,7 +1559,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../yum/__init__.py:2147
++#: ../yum/__init__.py:2305
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "Проблема зі сховищем: %s"
+ msgid "Public key for %s is not installed"
+ msgstr ""
  
- #: ../yumcommands.py:80
+-#: ../yum/__init__.py:2151
++#: ../yum/__init__.py:2309
  #, python-format
-@@ -1889,7 +1889,7 @@ msgstr "Виключені сховища: "
- 
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "Назва файла сховища: "
+ msgid "Problem opening package %s"
+ msgstr ""
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-diff --git a/po/zh_CN.po b/po/zh_CN.po
-index 9fe1a5c..41cde9b 100644
---- a/po/zh_CN.po
-+++ b/po/zh_CN.po
-@@ -2,15 +2,15 @@
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the PACKAGE package.
- # 
--# Mike Ma <zhtx10 at gmail.com>, 2011
--# lovenemesis <lovenemesis at gmail.com>, 2011
-+# Mike Ma <zhtx10 at gmail.com>, 2011.
-+# lovenemesis <lovenemesis at gmail.com>, 2011.
- msgid ""
+-#: ../yum/__init__.py:2159
++#: ../yum/__init__.py:2317
+ #, python-format
+ msgid "Public key for %s is not trusted"
  msgstr ""
- "Project-Id-Version: Yum\n"
- "Report-Msgid-Bugs-To: http://yum.baseurl.org/\n"
- "POT-Creation-Date: 2011-06-06 10:21-0400\n"
--"PO-Revision-Date: 2011-06-06 14:21+0000\n"
--"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
-+"PO-Revision-Date: 2011-07-17 05:22+0000\n"
-+"Last-Translator: ekd123 <zhtx10 at gmail.com>\n"
- "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/yum/team/zh_CN/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
-@@ -159,7 +159,7 @@ msgstr "下载软件包出错:\n"
  
- #: ../cli.py:525 ../yum/__init__.py:4967
- msgid "Running Transaction Check"
--msgstr ""
-+msgstr "运行事务检查"
+-#: ../yum/__init__.py:2163
++#: ../yum/__init__.py:2321
+ #, python-format
+ msgid "Package %s is not signed"
+ msgstr ""
  
- #: ../cli.py:534 ../yum/__init__.py:4976
- msgid "ERROR You need to update rpm to handle:"
-@@ -167,7 +167,7 @@ msgstr "错误:您需要更新 rpm 以处理:"
+-#: ../yum/__init__.py:2202
++#: ../yum/__init__.py:2363
+ #, python-format
+ msgid "Cannot remove %s"
+ msgstr ""
  
- #: ../cli.py:536 ../yum/__init__.py:4979
- msgid "ERROR with transaction check vs depsolve:"
--msgstr ""
-+msgstr "事务检查与依赖解决错误:"
+-#: ../yum/__init__.py:2206
++#: ../yum/__init__.py:2367
+ #, python-format
+ msgid "%s removed"
+ msgstr ""
  
- #: ../cli.py:542
- msgid "RPM needs to be updated"
-@@ -277,18 +277,18 @@ msgstr "未指定软件包"
- #: ../cli.py:1058
+-#: ../yum/__init__.py:2252
++#: ../yum/__init__.py:2426
  #, python-format
- msgid "N/S Matched: %s"
--msgstr ""
-+msgstr "N/S 匹配:%s"
+ msgid "Cannot remove %s file %s"
+ msgstr ""
  
- #: ../cli.py:1075
+-#: ../yum/__init__.py:2256
++#: ../yum/__init__.py:2430
  #, python-format
- msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
--msgstr ""
-+msgstr "  名称和简介匹配 %sonly%s,使用“search all”试试。"
+ msgid "%s file %s removed"
+ msgstr ""
  
- #: ../cli.py:1077
+-#: ../yum/__init__.py:2258
++#: ../yum/__init__.py:2432
  #, python-format
- msgid ""
- "  Full name and summary matches %sonly%s, use \"search all\" for everything."
+-msgid "%d %s files removed"
 -msgstr ""
-+msgstr "  全名和简介匹配 %sonly%s,使用“search all”试试。"
++msgid "%d %s file removed"
++msgid_plural "%d %s files removed"
++msgstr[0] ""
  
- #: ../cli.py:1095
- #, python-format
-@@ -298,7 +298,7 @@ msgstr "匹配:%s"
- #: ../cli.py:1102
+-#: ../yum/__init__.py:2327
++#: ../yum/__init__.py:2522
  #, python-format
- msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
--msgstr ""
-+msgstr "  名称和简介匹配 %smonstly%s,使用“search all”试试。"
+ msgid "More than one identical match in sack for %s"
+ msgstr ""
  
- #: ../cli.py:1106
+-#: ../yum/__init__.py:2333
++#: ../yum/__init__.py:2528
  #, python-format
-@@ -353,7 +353,7 @@ msgstr "清理插件"
- #: ../cli.py:1247
+ msgid "Nothing matches %s.%s %s:%s-%s from update"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2632
++#: ../yum/__init__.py:2892
+ msgid ""
+ "searchPackages() will go away in a future version of Yum."
+ "                      Use searchGenerator() instead. \n"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:2675
++#: ../yum/__init__.py:2948
  #, python-format
- msgid "Warning: No groups match: %s"
+-msgid "Searching %d packages"
 -msgstr ""
-+msgstr "警告:无组匹配:%s"
++msgid "Searching %d package"
++msgid_plural "Searching %d packages"
++msgstr[0] ""
  
- #: ../cli.py:1264
- msgid "Installed Groups:"
-@@ -361,7 +361,7 @@ msgstr "已安装的组:"
+-#: ../yum/__init__.py:2679
++#: ../yum/__init__.py:2952
+ #, python-format
+ msgid "searching package %s"
+ msgstr ""
  
- #: ../cli.py:1270
- msgid "Installed Language Groups:"
--msgstr ""
-+msgstr "安装了的语言组:"
+-#: ../yum/__init__.py:2691
++#: ../yum/__init__.py:2964
+ msgid "searching in file entries"
+ msgstr ""
  
- #: ../cli.py:1276
- msgid "Available Groups:"
-@@ -369,7 +369,7 @@ msgstr "有效的组:"
+-#: ../yum/__init__.py:2698
++#: ../yum/__init__.py:2971
+ msgid "searching in provides entries"
+ msgstr ""
  
- #: ../cli.py:1282
- msgid "Available Language Groups:"
--msgstr ""
-+msgstr "可用语言组:"
+-#: ../yum/__init__.py:2777
++#: ../yum/__init__.py:3056
+ msgid "No group data available for configured repositories"
+ msgstr ""
  
- #: ../cli.py:1285
- msgid "Done"
-@@ -447,7 +447,7 @@ msgstr "--color 需要参数:auto, always, never"
- #: ../cli.py:1596
+-#: ../yum/__init__.py:2808 ../yum/__init__.py:2827 ../yum/__init__.py:2858
+-#: ../yum/__init__.py:2864 ../yum/__init__.py:2953 ../yum/__init__.py:2957
+-#: ../yum/__init__.py:3339
++#: ../yum/__init__.py:3092 ../yum/__init__.py:3112 ../yum/__init__.py:3147
++#: ../yum/__init__.py:3153 ../yum/__init__.py:3246 ../yum/__init__.py:3250
++#: ../yum/__init__.py:3674
  #, python-format
- msgid "--installroot must be an absolute path: %s"
--msgstr ""
-+msgstr "-- 安装根必须是绝对路径:%s"
+ msgid "No Group named %s exists"
+ msgstr ""
  
- #: ../cli.py:1642
- msgid "show this help message and exit"
-@@ -738,7 +738,7 @@ msgstr " 描述:%s"
- #: ../output.py:788
+-#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
++#: ../yum/__init__.py:3124 ../yum/__init__.py:3266
  #, python-format
- msgid " Language: %s"
--msgstr ""
-+msgstr " 语言:%s"
+ msgid "package %s was not marked in group %s"
+ msgstr ""
  
- #: ../output.py:790
- msgid " Mandatory Packages:"
-@@ -845,7 +845,7 @@ msgstr "未安装"
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3176
+ #, python-format
+ msgid "Adding package %s from group %s"
+ msgstr ""
  
- #: ../output.py:1053
- msgid "Not available"
--msgstr ""
-+msgstr "不可用"
+-#: ../yum/__init__.py:2891
++#: ../yum/__init__.py:3180
+ #, python-format
+ msgid "No package named %s available to be installed"
+ msgstr ""
  
- #: ../output.py:1075 ../output.py:2024
- msgid "Package"
-@@ -995,11 +995,11 @@ msgstr "系统"
- #: ../output.py:1411
+-#: ../yum/__init__.py:2941
++#: ../yum/__init__.py:3230
  #, python-format
- msgid "Skipping merged transaction %d to %d, as it overlaps"
--msgstr ""
-+msgstr "跳过合并事务 %d 到 %d,因为它俩重叠"
+ msgid "Warning: Group %s does not have any packages."
+ msgstr ""
  
- #: ../output.py:1421 ../output.py:1592
- msgid "No transactions"
--msgstr ""
-+msgstr "没有事务"
+-#: ../yum/__init__.py:2943
++#: ../yum/__init__.py:3232
+ #, python-format
+ msgid "Group %s does have %u conditional packages, which may get installed."
+ msgstr ""
  
- #: ../output.py:1446 ../output.py:2013
- msgid "Bad transaction IDs, or package(s), given"
-@@ -1007,7 +1007,7 @@ msgstr "错误的事务 ID 或软件包"
+ #. This can happen due to excludes after .up has
+ #. happened.
+-#: ../yum/__init__.py:3002
++#: ../yum/__init__.py:3304
+ #, python-format
+ msgid "Package tuple %s could not be found in packagesack"
+ msgstr ""
  
- #: ../output.py:1484
- msgid "Command line"
--msgstr ""
-+msgstr "命令行"
+-#: ../yum/__init__.py:3022
++#: ../yum/__init__.py:3332
+ #, python-format
+ msgid "Package tuple %s could not be found in rpmdb"
+ msgstr ""
  
- #: ../output.py:1486 ../output.py:1908
- msgid "Login user"
-@@ -1077,22 +1077,22 @@ msgstr "启动 rpmdb     :"
- #: ../output.py:1749
+-#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
++#: ../yum/__init__.py:3395 ../yum/__init__.py:3457
  #, python-format
- msgid "(%u seconds)"
--msgstr ""
-+msgstr "(%u 秒)"
+ msgid "Invalid version flag from: %s"
+ msgstr ""
  
- #: ../output.py:1751
+-#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
++#: ../yum/__init__.py:3419 ../yum/__init__.py:3424
  #, python-format
- msgid "(%u minutes)"
--msgstr ""
-+msgstr "(%u 分钟)"
+ msgid "No Package found for %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3401
++#: ../yum/__init__.py:3758
+ msgid "Package Object was not a package object instance"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:3405
++#: ../yum/__init__.py:3762
+ msgid "Nothing specified to install"
+ msgstr ""
  
- #: ../output.py:1753
+-#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
++#: ../yum/__init__.py:3781 ../yum/__init__.py:4683
  #, python-format
- msgid "(%u hours)"
--msgstr ""
-+msgstr "(%u 小时)"
+ msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
  
- #: ../output.py:1755
+-#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
+-#: ../yum/__init__.py:4289
++#: ../yum/__init__.py:3787 ../yum/__init__.py:4151 ../yum/__init__.py:4353
++#: ../yum/__init__.py:4689
  #, python-format
- msgid "(%u days)"
--msgstr ""
-+msgstr "(%u 天)"
+ msgid "No Match for argument: %s"
+ msgstr ""
  
- #: ../output.py:1756
- msgid "End time       :"
-@@ -1117,7 +1117,7 @@ msgstr "已终止"
+-#: ../yum/__init__.py:3507
++#: ../yum/__init__.py:3864
+ #, python-format
+ msgid "Package %s installed and not available"
+ msgstr ""
  
- #: ../output.py:1773
- msgid "Failures:"
--msgstr ""
-+msgstr "失败:"
+-#: ../yum/__init__.py:3510
++#: ../yum/__init__.py:3867
+ msgid "No package(s) available to install"
+ msgstr ""
  
- #: ../output.py:1777
- msgid "Failure:"
-@@ -1246,7 +1246,7 @@ msgstr "安装"
+-#: ../yum/__init__.py:3522
++#: ../yum/__init__.py:3879
+ #, python-format
+ msgid "Package: %s  - already in transaction set"
+ msgstr ""
  
- #: ../output.py:2107
- msgid "an update"
--msgstr ""
-+msgstr "一个更新"
+-#: ../yum/__init__.py:3550
++#: ../yum/__init__.py:3907
+ #, python-format
+ msgid "Package %s is obsoleted by %s which is already installed"
+ msgstr ""
  
- #: ../output.py:2108
- msgid "erased"
-@@ -1258,11 +1258,11 @@ msgstr "已重新安装"
+-#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3912
+ #, python-format
+ msgid ""
+ "Package %s is obsoleted by %s, but obsoleting package does not provide for "
+ "requirements"
+ msgstr ""
  
- #: ../output.py:2110
- msgid "a downgrade"
--msgstr ""
-+msgstr "一个降级"
+-#: ../yum/__init__.py:3558
++#: ../yum/__init__.py:3915
+ #, python-format
+ msgid "Package %s is obsoleted by %s, trying to install %s instead"
+ msgstr ""
  
- #: ../output.py:2111
- msgid "obsoleting"
--msgstr ""
-+msgstr "舍弃"
+-#: ../yum/__init__.py:3566
++#: ../yum/__init__.py:3923
+ #, python-format
+ msgid "Package %s already installed and latest version"
+ msgstr ""
  
- #: ../output.py:2112
- msgid "updated"
-@@ -1275,7 +1275,7 @@ msgstr "取代"
- #: ../output.py:2117
+-#: ../yum/__init__.py:3580
++#: ../yum/__init__.py:3937
  #, python-format
- msgid "---> Package %s.%s %s:%s-%s will be %s"
--msgstr ""
-+msgstr "---> 软件包 %s.%s.%s.%s-%s 将被 %s"
+ msgid "Package matching %s already installed. Checking for update."
+ msgstr ""
  
- #: ../output.py:2124
- msgid "--> Running transaction check"
-@@ -1502,7 +1502,7 @@ msgstr "完毕!"
+ #. update everything (the easy case)
+-#: ../yum/__init__.py:3684
++#: ../yum/__init__.py:4060
+ msgid "Updating Everything"
+ msgstr ""
  
- #: ../yumcommands.py:42
- msgid " Mini usage:\n"
--msgstr ""
-+msgstr " 迷你用法:\n"
+-#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
+-#: ../yum/__init__.py:3915
++#: ../yum/__init__.py:4084 ../yum/__init__.py:4226 ../yum/__init__.py:4256
++#: ../yum/__init__.py:4292
+ #, python-format
+ msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yumcommands.py:52
- msgid "You need to be root to perform this command."
-@@ -1536,7 +1536,7 @@ msgstr ""
- #: ../yumcommands.py:74
+-#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
++#: ../yum/__init__.py:4129 ../yum/__init__.py:4349
  #, python-format
- msgid "Problem repository: %s"
--msgstr ""
-+msgstr "问题仓库:%s"
+ msgid "%s"
+ msgstr ""
  
- #: ../yumcommands.py:80
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4169
++#, python-format
++msgid "No package matched to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4215
  #, python-format
-@@ -1863,7 +1863,7 @@ msgstr "仓库除外:"
+ msgid "Package is already obsoleted: %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yumcommands.py:1022
- msgid "Repo-filename: "
--msgstr ""
-+msgstr "仓库文件名:"
+-#: ../yum/__init__.py:3874
++#: ../yum/__init__.py:4251
+ #, python-format
+ msgid "Not Updating Package that is obsoleted: %s"
+ msgstr ""
  
- #. Work out the first (id) and last (enabled/disalbed/count),
- #. then chop the middle (name)...
-@@ -1975,27 +1975,27 @@ msgstr "检查rpmdb里的问题"
+-#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
++#: ../yum/__init__.py:4260 ../yum/__init__.py:4296
+ #, python-format
+ msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
+ msgstr ""
  
- #: ../yumcommands.py:1514
- msgid "load a saved transaction from filename"
--msgstr ""
-+msgstr "从文件名中加载一个已存事务"
+-#: ../yum/__init__.py:3982
+-msgid "No package matched to remove"
++#: ../yum/__init__.py:4366
++#, python-format
++msgid "No package matched to remove: %s"
+ msgstr ""
  
- #: ../yumcommands.py:1518
- msgid "No saved transaction file specified."
--msgstr ""
-+msgstr "指定文件中没有已存事务。"
+-#: ../yum/__init__.py:3988
++#: ../yum/__init__.py:4372
+ #, python-format
+ msgid "Skipping the running kernel: %s"
+ msgstr ""
  
- #: ../yumcommands.py:1522
+-#: ../yum/__init__.py:3994
++#: ../yum/__init__.py:4378
  #, python-format
- msgid "loading transaction from %s"
--msgstr ""
-+msgstr "正在从 %s 中加载事务"
+ msgid "Removing %s from the transaction"
+ msgstr ""
  
- #: ../yumcommands.py:1528
+-#: ../yum/__init__.py:4029
++#: ../yum/__init__.py:4415
  #, python-format
- msgid "Transaction loaded from %s with %s members"
--msgstr ""
-+msgstr "事务从 %s 载入,还有 %s 成员。"
+ msgid "Cannot open: %s. Skipping."
+ msgstr ""
  
- #. This is mainly for PackageSackError from rpmdb.
- #: ../yummain.py:84
+-#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
++#: ../yum/__init__.py:4418 ../yum/__init__.py:4535 ../yum/__init__.py:4620
  #, python-format
- msgid " Yum checks failed: %s"
--msgstr ""
-+msgstr " Yum 检查失败:%s"
+ msgid "Examining %s: %s"
+ msgstr ""
  
- #: ../yummain.py:114
- msgid ""
-@@ -2004,7 +2004,7 @@ msgstr "另外一个程序锁定了 yum;等待它退出……"
+-#: ../yum/__init__.py:4036
++#: ../yum/__init__.py:4422
+ #, python-format
+ msgid "Cannot localinstall deltarpm: %s. Skipping."
+ msgstr ""
  
- #: ../yummain.py:120
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "不能创建锁文件,退出"
+-#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
++#: ../yum/__init__.py:4431 ../yum/__init__.py:4538 ../yum/__init__.py:4623
+ #, python-format
+ msgid ""
+ "Cannot add package %s to transaction. Not a compatible architecture: %s"
+ msgstr ""
  
- #. Depsolve stage
- #: ../yummain.py:167
-@@ -2014,7 +2014,7 @@ msgstr "解决依赖关系"
- #: ../yummain.py:230
+-#: ../yum/__init__.py:4051
++#: ../yum/__init__.py:4437
  #, python-format
- msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
--msgstr ""
-+msgstr "您的事务已保存,用 yum load-transaction %s  打开。"
+ msgid "Cannot install package %s. It is obsoleted by installed package %s"
+ msgstr ""
  
- #: ../yummain.py:288
+-#: ../yum/__init__.py:4059
++#: ../yum/__init__.py:4445
+ #, python-format
  msgid ""
-@@ -2104,12 +2104,12 @@ msgstr "提供 %s 的软件包使用的模式:%s"
- #: ../yum/depsolve.py:389 ../yum/depsolve.py:406
+ "Package %s not installed, cannot update it. Run yum install to install it "
+ "instead."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
++#: ../yum/__init__.py:4464 ../yum/__init__.py:4471
  #, python-format
- msgid "Trying to update %s to resolve dep"
--msgstr ""
-+msgstr "尝试升级 %s 来解决依赖"
+ msgid ""
+ "Package %s.%s not installed, cannot update it. Run yum install to install it"
+ " instead."
+ msgstr ""
  
- #: ../yum/depsolve.py:400 ../yum/depsolve.py:410
+-#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
++#: ../yum/__init__.py:4480 ../yum/__init__.py:4543 ../yum/__init__.py:4628
  #, python-format
- msgid "No update paths found for %s. Failure!"
--msgstr ""
-+msgstr "未为 %s 找到更新路径。失败!"
+ msgid "Excluding %s"
+ msgstr ""
  
- #: ../yum/depsolve.py:416
+-#: ../yum/__init__.py:4099
++#: ../yum/__init__.py:4485
  #, python-format
-@@ -2360,12 +2360,12 @@ msgstr "存在未完成的操作。您或许需要先运行 yum-complete-transac
+ msgid "Marking %s to be installed"
+ msgstr ""
  
- #: ../yum/__init__.py:983
- msgid "--> Finding unneeded leftover dependencies"
--msgstr ""
-+msgstr "--> 找到剩下的不需要的依赖"
+-#: ../yum/__init__.py:4105
++#: ../yum/__init__.py:4491
+ #, python-format
+ msgid "Marking %s as an update to %s"
+ msgstr ""
  
- #: ../yum/__init__.py:1041
+-#: ../yum/__init__.py:4112
++#: ../yum/__init__.py:4498
  #, python-format
- msgid "Protected multilib versions: %s != %s"
--msgstr ""
-+msgstr "保护多库版本:%s != %s"
+ msgid "%s: does not update installed package."
+ msgstr ""
  
- #: ../yum/__init__.py:1096
+-#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
++#: ../yum/__init__.py:4532 ../yum/__init__.py:4617
  #, python-format
-@@ -2613,12 +2613,12 @@ msgstr "找不到名为 %s 的软件包来安装"
- #: ../yum/__init__.py:2941
+ msgid "Cannot open file: %s. Skipping."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4177
++#: ../yum/__init__.py:4572
+ msgid "Problem in reinstall: no package matched to remove"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4203
++#: ../yum/__init__.py:4598
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "警告:%s 组不包含任何包。"
+ msgid "Problem in reinstall: no package %s matched to install"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4311
++#: ../yum/__init__.py:4711
+ msgid "No package(s) available to downgrade"
+ msgstr ""
  
- #: ../yum/__init__.py:2943
+-#: ../yum/__init__.py:4319
++#: ../yum/__init__.py:4719
  #, python-format
- msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
-+msgstr "组 %s 拥有 %u 有条件的包可能安装。"
+ msgid "Package %s is allowed multiple installs, skipping"
+ msgstr ""
  
- #. This can happen due to excludes after .up has
- #. happened.
-@@ -2635,7 +2635,7 @@ msgstr "rpmdb 中找不到软件包元组 %s"
- #: ../yum/__init__.py:3079 ../yum/__init__.py:3129
+-#: ../yum/__init__.py:4365
++#: ../yum/__init__.py:4765
  #, python-format
- msgid "Invalid version flag from: %s"
--msgstr ""
-+msgstr "来自 %s 的无效版本标志"
+ msgid "No Match for available package: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:3096 ../yum/__init__.py:3101
+-#: ../yum/__init__.py:4372
++#: ../yum/__init__.py:4772
  #, python-format
-@@ -2785,7 +2785,7 @@ msgstr "软件包 %s 没有安装,不能更新。运行 yum install 安装它
- msgid ""
- "Package %s.%s not installed, cannot update it. Run yum install to install it"
- " instead."
--msgstr ""
-+msgstr "软件包 %s.%s 未安装,不能更新它。替代方案是运行 yum install 安装。"
+ msgid "Only Upgrade available on package: %s"
+ msgstr ""
  
- #: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
+-#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
++#: ../yum/__init__.py:4874 ../yum/__init__.py:4919
  #, python-format
-@@ -2848,7 +2848,7 @@ msgstr "降级失败:%s"
- #: ../yum/__init__.py:4516
+ msgid "Failed to downgrade: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:4880 ../yum/__init__.py:4925
++#, python-format
++msgid "Failed to upgrade: %s"
++msgstr ""
++
++#: ../yum/__init__.py:4958
  #, python-format
  msgid "Retrieving key from %s"
--msgstr ""
-+msgstr "从 %s 检索密钥"
+ msgstr ""
  
- #: ../yum/__init__.py:4534
+-#: ../yum/__init__.py:4534
++#: ../yum/__init__.py:4976
  msgid "GPG key retrieval failed: "
-@@ -2859,11 +2859,11 @@ msgstr "获取 GPG 密钥失败:"
- #: ../yum/__init__.py:4557
+ msgstr ""
+ 
+ #. if we decide we want to check, even though the sig failed
+ #. here is where we would do that
+-#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4999
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
--msgstr ""
-+msgstr "密钥 %s 上的 GPG 密钥签名与 %s 仓库的 CA 密钥不匹配"
+ msgstr ""
  
- #: ../yum/__init__.py:4559
+-#: ../yum/__init__.py:4559
++#: ../yum/__init__.py:5001
  msgid "GPG key signature verified against CA Key(s)"
--msgstr ""
-+msgstr "GPG 密钥签名验证与 CA 密钥冲突"
+ msgstr ""
  
- #: ../yum/__init__.py:4567
+-#: ../yum/__init__.py:4567
++#: ../yum/__init__.py:5009
  #, python-format
-@@ -2883,6 +2883,10 @@ msgid ""
- " Package: %s (%s)\n"
+ msgid "Invalid GPG Key from %s: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4576
++#: ../yum/__init__.py:5018
+ #, python-format
+ msgid "GPG key parsing failed: key does not have value %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4592
++#: ../yum/__init__.py:5034
+ #, python-format
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2821,7 +2937,7 @@ msgid ""
  " From   : %s"
  msgstr ""
-+"导入 %s 键 0x%s:\n"
-+"  用户ID:%s\n"
-+"  软件包:%s(%s)\n"
-+"  来自  :%s"
  
- #: ../yum/__init__.py:4600
+-#: ../yum/__init__.py:4600
++#: ../yum/__init__.py:5042
  #, python-format
-@@ -2891,6 +2895,9 @@ msgid ""
- " Userid: \"%s\"\n"
+ msgid ""
+ "Importing %s key 0x%s:\n"
+@@ -2829,207 +2945,231 @@ msgid ""
  " From  : %s"
  msgstr ""
-+"导入 %s 键 0x%s:\n"
-+"  用户ID:“%s”\n"
-+"  来自  :%s"
  
- #: ../yum/__init__.py:4634
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5075
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already installed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4671
++#: ../yum/__init__.py:5114
  #, python-format
-@@ -2908,7 +2915,7 @@ msgstr "导入密钥成功"
+ msgid "Key import failed (code %d)"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
++#: ../yum/__init__.py:5115 ../yum/__init__.py:5201
+ msgid "Key imported successfully"
+ msgstr ""
  
- #: ../yum/__init__.py:4676
+-#: ../yum/__init__.py:4676
++#: ../yum/__init__.py:5119
  msgid "Didn't install any keys"
--msgstr ""
-+msgstr "没有安装任何键"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4680
++#: ../yum/__init__.py:5123
+ #, python-format
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
  
- #: ../yum/__init__.py:4680
+-#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5132
+ msgid "Import of key(s) didn't help, wrong key(s)?"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5156
  #, python-format
-@@ -2933,7 +2940,7 @@ msgstr "导入密钥失败"
- #: ../yum/__init__.py:4770
+ msgid "GPG key at %s (0x%s) is already imported"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4754
++#: ../yum/__init__.py:5200
+ msgid "Key import failed"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4770
++#: ../yum/__init__.py:5216
  #, python-format
  msgid "Didn't install any keys for repo %s"
--msgstr ""
-+msgstr "没有对 %s 仓库安装任何键"
+ msgstr ""
  
- #: ../yum/__init__.py:4774
+-#: ../yum/__init__.py:4774
++#: ../yum/__init__.py:5220
  #, python-format
-@@ -2968,56 +2975,56 @@ msgstr "不能置缓存目录:%s"
+ msgid ""
+ "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
+ "Check that the correct key URLs are configured for this repository."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4924
++#: ../yum/__init__.py:5370
+ msgid "Unable to find a suitable mirror."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4926
++#: ../yum/__init__.py:5372
+ msgid "Errors were encountered while downloading packages."
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4981
++#: ../yum/__init__.py:5427
+ #, python-format
+ msgid "Please report this error at %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4998
++#: ../yum/__init__.py:5444
+ msgid "Test Transaction Errors: "
+ msgstr ""
  
- #: ../yum/__init__.py:5148 ../yum/__init__.py:5150
+-#: ../yum/__init__.py:5098
++#: ../yum/__init__.py:5556
+ #, python-format
+ msgid "Could not set cachedir: %s"
+ msgstr ""
+ 
+-#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
++#: ../yum/__init__.py:5617 ../yum/__init__.py:5619
  msgid "Dependencies not solved. Will not save unresolved transaction."
--msgstr ""
-+msgstr "依赖没有解决。将不会保存未解决事务。"
+ msgstr ""
  
- #: ../yum/__init__.py:5179 ../yum/__init__.py:5181
+-#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
++#: ../yum/__init__.py:5648 ../yum/__init__.py:5650
  #, python-format
  msgid "Could not save transaction file %s: %s"
--msgstr ""
-+msgstr "不能保存事务文件 %s:%s"
+ msgstr ""
  
- #: ../yum/__init__.py:5195
+-#: ../yum/__init__.py:5195
++#: ../yum/__init__.py:5674
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
--msgstr ""
-+msgstr "不能访问或都去已存事务 %s:%s"
+ msgstr ""
  
- #: ../yum/__init__.py:5214
+-#: ../yum/__init__.py:5214
++#: ../yum/__init__.py:5703
  msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "RPM数据库版本与已存事务版本不匹配, "
+ msgstr ""
  
- #: ../yum/__init__.py:5216
+-#: ../yum/__init__.py:5216
++#: ../yum/__init__.py:5705
  msgid " ignoring, as requested."
--msgstr ""
-+msgstr " 忽略,作为请求。"
+ msgstr ""
  
- #: ../yum/__init__.py:5219 ../yum/__init__.py:5354
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
++#: ../yum/__init__.py:5708 ../yum/__init__.py:5843
  msgid " aborting."
--msgstr ""
-+msgstr " 终止。"
+ msgstr ""
  
- #: ../yum/__init__.py:5228
+-#: ../yum/__init__.py:5228
++#: ../yum/__init__.py:5717
  msgid "cannot find tsflags or tsflags not integer."
--msgstr ""
-+msgstr "不能找到 tsflags 或 tsflags 非整数。"
+ msgstr ""
  
- #: ../yum/__init__.py:5267
+-#: ../yum/__init__.py:5267
++#: ../yum/__init__.py:5756
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
--msgstr ""
-+msgstr "在未知当前状态找到 txmbr:%s"
+ msgstr ""
  
- #: ../yum/__init__.py:5271
+-#: ../yum/__init__.py:5271
++#: ../yum/__init__.py:5760
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
--msgstr ""
-+msgstr "不能找到 txmbr:在 %s 状态中 %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5307 ../yum/__init__.py:5324
+-#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
++#: ../yum/__init__.py:5796 ../yum/__init__.py:5813
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
--msgstr ""
-+msgstr "不能找到 txmbr:来自原地 %s 的 %s"
+ msgstr ""
  
- #: ../yum/__init__.py:5349
+-#: ../yum/__init__.py:5349
++#: ../yum/__init__.py:5838
  msgid "Transaction members, relations are missing or ts has been modified,"
--msgstr ""
-+msgstr "事务成员、关系缺失或 ts 已被修改,"
+ msgstr ""
  
- #: ../yum/__init__.py:5351
+-#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5840
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
-+msgstr " 忽略,作为请求。您必须解决依赖!"
+ msgstr ""
  
++#. Debugging output
++#: ../yum/__init__.py:5915 ../yum/__init__.py:5934
++#, python-format
++msgid "%s has been visited already and cannot be removed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5918
++#, python-format
++msgid "Examining revdeps of %s"
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5939
++#, python-format
++msgid "%s has revdep %s which was user-installed."
++msgstr ""
++
++#. Debugging output
++#: ../yum/__init__.py:5953
++#, python-format
++msgid "%s has no user-installed revdeps."
++msgstr ""
++
  #. Mostly copied from YumOutput._outKeyValFill()
- #: ../yum/plugins.py:209
+-#: ../yum/plugins.py:209
++#: ../yum/plugins.py:212
+ msgid "Loaded plugins: "
+ msgstr ""
+ 
+-#: ../yum/plugins.py:223 ../yum/plugins.py:229
++#: ../yum/plugins.py:226 ../yum/plugins.py:232
+ #, python-format
+ msgid "No plugin match for: %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:259
++#: ../yum/plugins.py:262
+ #, python-format
+ msgid "Not loading \"%s\" plugin, as it is disabled"
+ msgstr ""
+ 
+ #. Give full backtrace:
+-#: ../yum/plugins.py:271
++#: ../yum/plugins.py:274
+ #, python-format
+ msgid "Plugin \"%s\" can't be imported"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:278
++#: ../yum/plugins.py:281
+ #, python-format
+ msgid "Plugin \"%s\" doesn't specify required API version"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:283
++#: ../yum/plugins.py:286
+ #, python-format
+ msgid "Plugin \"%s\" requires API %s. Supported API is %s."
+ msgstr ""
+ 
+-#: ../yum/plugins.py:316
++#: ../yum/plugins.py:319
+ #, python-format
+ msgid "Loading \"%s\" plugin"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:323
++#: ../yum/plugins.py:326
+ #, python-format
+ msgid "Two or more plugins with the name \"%s\" exist in the plugin search path"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:343
++#: ../yum/plugins.py:346
+ #, python-format
+ msgid "Configuration file %s not found"
+ msgstr ""
+ 
+ #. for
+ #. Configuration files for the plugin not found
+-#: ../yum/plugins.py:346
++#: ../yum/plugins.py:349
+ #, python-format
+ msgid "Unable to find configuration file for plugin %s"
+ msgstr ""
+ 
+-#: ../yum/plugins.py:508
++#: ../yum/plugins.py:553
+ msgid "registration of commands not supported"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:148
++#: ../yum/rpmsack.py:159
+ msgid "has missing requires of"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:151
++#: ../yum/rpmsack.py:162
+ msgid "has installed conflicts"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:160
++#: ../yum/rpmsack.py:171
+ #, python-format
+ msgid "%s is a duplicate with %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:168
++#: ../yum/rpmsack.py:179
+ #, python-format
+ msgid "%s is obsoleted by %s"
+ msgstr ""
+ 
+-#: ../yum/rpmsack.py:176
++#: ../yum/rpmsack.py:187
+ #, python-format
+ msgid "%s provides %s but it cannot be found"
+ msgstr ""
+@@ -3038,6 +3178,14 @@ msgstr ""
+ msgid "Repackaging"
+ msgstr ""
+ 
++#: ../yum/yumRepo.py:806
++#, python-format
++msgid ""
++"Insufficient space in download directory %s\n"
++"    * free   %s\n"
++"    * needed %s"
++msgstr ""
++
+ #: ../rpmUtils/oldUtils.py:33
+ #, python-format
+ msgid "Header cannot be opened or does not match %s, %s."
 diff --git a/rpmUtils/arch.py b/rpmUtils/arch.py
 index 6082005..ad7bbb1 100644
 --- a/rpmUtils/arch.py
@@ -10659,7 +145293,7 @@ index abd203f..b78a9f6 100644
  - 3.4.1
  - umask bug fix.
 diff --git a/yum/__init__.py b/yum/__init__.py
-index 99039e0..53043de 100644
+index 99039e0..3ede145 100644
 --- a/yum/__init__.py
 +++ b/yum/__init__.py
 @@ -82,7 +82,7 @@ from packages import YumAvailablePackage, YumLocalPackage, YumInstalledPackage
@@ -11067,7 +145701,31 @@ index 99039e0..53043de 100644
          self.plugins.run('pretrans')
  
          #  We may want to put this other places, eventually, but for now it's
-@@ -1571,9 +1658,14 @@ class YumBase(depsolve.Depsolve):
+@@ -1516,10 +1603,23 @@ class YumBase(depsolve.Depsolve):
+                 pass
+         self._ts_save_file = None
+         
++        if self.conf.reset_nice:
++            onice = os.nice(0)
++            if onice:
++                try:
++                    os.nice(-onice)
++                except:
++                    onice = 0
++
+         errors = self.ts.run(cb.callback, '')
+         # ts.run() exit codes are, hmm, "creative": None means all ok, empty 
+         # list means some errors happened in the transaction and non-empty 
+         # list that there were errors preventing the ts from starting...
++        if self.conf.reset_nice:
++            try:
++                os.nice(onice)
++            except:
++                pass
+         
+         # make resultobject - just a plain yumgenericholder object
+         resultobject = misc.GenericHolder()
+@@ -1571,9 +1671,14 @@ class YumBase(depsolve.Depsolve):
          return resultobject
  
      def verifyTransaction(self, resultobject=None):
@@ -11085,7 +145743,7 @@ index 99039e0..53043de 100644
          # check to see that the rpmdb and the tsInfo roughly matches
          # push package object metadata outside of rpmdb into yumdb
          # delete old yumdb metadata entries
-@@ -1645,6 +1737,9 @@ class YumBase(depsolve.Depsolve):
+@@ -1645,6 +1750,9 @@ class YumBase(depsolve.Depsolve):
                  elif loginuid is not None:
                      po.yumdb_info.installed_by = str(loginuid)
  
@@ -11095,7 +145753,7 @@ index 99039e0..53043de 100644
          # Remove old ones after installing new ones, so we can copy values.
          for txmbr in self.tsInfo:
              if txmbr.output_state in TS_INSTALL_STATES:
-@@ -1680,10 +1775,11 @@ class YumBase(depsolve.Depsolve):
+@@ -1680,10 +1788,11 @@ class YumBase(depsolve.Depsolve):
          self.verbose_logger.debug('VerifyTransaction time: %0.3f' % (time.time() - vt_st))
  
      def costExcludePackages(self):
@@ -11111,7 +145769,7 @@ index 99039e0..53043de 100644
          # if all the repo.costs are equal then don't bother running things
          costs = {}
          for r in self.repos.listEnabled():
-@@ -1705,10 +1801,12 @@ class YumBase(depsolve.Depsolve):
+@@ -1705,10 +1814,12 @@ class YumBase(depsolve.Depsolve):
              done = True
  
      def excludePackages(self, repo=None):
@@ -11127,7 +145785,7 @@ index 99039e0..53043de 100644
          if "all" in self.conf.disable_excludes:
              return
          
-@@ -1735,9 +1833,11 @@ class YumBase(depsolve.Depsolve):
+@@ -1735,9 +1846,11 @@ class YumBase(depsolve.Depsolve):
              self.pkgSack.addPackageExcluder(repoid, exid,'exclude.match', match)
  
      def includePackages(self, repo):
@@ -11142,7 +145800,7 @@ index 99039e0..53043de 100644
          includelist = repo.getIncludePkgList()
          
          if len(includelist) == 0:
-@@ -1757,8 +1857,11 @@ class YumBase(depsolve.Depsolve):
+@@ -1757,8 +1870,11 @@ class YumBase(depsolve.Depsolve):
          self.pkgSack.addPackageExcluder(repo.id, exid, 'exclude.marked')
          
      def doLock(self, lockfile = YUM_PID_FILE):
@@ -11156,7 +145814,7 @@ index 99039e0..53043de 100644
          if self.conf.uid != 0:
              #  If we are a user, assume we are using the root cache ... so don't
              # bother locking.
-@@ -1804,8 +1907,12 @@ class YumBase(depsolve.Depsolve):
+@@ -1804,8 +1920,12 @@ class YumBase(depsolve.Depsolve):
          self._lockfile = lockfile
      
      def doUnlock(self, lockfile=None):
@@ -11171,7 +145829,7 @@ index 99039e0..53043de 100644
          # if we're not root then we don't lock - just return nicely
          #  Note that we can get here from __del__, so if we haven't created
          # YumBase.conf we don't want to do so here as creating stuff inside
-@@ -1836,25 +1943,36 @@ class YumBase(depsolve.Depsolve):
+@@ -1836,25 +1956,36 @@ class YumBase(depsolve.Depsolve):
              if not os.path.exists(lockdir):
                  os.makedirs(lockdir, mode=0755)
              fd = os.open(filename, os.O_EXCL|os.O_CREAT|os.O_WRONLY, mode)    
@@ -11216,7 +145874,7 @@ index 99039e0..53043de 100644
          failed = False
  
          if type(fo) is types.InstanceType:
-@@ -1894,9 +2012,16 @@ class YumBase(depsolve.Depsolve):
+@@ -1894,9 +2025,16 @@ class YumBase(depsolve.Depsolve):
          
          
      def verifyChecksum(self, fo, checksumType, csum):
@@ -11236,7 +145894,7 @@ index 99039e0..53043de 100644
          try:
              filesum = misc.checksum(checksumType, fo)
          except Errors.MiscError, e:
-@@ -1908,6 +2033,17 @@ class YumBase(depsolve.Depsolve):
+@@ -1908,6 +2046,17 @@ class YumBase(depsolve.Depsolve):
          return 0
  
      def downloadPkgs(self, pkglist, callback=None, callback_total=None):
@@ -11254,7 +145912,7 @@ index 99039e0..53043de 100644
          def mediasort(apo, bpo):
              # FIXME: we should probably also use the mediaid; else we
              # could conceivably ping-pong between different disc1's
-@@ -1998,16 +2134,6 @@ class YumBase(depsolve.Depsolve):
+@@ -1998,16 +2147,6 @@ class YumBase(depsolve.Depsolve):
                      os.unlink(local)
  
              checkfunc = (self.verifyPkg, (po, 1), {})
@@ -11271,7 +145929,7 @@ index 99039e0..53043de 100644
              try:
                  if i == 1 and not local_size and remote_size == po.size:
                      text = os.path.basename(po.relativepath)
-@@ -2032,7 +2158,7 @@ class YumBase(depsolve.Depsolve):
+@@ -2032,7 +2171,7 @@ class YumBase(depsolve.Depsolve):
                  done_repos.add(po.repoid)
  
              except Errors.RepoError, e:
@@ -11280,7 +145938,7 @@ index 99039e0..53043de 100644
              else:
                  po.localpath = mylocal
                  if po in errors:
-@@ -2052,7 +2178,22 @@ class YumBase(depsolve.Depsolve):
+@@ -2052,7 +2191,22 @@ class YumBase(depsolve.Depsolve):
          return errors
  
      def verifyHeader(self, fo, po, raiseError):
@@ -11304,7 +145962,7 @@ index 99039e0..53043de 100644
          if type(fo) is types.InstanceType:
              fo = fo.filename
              
-@@ -2076,9 +2217,12 @@ class YumBase(depsolve.Depsolve):
+@@ -2076,9 +2230,12 @@ class YumBase(depsolve.Depsolve):
          return 1
          
      def downloadHeader(self, po):
@@ -11319,7 +145977,7 @@ index 99039e0..53043de 100644
          if hasattr(po, 'pkgtype') and po.pkgtype == 'local':
              return
                  
-@@ -2122,15 +2266,17 @@ class YumBase(depsolve.Depsolve):
+@@ -2122,15 +2279,17 @@ class YumBase(depsolve.Depsolve):
              return
  
      def sigCheckPkg(self, po):
@@ -11345,7 +146003,7 @@ index 99039e0..53043de 100644
          if self._override_sigchecks:
              check = False
              hasgpgkey = 0
-@@ -2181,6 +2327,9 @@ class YumBase(depsolve.Depsolve):
+@@ -2181,6 +2340,9 @@ class YumBase(depsolve.Depsolve):
          return result, msg
  
      def cleanUsedHeadersPackages(self):
@@ -11355,7 +146013,7 @@ index 99039e0..53043de 100644
          filelist = []
          for txmbr in self.tsInfo:
              if txmbr.po.state not in TS_INSTALL_STATES:
-@@ -2218,27 +2367,40 @@ class YumBase(depsolve.Depsolve):
+@@ -2218,27 +2380,40 @@ class YumBase(depsolve.Depsolve):
                      _('%s removed'), fn)
          
      def cleanHeaders(self):
@@ -11396,7 +146054,7 @@ index 99039e0..53043de 100644
          cachedir = self.conf.persistdir + "/rpmdb-indexes/"
          if not os.path.exists(cachedir):
              filelist = []
-@@ -2272,8 +2434,29 @@ class YumBase(depsolve.Depsolve):
+@@ -2272,8 +2447,29 @@ class YumBase(depsolve.Depsolve):
  
      def doPackageLists(self, pkgnarrow='all', patterns=None, showdups=None,
                         ignore_case=False):
@@ -11428,7 +146086,7 @@ index 99039e0..53043de 100644
          if showdups is None:
              showdups = self.conf.showdupesfromrepos
          ygh = misc.GenericHolder(iter=pkgnarrow)
-@@ -2461,14 +2644,13 @@ class YumBase(depsolve.Depsolve):
+@@ -2461,14 +2657,13 @@ class YumBase(depsolve.Depsolve):
  
          
      def findDeps(self, pkgs):
@@ -11448,7 +146106,7 @@ index 99039e0..53043de 100644
          results = {}
  
          for pkg in pkgs:
-@@ -2495,10 +2677,22 @@ class YumBase(depsolve.Depsolve):
+@@ -2495,10 +2690,22 @@ class YumBase(depsolve.Depsolve):
      # pre 3.2.10 API used to always showdups, so that's the default atm.
      def searchGenerator(self, fields, criteria, showdups=True, keys=False, 
                                               searchtags=True, searchrpmdb=True):
@@ -11475,7 +146133,7 @@ index 99039e0..53043de 100644
          sql_fields = []
          for f in fields:
              sql_fields.append(RPM_TO_SQLITE.get(f, f))
-@@ -2661,6 +2855,14 @@ class YumBase(depsolve.Depsolve):
+@@ -2661,6 +2868,14 @@ class YumBase(depsolve.Depsolve):
                      yield (po, vs)
  
      def searchPackageTags(self, criteria):
@@ -11490,7 +146148,7 @@ index 99039e0..53043de 100644
          results = {} # name = [(criteria, taglist)]
          for c in criteria:
              c = c.lower()
-@@ -2677,11 +2879,16 @@ class YumBase(depsolve.Depsolve):
+@@ -2677,11 +2892,16 @@ class YumBase(depsolve.Depsolve):
          return results
          
      def searchPackages(self, fields, criteria, callback=None):
@@ -11512,7 +146170,7 @@ index 99039e0..53043de 100644
          warnings.warn(_('searchPackages() will go away in a future version of Yum.\
                        Use searchGenerator() instead. \n'),
                  Errors.YumFutureDeprecationWarning, stacklevel=2)           
-@@ -2700,6 +2907,19 @@ class YumBase(depsolve.Depsolve):
+@@ -2700,6 +2920,19 @@ class YumBase(depsolve.Depsolve):
      
      def searchPackageProvides(self, args, callback=None,
                                callback_has_matchfor=False):
@@ -11532,7 +146190,7 @@ index 99039e0..53043de 100644
          def _arg_data(arg):
              if not misc.re_glob(arg):
                  isglob = False
-@@ -2818,11 +3038,17 @@ class YumBase(depsolve.Depsolve):
+@@ -2818,11 +3051,17 @@ class YumBase(depsolve.Depsolve):
          return matches
  
      def doGroupLists(self, uservisible=0, patterns=None, ignore_case=True):
@@ -11555,7 +146213,7 @@ index 99039e0..53043de 100644
          installed = []
          available = []
  
-@@ -2852,8 +3078,13 @@ class YumBase(depsolve.Depsolve):
+@@ -2852,8 +3091,13 @@ class YumBase(depsolve.Depsolve):
      
      
      def groupRemove(self, grpid):
@@ -11571,7 +146229,7 @@ index 99039e0..53043de 100644
          txmbrs_used = []
          
          thesegroups = self.comps.return_groups(grpid)
-@@ -2872,9 +3103,10 @@ class YumBase(depsolve.Depsolve):
+@@ -2872,9 +3116,10 @@ class YumBase(depsolve.Depsolve):
          return txmbrs_used
  
      def groupUnremove(self, grpid):
@@ -11584,7 +146242,7 @@ index 99039e0..53043de 100644
          thesegroups = self.comps.return_groups(grpid)
          if not thesegroups:
              raise Errors.GroupsError, _("No Group named %s exists") % to_unicode(grpid)
-@@ -2899,12 +3131,16 @@ class YumBase(depsolve.Depsolve):
+@@ -2899,12 +3144,16 @@ class YumBase(depsolve.Depsolve):
          
          
      def selectGroup(self, grpid, group_package_types=[], enable_group_conditionals=None):
@@ -11607,7 +146265,7 @@ index 99039e0..53043de 100644
          """
  
          if not self.comps.has_group(grpid):
-@@ -2939,7 +3175,7 @@ class YumBase(depsolve.Depsolve):
+@@ -2939,7 +3188,7 @@ class YumBase(depsolve.Depsolve):
                  self.verbose_logger.log(logginglevels.DEBUG_2,
                      _('Adding package %s from group %s'), pkg, thisgroup.groupid)
                  try:
@@ -11616,7 +146274,7 @@ index 99039e0..53043de 100644
                  except Errors.InstallError, e:
                      self.verbose_logger.debug(_('No package named %s available to be installed'),
                          pkg)
-@@ -2997,10 +3233,14 @@ class YumBase(depsolve.Depsolve):
+@@ -2997,10 +3246,14 @@ class YumBase(depsolve.Depsolve):
          return txmbrs_used
  
      def deselectGroup(self, grpid, force=False):
@@ -11635,7 +146293,7 @@ index 99039e0..53043de 100644
          
          if not self.comps.has_group(grpid):
              raise Errors.GroupsError, _("No Group named %s exists") % to_unicode(grpid)
-@@ -3035,12 +3275,21 @@ class YumBase(depsolve.Depsolve):
+@@ -3035,12 +3288,21 @@ class YumBase(depsolve.Depsolve):
                              self.tsInfo.remove(pkg.pkgtup)
          
      def getPackageObject(self, pkgtup, allow_missing=False):
@@ -11663,7 +146321,7 @@ index 99039e0..53043de 100644
          # look it up in the self.localPackages first:
          for po in self.localPackages:
              if po.pkgtup == pkgtup:
-@@ -3049,7 +3298,7 @@ class YumBase(depsolve.Depsolve):
+@@ -3049,7 +3311,7 @@ class YumBase(depsolve.Depsolve):
          pkgs = self.pkgSack.searchPkgTuple(pkgtup)
  
          if len(pkgs) == 0:
@@ -11672,7 +146330,7 @@ index 99039e0..53043de 100644
              if allow_missing: #  This can happen due to excludes after .up has
                  return None   # happened.
              raise Errors.DepError, _('Package tuple %s could not be found in packagesack') % str(pkgtup)
-@@ -3065,13 +3314,21 @@ class YumBase(depsolve.Depsolve):
+@@ -3065,13 +3327,21 @@ class YumBase(depsolve.Depsolve):
          return result
  
      def getInstalledPackageObject(self, pkgtup):
@@ -11699,7 +146357,7 @@ index 99039e0..53043de 100644
              raise Errors.RpmDBError, _('Package tuple %s could not be found in rpmdb') % str(pkgtup)
  
          # Dito. FIXME from getPackageObject() for len() > 1 ... :)
-@@ -3079,9 +3336,11 @@ class YumBase(depsolve.Depsolve):
+@@ -3079,9 +3349,11 @@ class YumBase(depsolve.Depsolve):
          return po
          
      def gpgKeyCheck(self):
@@ -11713,7 +146371,7 @@ index 99039e0..53043de 100644
          gpgkeyschecked = self.conf.cachedir + '/.gpgkeyschecked.yum'
          if os.path.exists(gpgkeyschecked):
              return 1
-@@ -3106,9 +3365,13 @@ class YumBase(depsolve.Depsolve):
+@@ -3106,9 +3378,13 @@ class YumBase(depsolve.Depsolve):
              return 1
  
      def returnPackagesByDep(self, depstring):
@@ -11729,7 +146387,7 @@ index 99039e0..53043de 100644
          if not depstring:
              return []
  
-@@ -3135,9 +3398,16 @@ class YumBase(depsolve.Depsolve):
+@@ -3135,9 +3411,16 @@ class YumBase(depsolve.Depsolve):
          return self.pkgSack.getProvides(depname, depflags, depver).keys()
  
      def returnPackageByDep(self, depstring):
@@ -11749,7 +146407,7 @@ index 99039e0..53043de 100644
          # we get all sorts of randomness here
          errstring = depstring
          if type(depstring) not in types.StringTypes:
-@@ -3156,9 +3426,14 @@ class YumBase(depsolve.Depsolve):
+@@ -3156,9 +3439,14 @@ class YumBase(depsolve.Depsolve):
          return result
  
      def returnInstalledPackagesByDep(self, depstring):
@@ -11767,7 +146425,7 @@ index 99039e0..53043de 100644
          if not depstring:
              return []
  
-@@ -3184,6 +3459,34 @@ class YumBase(depsolve.Depsolve):
+@@ -3184,6 +3472,34 @@ class YumBase(depsolve.Depsolve):
  
          return self.rpmdb.getProvides(depname, depflags, depver).keys()
  
@@ -11802,7 +146460,7 @@ index 99039e0..53043de 100644
      def _bestPackageFromList(self, pkglist):
          """take list of package objects and return the best package object.
             If the list is empty, return None. 
-@@ -3202,10 +3505,17 @@ class YumBase(depsolve.Depsolve):
+@@ -3202,10 +3518,17 @@ class YumBase(depsolve.Depsolve):
          return bestlist[0][0]
  
      def bestPackagesFromList(self, pkglist, arch=None, single_name=False):
@@ -11824,7 +146482,7 @@ index 99039e0..53043de 100644
          returnlist = []
          compatArchList = self.arch.get_arch_list(arch)
          multiLib = []
-@@ -3438,13 +3748,35 @@ class YumBase(depsolve.Depsolve):
+@@ -3438,13 +3761,35 @@ class YumBase(depsolve.Depsolve):
                  self.tsInfo.probFilterFlags.append(flag)
  
      def install(self, po=None, **kwargs):
@@ -11866,7 +146524,7 @@ index 99039e0..53043de 100644
          pkgs = []
          was_pattern = False
          if po:
-@@ -3600,23 +3932,23 @@ class YumBase(depsolve.Depsolve):
+@@ -3600,23 +3945,23 @@ class YumBase(depsolve.Depsolve):
                      already_obs = pkgs[0]
  
                  if already_obs:
@@ -11897,7 +146555,7 @@ index 99039e0..53043de 100644
                      continue
  
              # make sure we don't have a name.arch of this already installed
-@@ -3630,7 +3962,7 @@ class YumBase(depsolve.Depsolve):
+@@ -3630,7 +3975,7 @@ class YumBase(depsolve.Depsolve):
                          found = True
                          break
                  if not found:
@@ -11906,7 +146564,7 @@ index 99039e0..53043de 100644
                      txmbrs = self.update(po=po)
                      tx_return.extend(txmbrs)
                      continue
-@@ -3719,14 +4051,33 @@ class YumBase(depsolve.Depsolve):
+@@ -3719,14 +4064,33 @@ class YumBase(depsolve.Depsolve):
          return txmbr
  
      def update(self, po=None, requiringPo=None, update_to=False, **kwargs):
@@ -11947,7 +146605,7 @@ index 99039e0..53043de 100644
          # check for args - if no po nor kwargs, do them all
          # if po, do it, ignore all else
          # if no po do kwargs
-@@ -3985,11 +4336,18 @@ class YumBase(depsolve.Depsolve):
+@@ -3985,11 +4349,18 @@ class YumBase(depsolve.Depsolve):
          return tx_return
          
      def remove(self, po=None, **kwargs):
@@ -11971,7 +146629,7 @@ index 99039e0..53043de 100644
          if not po and not kwargs:
              raise Errors.RemoveError, 'Nothing specified to remove'
          
-@@ -4055,17 +4413,19 @@ class YumBase(depsolve.Depsolve):
+@@ -4055,17 +4426,19 @@ class YumBase(depsolve.Depsolve):
          return tx_return
  
      def installLocal(self, pkg, po=None, updateonly=False):
@@ -12001,7 +146659,7 @@ index 99039e0..53043de 100644
          # read in the package into a YumLocalPackage Object
          # append it to self.localPackages
          # check if it can be installed or updated based on nevra versus rpmdb
-@@ -4183,16 +4543,15 @@ class YumBase(depsolve.Depsolve):
+@@ -4183,16 +4556,15 @@ class YumBase(depsolve.Depsolve):
          return tx_return
  
      def reinstallLocal(self, pkg, po=None):
@@ -12026,7 +146684,7 @@ index 99039e0..53043de 100644
          if not po:
              try:
                  po = YumUrlPackage(self, ts=self.rpmdb.readOnlyTS(), url=pkg,
-@@ -4215,9 +4574,19 @@ class YumBase(depsolve.Depsolve):
+@@ -4215,9 +4587,19 @@ class YumBase(depsolve.Depsolve):
          return self.reinstall(po=po)
  
      def reinstall(self, po=None, **kwargs):
@@ -12049,7 +146707,7 @@ index 99039e0..53043de 100644
          self._add_prob_flags(rpm.RPMPROB_FILTER_REPLACEPKG,
                               rpm.RPMPROB_FILTER_REPLACENEWFILES,
                               rpm.RPMPROB_FILTER_REPLACEOLDFILES)
-@@ -4259,16 +4628,15 @@ class YumBase(depsolve.Depsolve):
+@@ -4259,16 +4641,15 @@ class YumBase(depsolve.Depsolve):
          return tx_mbrs
          
      def downgradeLocal(self, pkg, po=None):
@@ -12074,7 +146732,7 @@ index 99039e0..53043de 100644
          if not po:
              try:
                  po = YumUrlPackage(self, ts=self.rpmdb.readOnlyTS(), url=pkg,
-@@ -4309,13 +4677,19 @@ class YumBase(depsolve.Depsolve):
+@@ -4309,13 +4690,19 @@ class YumBase(depsolve.Depsolve):
          return False
          
      def downgrade(self, po=None, **kwargs):
@@ -12101,7 +146759,7 @@ index 99039e0..53043de 100644
          if not po and not kwargs:
              raise Errors.DowngradeError, 'Nothing specified to downgrade'
  
-@@ -4500,12 +4874,24 @@ class YumBase(depsolve.Depsolve):
+@@ -4500,12 +4887,24 @@ class YumBase(depsolve.Depsolve):
  
          return returndict
  
@@ -12129,7 +146787,7 @@ index 99039e0..53043de 100644
          old_conf_obs = self.conf.obsoletes
          self.conf.obsoletes = False
          done = False
-@@ -4515,19 +4901,46 @@ class YumBase(depsolve.Depsolve):
+@@ -4515,19 +4914,46 @@ class YumBase(depsolve.Depsolve):
                      done = True
          for pkg in transaction.trans_data:
              if pkg.state == 'Downgrade':
@@ -12176,7 +146834,7 @@ index 99039e0..53043de 100644
                  if self.install(pkgtup=pkg.pkgtup):
                      done = True
          for pkg in transaction.trans_data:
-@@ -4538,8 +4951,14 @@ class YumBase(depsolve.Depsolve):
+@@ -4538,8 +4964,14 @@ class YumBase(depsolve.Depsolve):
          return done
  
      def history_undo(self, transaction):
@@ -12193,7 +146851,7 @@ index 99039e0..53043de 100644
          # NOTE: This is somewhat basic atm. ... for instance we don't check
          #       that we are going from the old new version. However it's still
          #       better than the RHN rollback code, and people pay for that :).
-@@ -4674,34 +5093,37 @@ class YumBase(depsolve.Depsolve):
+@@ -4674,34 +5106,37 @@ class YumBase(depsolve.Depsolve):
              if pkgs:
                  pkgs = sorted(pkgs)[-1]
                  msg = (_('Importing %s key 0x%s:\n'
@@ -12249,7 +146907,7 @@ index 99039e0..53043de 100644
          """
          repo = self.repos.getRepo(po.repoid)
          keyurls = repo.gpgkey
-@@ -4725,7 +5147,9 @@ class YumBase(depsolve.Depsolve):
+@@ -4725,7 +5160,9 @@ class YumBase(depsolve.Depsolve):
                      # Try installing/updating GPG key
                      self._getKeyImportMessage(info, keyurl)
                      rc = False
@@ -12260,7 +146918,7 @@ index 99039e0..53043de 100644
                          rc = True
                          
                      # grab the .sig/.asc for the keyurl, if it exists
-@@ -4819,8 +5243,11 @@ class YumBase(depsolve.Depsolve):
+@@ -4819,8 +5256,11 @@ class YumBase(depsolve.Depsolve):
                  if not key_installed:
                      self._getKeyImportMessage(info, keyurl, keytype)
                      rc = False
@@ -12273,7 +146931,7 @@ index 99039e0..53043de 100644
                      elif callback:
                          rc = callback({"repo": repo, "userid": info['userid'],
                                          "hexkeyid": info['hexkeyid'], "keyurl": keyurl,
-@@ -4861,26 +5288,23 @@ class YumBase(depsolve.Depsolve):
+@@ -4861,26 +5301,23 @@ class YumBase(depsolve.Depsolve):
                    'this repository.') % (repo.name)
  
      def getKeyForRepo(self, repo, callback=None):
@@ -12312,7 +146970,7 @@ index 99039e0..53043de 100644
          self._getAnyKeyForRepo(repo, repo.gpgcadir, repo.gpgcakey, is_cakey=True, callback=callback)
  
      def _limit_installonly_pkgs(self):
-@@ -4959,19 +5383,22 @@ class YumBase(depsolve.Depsolve):
+@@ -4959,19 +5396,22 @@ class YumBase(depsolve.Depsolve):
              txmbr.depends_on.append(rel)
  
      def processTransaction(self, callback=None,rpmTestDisplay=None, rpmDisplay=None):
@@ -12348,7 +147006,7 @@ index 99039e0..53043de 100644
          
          if not callback:
              callback = callbacks.ProcessTransNoOutputCallback()
-@@ -5114,13 +5541,19 @@ class YumBase(depsolve.Depsolve):
+@@ -5114,13 +5554,19 @@ class YumBase(depsolve.Depsolve):
          return results
  
      def add_enable_repo(self, repoid, baseurls=[], mirrorlist=None, **kwargs):
@@ -12375,7 +147033,7 @@ index 99039e0..53043de 100644
          # out of place fixme - maybe we should make this the default repo addition
          # routine and use it from getReposFromConfigFile(), etc.
          newrepo = yumRepo.YumRepository(repoid)
-@@ -5167,9 +5600,15 @@ class YumBase(depsolve.Depsolve):
+@@ -5167,9 +5613,15 @@ class YumBase(depsolve.Depsolve):
  
      def setCacheDir(self, force=False, tmpdir=None, reuse=True,
                      suffix='/$basearch/$releasever'):
@@ -12394,7 +147052,7 @@ index 99039e0..53043de 100644
          if not force and os.geteuid() == 0:
              return True # We are root, not forced, so happy with the global dir.
          if tmpdir is None:
-@@ -5220,13 +5659,24 @@ class YumBase(depsolve.Depsolve):
+@@ -5220,13 +5672,24 @@ class YumBase(depsolve.Depsolve):
          self.history.write_addon_data('config-repos', myrepos)
          
      def verify_plugins_cb(self, verify_package):
@@ -12422,7 +147080,7 @@ index 99039e0..53043de 100644
          if self.tsInfo._unresolvedMembers:
              if auto:
                  self.logger.critical(_("Dependencies not solved. Will not save unresolved transaction."))
-@@ -5234,7 +5684,7 @@ class YumBase(depsolve.Depsolve):
+@@ -5234,7 +5697,7 @@ class YumBase(depsolve.Depsolve):
              raise Errors.YumBaseError(_("Dependencies not solved. Will not save unresolved transaction."))
          
          if not filename:
@@ -12431,7 +147089,7 @@ index 99039e0..53043de 100644
              fd,filename = tempfile.mkstemp(suffix='.yumtx', prefix=prefix)
              f = os.fdopen(fd, 'w')
          else:
-@@ -5266,7 +5716,17 @@ class YumBase(depsolve.Depsolve):
+@@ -5266,7 +5729,17 @@ class YumBase(depsolve.Depsolve):
  
          
      def load_ts(self, filename, ignorerpm=None, ignoremissing=None):
@@ -12450,7 +147108,7 @@ index 99039e0..53043de 100644
          # check rpmversion - if not match throw a fit
          # check repoversions  (and repos)- if not match throw a fit
          # load each txmbr - if pkgs being updated don't exist, bail w/error
-@@ -5292,6 +5752,16 @@ class YumBase(depsolve.Depsolve):
+@@ -5292,6 +5765,16 @@ class YumBase(depsolve.Depsolve):
          # 3+numrepos = num pkgs
          # 3+numrepos+1 -> EOF= txmembers
          
@@ -12615,7 +147273,7 @@ index 7ad25ce..a9a8e53 100644
          pass
          
 diff --git a/yum/config.py b/yum/config.py
-index d09511f..fffd0d1 100644
+index d09511f..f9789de 100644
 --- a/yum/config.py
 +++ b/yum/config.py
 @@ -47,13 +47,12 @@ __pkgs_gpgcheck_default__ = False
@@ -13286,7 +147944,7 @@ index d09511f..fffd0d1 100644
      # xemacs highlighting hack: '
      debuglevel = IntOption(2, 0, 10)
      errorlevel = IntOption(2, 0, 10)
-@@ -625,11 +714,10 @@ class StartupConf(BaseConfig):
+@@ -625,13 +714,13 @@ class StartupConf(BaseConfig):
      persistdir = Option('/var/lib/yum')
      
  class YumConf(StartupConf):
@@ -13300,8 +147958,11 @@ index d09511f..fffd0d1 100644
 +    """
      retries = PositiveIntOption(10, names_of_0=["<forever>"])
      recent = IntOption(7, range_min=0)
++    reset_nice = BoolOption(False)
+ 
+     cachedir = Option('/var/cache/yum')
  
-@@ -664,6 +752,7 @@ class YumConf(StartupConf):
+@@ -664,6 +753,7 @@ class YumConf(StartupConf):
      tsflags = ListOption()
  
      assumeyes = BoolOption(False)
@@ -13309,7 +147970,7 @@ index d09511f..fffd0d1 100644
      alwaysprompt = BoolOption(True)
      exactarch = BoolOption(True)
      tolerant = BoolOption(True)
-@@ -686,6 +775,9 @@ class YumConf(StartupConf):
+@@ -686,6 +776,9 @@ class YumConf(StartupConf):
  
      bandwidth = BytesOption(0)
      throttle = ThrottleOption(0)
@@ -13319,7 +147980,7 @@ index d09511f..fffd0d1 100644
  
      http_caching = SelectionOption('all', ('none', 'packages', 'all'))
      metadata_expire = SecondsOption(60 * 60 * 6) # Time in seconds (6h).
-@@ -703,7 +795,7 @@ class YumConf(StartupConf):
+@@ -703,7 +796,7 @@ class YumConf(StartupConf):
                   # all == install any/all arches you can
                   # best == use the 'best  arch' for the system
                   
@@ -13328,7 +147989,7 @@ index d09511f..fffd0d1 100644
  
      color = SelectionOption('auto', ('auto', 'never', 'always'),
                              mapper={'on' : 'always', 'yes' : 'always',
-@@ -747,6 +839,7 @@ class YumConf(StartupConf):
+@@ -747,6 +840,7 @@ class YumConf(StartupConf):
      
      clean_requirements_on_remove = BoolOption(False)
  
@@ -13336,7 +147997,7 @@ index d09511f..fffd0d1 100644
  
      history_list_view = SelectionOption('single-user-commands',
                                          ('single-user-commands', 'users',
-@@ -756,6 +849,12 @@ class YumConf(StartupConf):
+@@ -756,6 +850,12 @@ class YumConf(StartupConf):
      _reposlist = []
  
      def dump(self):
@@ -13349,7 +148010,7 @@ index d09511f..fffd0d1 100644
          output = '[main]\n'
          # we exclude all vars which start with _ or are in this list:
          excluded_vars = ('cfg', 'uid', 'yumvar', 'progress_obj', 'failure_obj',
-@@ -778,14 +877,12 @@ class YumConf(StartupConf):
+@@ -778,14 +878,12 @@ class YumConf(StartupConf):
          return output
  
  class RepoConf(BaseConfig):
@@ -13367,7 +148028,7 @@ index d09511f..fffd0d1 100644
          ck = self.__cached_keys
          if not isinstance(self, RepoConf):
              ck = set()
-@@ -823,6 +920,8 @@ class RepoConf(BaseConfig):
+@@ -823,6 +921,8 @@ class RepoConf(BaseConfig):
      bandwidth = Inherit(YumConf.bandwidth)
      throttle = Inherit(YumConf.throttle)
      timeout = Inherit(YumConf.timeout)
@@ -13376,7 +148037,7 @@ index d09511f..fffd0d1 100644
      http_caching = Inherit(YumConf.http_caching)
      metadata_expire = Inherit(YumConf.metadata_expire)
      mirrorlist_expire = Inherit(YumConf.mirrorlist_expire)
-@@ -839,23 +938,23 @@ class RepoConf(BaseConfig):
+@@ -839,23 +939,23 @@ class RepoConf(BaseConfig):
      skip_if_unavailable = BoolOption(False)
      
  class VersionGroupConf(BaseConfig):
@@ -13411,7 +148072,7 @@ index d09511f..fffd0d1 100644
  
      # ' xemacs syntax hack
  
-@@ -876,20 +975,24 @@ def readStartupConfig(configfile, root):
+@@ -876,20 +976,24 @@ def readStartupConfig(configfile, root):
              raise Errors.ConfigError("All plugin search paths must be absolute")
      # Stuff this here to avoid later re-parsing
      startupconf._parser = parser
@@ -13442,7 +148103,7 @@ index d09511f..fffd0d1 100644
      
      # ' xemacs syntax hack
  
-@@ -956,6 +1059,12 @@ def readMainConfig(startupconf):
+@@ -956,6 +1060,12 @@ def readMainConfig(startupconf):
      return yumconf
  
  def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
@@ -13455,7 +148116,7 @@ index d09511f..fffd0d1 100644
      parser = ConfigParser()
      confpp_obj = ConfigPreProcessor(configfile)
      try:
-@@ -970,17 +1079,16 @@ def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
+@@ -970,17 +1080,16 @@ def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
  
  
  def getOption(conf, section, name, option):
@@ -13483,7 +148144,7 @@ index d09511f..fffd0d1 100644
      try: 
          val = conf.get(section, name)
      except (NoSectionError, NoOptionError):
-@@ -1028,7 +1136,10 @@ def _getsysver(installroot, distroverpkg):
+@@ -1028,7 +1137,10 @@ def _getsysver(installroot, distroverpkg):
      if idx.count() == 0:
          releasever = '$releasever'
      else:
@@ -13495,7 +148156,7 @@ index d09511f..fffd0d1 100644
          releasever = hdr['version']
          del hdr
      del idx
-@@ -1036,13 +1147,12 @@ def _getsysver(installroot, distroverpkg):
+@@ -1036,13 +1148,12 @@ def _getsysver(installroot, distroverpkg):
      return releasever
  
  def writeRawRepoFile(repo,only=None):
@@ -13514,7 +148175,7 @@ index d09511f..fffd0d1 100644
      if not _use_iniparse:
          return
  
-@@ -1069,7 +1179,7 @@ def writeRawRepoFile(repo,only=None):
+@@ -1069,7 +1180,7 @@ def writeRawRepoFile(repo,only=None):
          #  If the value is the same, but just interpreted ... when we don't want
          # to keep the interpreted values.
          if (name in ini[section_id] and
diff --git a/yum.spec b/yum.spec
index 72f6f9a..0fbcbf1 100644
--- a/yum.spec
+++ b/yum.spec
@@ -18,7 +18,7 @@
 Summary: RPM package installer/updater/manager
 Name: yum
 Version: 3.4.3
-Release: 11%{?dist}
+Release: 12%{?dist}
 License: GPLv2+
 Group: System Environment/Base
 Source0: http://yum.baseurl.org/download/3.4/%{name}-%{version}.tar.gz
@@ -316,6 +316,10 @@ exit 0
 %endif
 
 %changelog
+* Mon Oct 17 2011 James Antill <james at fedoraproject.org> - 3.4.3-12
+- update to latest HEAD
+- Basically just an update for transifex sync.
+
 * Fri Oct 14 2011 James Antill <james at fedoraproject.org> - 3.4.3-11
 - update to latest HEAD
 - Some edge case depsolver bug fixes.


More information about the scm-commits mailing list