[yum] update to latest HEAD.

James Antill james at fedoraproject.org
Wed Mar 6 21:30:52 UTC 2013


commit 6d7f5e23b07922f53ebe4f9a81e20b0066bc6ac5
Author: James Antill <james at and.org>
Date:   Wed Mar 6 16:30:40 2013 -0500

    update to latest HEAD.
    
    - Translation updates.
    - Smarter selection of drpm candidates.
    - "makecache fast".
    - Minor updates.

 yum-HEAD.patch |67883 ++++++++++++++++++++++++++++++++------------------------
 yum.spec       |    9 +-
 2 files changed, 38380 insertions(+), 29512 deletions(-)
---
diff --git a/yum-HEAD.patch b/yum-HEAD.patch
index e196095..5d13b6d 100644
--- a/yum-HEAD.patch
+++ b/yum-HEAD.patch
@@ -96,7 +96,7 @@ index 2f6154e..2e5a052 100644
 diff --git a/cli.py b/cli.py
 old mode 100644
 new mode 100755
-index 6056d38..63a9236
+index 6056d38..12817fc
 --- a/cli.py
 +++ b/cli.py
 @@ -25,7 +25,7 @@ import sys
@@ -465,18 +465,33 @@ index 6056d38..63a9236
              for key in problems:
                  errors = yum.misc.unique(problems[key])
                  for error in errors:
-@@ -520,7 +613,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -520,8 +613,9 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
  
          rcd_st = time.time()
          self.verbose_logger.log(yum.logginglevels.INFO_2, 
 -             _('Running Transaction Check'))
 +             _('Running transaction check'))
          msgs = self._run_rpm_check()
++        depsolve = True
          if msgs:
              rpmlib_only = True
-@@ -540,11 +633,11 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+             for msg in msgs:
+@@ -532,19 +626,23 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+                 print _("ERROR You need to update rpm to handle:")
+             else:
+                 print _('ERROR with transaction check vs depsolve:')
++                depsolve = False
+ 
+             for msg in msgs:
+                 print to_utf8(msg)
+ 
+             if rpmlib_only:
                  return 1, [_('RPM needs to be updated')]
-             return 1, [_('Please report this error in %s') % self.conf.bugtracker_url]
+-            return 1, [_('Please report this error in %s') % self.conf.bugtracker_url]
++            if depsolve:
++                return 1, []
++            else:
++                return 1, [_('Please report this error in %s') % self.conf.bugtracker_url]
  
 -        self.verbose_logger.debug('Transaction Check time: %0.3f' % (time.time() - rcd_st))
 +        self.verbose_logger.debug('Transaction check time: %0.3f' % (time.time() - rcd_st))
@@ -488,7 +503,7 @@ index 6056d38..63a9236
          if not self.conf.diskspacecheck:
              self.tsInfo.probFilterFlags.append(rpm.RPMPROB_FILTER_DISKSPACE)
              
-@@ -556,16 +649,16 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -556,16 +654,16 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          del testcb
  
          if len(tserrors) > 0:
@@ -508,7 +523,7 @@ index 6056d38..63a9236
          
          # unset the sigquit handler
          signal.signal(signal.SIGQUIT, signal.SIG_DFL)
-@@ -595,7 +688,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -595,7 +693,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          if self.conf.debuglevel < 2:
              cb.display.output = False
  
@@ -517,7 +532,7 @@ index 6056d38..63a9236
          resultobject = self.runTransaction(cb=cb)
  
          self.verbose_logger.debug('Transaction time: %0.3f' % (time.time() - ts_st))
-@@ -609,12 +702,14 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -609,12 +707,14 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return resultobject.return_code
          
      def gpgsigcheck(self, pkgs):
@@ -537,7 +552,7 @@ index 6056d38..63a9236
          for po in pkgs:
              result, errmsg = self.sigCheckPkg(po)
  
-@@ -623,7 +718,8 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -623,7 +723,8 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                  continue            
  
              elif result == 1:
@@ -547,7 +562,7 @@ index 6056d38..63a9236
                      raise yum.Errors.YumBaseError, \
                              _('Refusing to automatically import keys when running ' \
                              'unattended.\nUse "-y" to override.')
-@@ -691,12 +787,62 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -691,12 +792,62 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                                       ", ".join(matches))
              self.verbose_logger.log(yum.logginglevels.INFO_2, msg)
  
@@ -616,7 +631,7 @@ index 6056d38..63a9236
          # get the list of available packages
          # iterate over the user's list
          # add packages to Transaction holding class if they match.
-@@ -710,11 +856,36 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -710,11 +861,36 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          for arg in userlist:
              if (arg.endswith('.rpm') and (yum.misc.re_remote_url(arg) or
                                            os.path.exists(arg))):
@@ -655,7 +670,7 @@ index 6056d38..63a9236
              except yum.Errors.InstallError:
                  self.verbose_logger.log(yum.logginglevels.INFO_2,
                                          _('No package %s%s%s available.'),
-@@ -723,6 +894,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -723,6 +899,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                  self._maybeYouMeant(arg)
              else:
                  done = True
@@ -663,7 +678,7 @@ index 6056d38..63a9236
          if len(self.tsInfo) > oldcount:
              change = len(self.tsInfo) - oldcount
              return 2, [P_('%d package to install', '%d packages to install', change) % change]
-@@ -732,9 +904,27 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -732,9 +909,27 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return 0, [_('Nothing to do')]
          
      def updatePkgs(self, userlist, quiet=0, update_to=False):
@@ -694,7 +709,7 @@ index 6056d38..63a9236
          # if there is no userlist, then do global update below
          # this is probably 90% of the calls
          # if there is a userlist then it's for updating pkgs, not obsoleting
-@@ -745,34 +935,46 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -745,34 +940,46 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
  
          else:
              # go through the userlist - look for items that are local rpms. If we find them
@@ -758,7 +773,7 @@ index 6056d38..63a9236
  
          level = 'diff'
          if userlist and userlist[0] in ('full', 'diff', 'different'):
-@@ -831,6 +1033,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -831,6 +1038,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                          continue
  
                      nayi = napkg.yumdb_info
@@ -766,7 +781,7 @@ index 6056d38..63a9236
                      for apkg in self.pkgSack.searchPkgTuple(napkg.pkgtup):
                          if ('checksum_type' in nayi and
                              'checksum_data' in nayi and
-@@ -861,19 +1064,58 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -861,19 +1069,58 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                  dupdates.extend(self.downgrade(name=n, epoch=e, ver=v, rel=r))
  
          if dupdates:
@@ -833,7 +848,7 @@ index 6056d38..63a9236
              if not rms:
                  self._checkMaybeYouMeant(arg, always_output=False, rpmdb_only=True)
              all_rms.extend(rms)
-@@ -884,12 +1126,24 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -884,12 +1131,24 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              return 0, [_('No Packages marked for removal')]
      
      def downgradePkgs(self, userlist):
@@ -861,7 +876,7 @@ index 6056d38..63a9236
          for arg in userlist:
              if (arg.endswith('.rpm') and (yum.misc.re_remote_url(arg) or
                                            os.path.exists(arg))):
-@@ -905,26 +1159,44 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -905,26 +1164,44 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                                          self.term.MODE['bold'], arg,
                                          self.term.MODE['normal'])
                  self._maybeYouMeant(arg)
@@ -910,7 +925,7 @@ index 6056d38..63a9236
              except yum.Errors.ReinstallRemoveError:
                  self._checkMaybeYouMeant(arg, always_output=False)
              except yum.Errors.ReinstallInstallError, e:
-@@ -940,22 +1212,38 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -940,22 +1217,38 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              except yum.Errors.ReinstallError, e:
                  assert False, "Shouldn't happen, but just in case"
                  self.verbose_logger.log(yum.logginglevels.INFO_2, e)
@@ -953,7 +968,7 @@ index 6056d38..63a9236
  
          installing = False
          for pkg in filelist:
-@@ -971,23 +1259,29 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -971,23 +1264,29 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              return 2, [_('Package(s) to install')]
          return 0, [_('Nothing to do')]
  
@@ -999,7 +1014,7 @@ index 6056d38..63a9236
          
          pkgnarrow = 'all'
          done_hidden_available = False
-@@ -1003,7 +1297,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1003,7 +1302,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                  pkgnarrow = extcmds.pop(0)
              
          ypl = self.doPackageLists(pkgnarrow=pkgnarrow, patterns=extcmds,
@@ -1008,7 +1023,7 @@ index 6056d38..63a9236
          if self.conf.showdupesfromrepos:
              ypl.available += ypl.reinstall_available
  
-@@ -1017,8 +1311,25 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1017,8 +1316,25 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return ypl
  
      def search(self, args):
@@ -1036,7 +1051,7 @@ index 6056d38..63a9236
          
          # call the yum module search function with lists of tags to search
          # and what to search for
-@@ -1053,7 +1364,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1053,7 +1369,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                          print ""
                      else:
                          mkeys = set(keys)
@@ -1045,7 +1060,7 @@ index 6056d38..63a9236
                      okeys = keys
                  pos.add(po)
                  akeys.update(keys)
-@@ -1104,13 +1415,24 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1104,13 +1420,24 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
                  self.logger.warning(_('Warning: No matches found for: %s'), arg)
  
          if not akeys:
@@ -1073,7 +1088,7 @@ index 6056d38..63a9236
          pkgs = []
          for arg in args:
              if (arg.endswith('.rpm') and (yum.misc.re_remote_url(arg) or
-@@ -1131,10 +1453,19 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1131,10 +1458,19 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return 0, []
  
      def provides(self, args):
@@ -1097,7 +1112,7 @@ index 6056d38..63a9236
          old_sdup = self.conf.showdupesfromrepos
          # For output, as searchPackageProvides() is always in showdups mode
          self.conf.showdupesfromrepos = True
-@@ -1147,6 +1478,8 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1147,6 +1483,8 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              paths = set(sys.path + os.environ['PATH'].split(':'))
              nargs = []
              for arg in args:
@@ -1106,7 +1121,7 @@ index 6056d38..63a9236
                  if yum.misc.re_filename(arg) or yum.misc.re_glob(arg):
                      continue
                  for path in paths:
-@@ -1158,25 +1491,82 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1158,25 +1496,82 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          self.conf.showdupesfromrepos = old_sdup
  
          if len(matching) == 0:
@@ -1195,7 +1210,7 @@ index 6056d38..63a9236
          hdrcode = pkgcode = xmlcode = dbcode = expccode = 0
          pkgresults = hdrresults = xmlresults = dbresults = expcresults = []
          msg = self.fmtKeyValFill(_('Cleaning repos: '), 
-@@ -1184,7 +1574,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1184,7 +1579,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          self.verbose_logger.log(yum.logginglevels.INFO_2, msg)
          if 'all' in userlist:
              self.verbose_logger.log(yum.logginglevels.INFO_2,
@@ -1204,7 +1219,7 @@ index 6056d38..63a9236
              pkgcode, pkgresults = self.cleanPackages()
              hdrcode, hdrresults = self.cleanHeaders()
              xmlcode, xmlresults = self.cleanMetadata()
-@@ -1200,10 +1590,10 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1200,10 +1595,10 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              return code, []
              
          if 'headers' in userlist:
@@ -1217,7 +1232,7 @@ index 6056d38..63a9236
              pkgcode, pkgresults = self.cleanPackages()
          if 'metadata' in userlist:
              self.logger.debug(_('Cleaning up xml metadata'))
-@@ -1228,138 +1618,265 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1228,138 +1623,265 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return code, []
  
      def returnGroupLists(self, userlist):
@@ -1565,7 +1580,7 @@ index 6056d38..63a9236
                  continue
              
          if not pkgs_used:
-@@ -1368,17 +1885,61 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1368,17 +1890,61 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
              return 2, [P_('%d package to Install', '%d packages to Install', len(pkgs_used)) % len(pkgs_used)]
  
      def removeGroups(self, grouplist):
@@ -1635,7 +1650,7 @@ index 6056d38..63a9236
                  
          if not pkgs_used:
              return 0, [_('No packages to remove from groups')]
-@@ -1389,7 +1950,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1389,7 +1955,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
  
      def _promptWanted(self):
          # shortcut for the always-off/always-on options
@@ -1644,7 +1659,7 @@ index 6056d38..63a9236
              return False
          if self.conf.alwaysprompt:
              return True
-@@ -1400,7 +1961,6 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1400,7 +1966,6 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          #  package wasn't explictly given on the command line
          for txmbr in self.tsInfo.getMembers():
              if txmbr.isDep or \
@@ -1652,7 +1667,7 @@ index 6056d38..63a9236
                     txmbr.name not in self.extcmds:
                  return True
          
-@@ -1408,11 +1968,11 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1408,11 +1973,11 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return False
  
      def usage(self):
@@ -1666,7 +1681,7 @@ index 6056d38..63a9236
          sys.stdout.write(self.optparser.get_usage())
      
      def _installable(self, pkg, ematch=False):
-@@ -1468,9 +2028,9 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
+@@ -1468,9 +2033,9 @@ class YumBaseCli(yum.YumBase, output.YumOutput):
          return False
  
  class YumOptionParser(OptionParser):
@@ -1678,7 +1693,7 @@ index 6056d38..63a9236
  
      def __init__(self,base, **kwargs):
          # check if this is called with a utils=True/False parameter
-@@ -1488,13 +2048,23 @@ class YumOptionParser(OptionParser):
+@@ -1488,13 +2053,23 @@ class YumOptionParser(OptionParser):
          self._addYumBasicOptions()
  
      def error(self, msg):
@@ -1704,7 +1719,7 @@ index 6056d38..63a9236
          try:
              args = _filtercmdline(
                          ('--noplugins','--version','-q', '-v', "--quiet", "--verbose"), 
-@@ -1521,7 +2091,15 @@ class YumOptionParser(OptionParser):
+@@ -1521,7 +2096,15 @@ class YumOptionParser(OptionParser):
          return ret
          
      def setupYumConfig(self, args=None):
@@ -1721,7 +1736,7 @@ index 6056d38..63a9236
          if not args:
              (opts, cmds) = self.parse_args()
          else:
-@@ -1533,16 +2111,22 @@ class YumOptionParser(OptionParser):
+@@ -1533,16 +2116,22 @@ class YumOptionParser(OptionParser):
          try:
              # config file is parsed and moving us forward
              # set some things in it.
@@ -1750,7 +1765,7 @@ index 6056d38..63a9236
                  self.base.conf.cache = 1
  
              if opts.obsoletes:
-@@ -1610,10 +2194,6 @@ class YumOptionParser(OptionParser):
+@@ -1610,10 +2199,6 @@ class YumOptionParser(OptionParser):
                      self.base.usage()
                      sys.exit(1)
  
@@ -1761,7 +1776,7 @@ index 6056d38..63a9236
              # Disable all gpg key checking, if requested.
              if opts.nogpgcheck:
                  #  Altering the normal configs. doesn't work too well, esp. with
-@@ -1623,7 +2203,7 @@ class YumOptionParser(OptionParser):
+@@ -1623,7 +2208,7 @@ class YumOptionParser(OptionParser):
                      repo._override_sigchecks = True
                              
          except ValueError, e:
@@ -1770,7 +1785,7 @@ index 6056d38..63a9236
              self.base.usage()
              sys.exit(1)
           
-@@ -1640,10 +2220,18 @@ class YumOptionParser(OptionParser):
+@@ -1640,10 +2225,18 @@ class YumOptionParser(OptionParser):
          sys.exit(1)
  
      def getRoot(self,opts):
@@ -1790,7 +1805,7 @@ index 6056d38..63a9236
              if os.access(opts.installroot+'/'+opts.conffile, os.R_OK):
                  opts.conffile = opts.installroot+'/'+opts.conffile
              elif opts.conffile == '/etc/yum/yum.conf':
-@@ -1701,6 +2289,9 @@ class YumOptionParser(OptionParser):
+@@ -1701,6 +2294,9 @@ class YumOptionParser(OptionParser):
          group.add_option("--showduplicates", dest="showdupesfromrepos",
                          action="store_true",
                  help=_("show duplicates, in repos, in list/search commands"))
@@ -1800,7 +1815,7 @@ index 6056d38..63a9236
          group.add_option("-e", "--errorlevel", dest="errorlevel", default=None,
                  help=_("error output level"), type='int',
                  metavar='[error level]')
-@@ -1713,6 +2304,10 @@ class YumOptionParser(OptionParser):
+@@ -1713,6 +2309,10 @@ class YumOptionParser(OptionParser):
                          help=_("verbose operation"))
          group.add_option("-y", "--assumeyes", dest="assumeyes",
                  action="store_true", help=_("answer yes for all questions"))
@@ -1811,7 +1826,7 @@ index 6056d38..63a9236
          group.add_option("--version", action="store_true", 
                  help=_("show Yum version and exit"))
          group.add_option("--installroot", help=_("set install root"), 
-@@ -1748,6 +2343,10 @@ class YumOptionParser(OptionParser):
+@@ -1748,6 +2348,10 @@ class YumOptionParser(OptionParser):
                  help=_("control whether color is used"))
          group.add_option("", "--releasever", dest="releasever", default=None, 
                  help=_("set value of $releasever in yum config and repo files"))
@@ -2586,9 +2601,18 @@ index 0000000..4d01a5a
 + the mailing list, yum at lists.baseurl.org, or consult bugzilla.
 +.fi
 diff --git a/docs/yum.8 b/docs/yum.8
-index 1a8202a..b4ab5c5 100644
+index 1a8202a..4012a7f 100644
 --- a/docs/yum.8
 +++ b/docs/yum.8
+@@ -43,7 +43,7 @@ gnome\-packagekit application\&.
+ .br  
+ .I \fR * clean [ packages | metadata | expire-cache | rpmdb | plugins | all ]
+ .br
+-.I \fR * makecache
++.I \fR * makecache [fast]
+ .br
+ .I \fR * groups  [\&.\&.\&.]
+ .br
 @@ -52,6 +52,7 @@ gnome\-packagekit application\&.
  .I \fR * shell [filename]
  .br
@@ -2660,7 +2684,17 @@ index 1a8202a..b4ab5c5 100644
  .IP 
  .IP "\fBlist\fP"
  Is used to list various information about available
-@@ -209,10 +227,12 @@ installed.
+@@ -191,7 +209,8 @@ the \fIClean Options\fP section below\&.
+ .IP 
+ .IP "\fBmakecache\fP"
+ Is used to download and make usable all the metadata for the currently enabled
+-\fByum\fP repos.
++\fByum\fP repos. If the arguemnt "fast" is passed, then we just try to make
++sure the repos. are current (much like "yum clean expire-cache").
+ .IP 
+ .IP "\fBgroups\fP"
+ A command, new in 3.4.2, that collects all the subcommands that act on groups together.
+@@ -209,10 +228,12 @@ installed.
  "\fBgroup list\fP" is used to list the available groups from all \fByum\fP repos. Groups are marked
  as "installed" if all mandatory packages are installed, or if a group doesn't
  have any mandatory packages then it is installed if any of the optional or
@@ -2677,7 +2711,7 @@ index 1a8202a..b4ab5c5 100644
  
  "\fBgroup remove\fP" is used to remove all of the packages in a group, unlike "groupinstall" this
  will remove everything regardless of group_package_types. It is worth pointing
-@@ -224,10 +244,37 @@ to only remove packages which aren't required by something else.
+@@ -224,10 +245,37 @@ to only remove packages which aren't required by something else.
  
  "\fBgroup info\fP" is used to give the description and package list of a group (and which type
  those packages are marked as). Note that you can use the yum-filter-data and
@@ -2716,7 +2750,7 @@ index 1a8202a..b4ab5c5 100644
  .IP
  .IP "\fBshell\fP"
  Is used to enter the 'yum shell', when a filename is specified the contents of
-@@ -235,12 +282,13 @@ that file is executed in yum shell mode. See \fIyum-shell(8)\fP for more info
+@@ -235,12 +283,13 @@ that file is executed in yum shell mode. See \fIyum-shell(8)\fP for more info
  .IP
  .IP "\fBresolvedep\fP"
  Is used to list packages providing the specified dependencies, at most one
@@ -2732,7 +2766,7 @@ index 1a8202a..b4ab5c5 100644
  reasons only.
  .IP
  .IP "\fBlocalupdate\fP"
-@@ -248,7 +296,7 @@ Is used to update the system by specifying local rpm files. Only the specified
+@@ -248,7 +297,7 @@ Is used to update the system by specifying local rpm files. Only the specified
  rpm files of which an older version is already installed will be installed,
  the remaining specified packages will be ignored.
  If required the enabled repositories will be used to resolve dependencies. Note
@@ -2741,7 +2775,7 @@ index 1a8202a..b4ab5c5 100644
  legacy reasons only.
  .IP
  .IP "\fBreinstall\fP"
-@@ -260,10 +308,26 @@ on groups, files, provides and filelists just like the "install" command\&.
+@@ -260,10 +309,26 @@ on groups, files, provides and filelists just like the "install" command\&.
  Will try and downgrade a package from the version currently installed to the
  previously highest version (or the specified version).
  The depsolver will not necessarily work, but if you specify all the packages it
@@ -2769,7 +2803,7 @@ index 1a8202a..b4ab5c5 100644
  .IP "\fBdeplist\fP"
  Produces a list of all dependencies and what packages provide those
  dependencies for the given packages. As of 3.2.30 it now just shows the latest
-@@ -291,11 +355,56 @@ then yum will ignore any repo errors and output the information it can get
+@@ -291,11 +356,56 @@ then yum will ignore any repo errors and output the information it can get
  (Eg. "yum clean all; yum -C repolist" will output something, although the
  package counts/etc. will be zeroed out).
  .IP
@@ -2828,7 +2862,7 @@ index 1a8202a..b4ab5c5 100644
  packages (in sorted order), and the checksum_type/checksum_data entries from
  the yumdb. Note that this rpmdb version is now also used significantly within
  yum (esp. in yum history).
-@@ -321,26 +430,33 @@ and so takes sub-commands:
+@@ -321,26 +431,33 @@ and so takes sub-commands:
  .IP "\fBhistory\fP"
  The history command allows the user to view what has happened in past
  transactions (assuming the history_record config. option is set). You can use
@@ -2868,7 +2902,7 @@ index 1a8202a..b4ab5c5 100644
  A (if it is not still installed), and "rollback 1" will try to remove packages
  B and C. Note that after a "rollback 1" you will have a fourth transaction,
  although the ending rpmdb version (see: yum version) should be the same in
-@@ -349,6 +465,12 @@ transactions 1 and 4.
+@@ -349,6 +466,12 @@ transactions 1 and 4.
  The addon-info command takes a transaction ID, and the packages-list command
  takes a package (with wildcards).
  
@@ -2881,7 +2915,7 @@ index 1a8202a..b4ab5c5 100644
  In "history list" you can change the behaviour of the 2nd column via. the
  configuration option history_list_view.
  
-@@ -371,6 +493,20 @@ end of the package column in the packages-list command).
+@@ -371,6 +494,20 @@ end of the package column in the packages-list command).
  .I \fBs\fR - The transaction completed fine, but --skip-broken was enabled and had to skip some packages.
  .br
  
@@ -2902,7 +2936,7 @@ index 1a8202a..b4ab5c5 100644
  .IP
  .IP "\fBcheck\fP"
  Checks the local rpmdb and produces information on any problems it finds. You
-@@ -401,6 +537,11 @@ Assume yes; assume that the answer to any question which would be asked
+@@ -401,6 +538,11 @@ Assume yes; assume that the answer to any question which would be asked
  is yes\&.
  .br
  Configuration Option: \fBassumeyes\fP
@@ -2914,7 +2948,7 @@ index 1a8202a..b4ab5c5 100644
  .IP "\fB\-c, \-\-config=[config file]\fP" 
  Specifies the config file location - can take HTTP and FTP URLs and local file
  paths\&.
-@@ -420,7 +561,7 @@ Sets the error level to [number] Practical range 0 \- 10. 0 means print only cri
+@@ -420,7 +562,7 @@ Sets the error level to [number] Practical range 0 \- 10. 0 means print only cri
  .br
  Configuration Option: \fBerrorlevel\fP
  .IP "\fB\-\-rpmverbosity=[name]\fP" 
@@ -2923,7 +2957,7 @@ index 1a8202a..b4ab5c5 100644
  options are: 'critical', 'emergency', 'error', 'warn' and 'debug'.
  .br
  Configuration Option: \fBrpmverbosity\fP
-@@ -506,7 +647,14 @@ option will corrupt your cache (and you can use $releasever in your cachedir
+@@ -506,7 +648,14 @@ option will corrupt your cache (and you can use $releasever in your cachedir
  configuration to stop this).
  .PP 
  .IP "\fB\-t, \-\-tolerant\fP"
@@ -2939,7 +2973,7 @@ index 1a8202a..b4ab5c5 100644
  .br
  .IP "\fB\-\-setopt=option=value\fP"
  Set any config option in yum config or repo files. For options in the global 
-@@ -523,7 +671,7 @@ version of the package\&.
+@@ -523,7 +672,7 @@ version of the package\&.
  
  The format of the output of yum list is:
  
@@ -2948,7 +2982,7 @@ index 1a8202a..b4ab5c5 100644
  
  .IP "\fByum list [all | glob_exp1] [glob_exp2] [\&.\&.\&.]\fP"
  List all available and installed packages\&.
-@@ -542,6 +690,10 @@ shell\-style glob and any matches are printed\&.
+@@ -542,6 +691,10 @@ shell\-style glob and any matches are printed\&.
  List the packages installed on the system that are not available in any yum
  repository listed in the config file.
  .IP
@@ -2960,7 +2994,7 @@ index 1a8202a..b4ab5c5 100644
  List the packages installed on the system that are obsoleted by packages
  in any yum repository listed in the config file.
 diff --git a/docs/yum.conf.5 b/docs/yum.conf.5
-index 515aa73..f9a924a 100644
+index 515aa73..c701890 100644
 --- a/docs/yum.conf.5
 +++ b/docs/yum.conf.5
 @@ -114,15 +114,27 @@ are causing problems from the transaction.
@@ -3067,7 +3101,7 @@ index 515aa73..f9a924a 100644
  \fBinstallroot \fR
  Specifies an alternative installroot, relative to which all packages will be
  installed. 
-@@ -300,6 +357,27 @@ with the \fBthrottle\fR option (above). If \fBthrottle\fR is a percentage and
+@@ -300,6 +357,35 @@ with the \fBthrottle\fR option (above). If \fBthrottle\fR is a percentage and
  ignored. Default is `0' (no bandwidth throttling). 
  
  .IP
@@ -3089,13 +3123,21 @@ index 515aa73..f9a924a 100644
 +\fBdeltarpm\fR
 +
 +When non-zero, delta-RPM files are used if available.  The value specifies
-+the maximum number of "applydeltarpm" processes Yum will spawn. (4 by default).
++the maximum number of "applydeltarpm" processes Yum will spawn, if the value
++is negative then yum works out how many cores you have and multiplies that
++by the value (cores=2, deltarpm=-2; 4 processes). (-2 by default).
++
++.IP
++\fBdeltarpm_percentage\fR
++
++When the relative size of delta vs pkg is larger than this, delta is not used.
++Default value is 75 (Deltas must be at least 25% smaller than the pkg).
 +
 +.IP
  \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
-@@ -331,6 +409,15 @@ Path to the SSL client key yum should use to connect to repos/remote sites
+@@ -331,6 +417,15 @@ Path to the SSL client key yum should use to connect to repos/remote sites
  Defaults to none.
  
  .IP
@@ -3111,7 +3153,7 @@ index 515aa73..f9a924a 100644
  \fBhistory_record \fR
  Boolean - should yum record history entries for transactions. This takes some
  disk space, and some extra time in the transactions. But it allows how to know a
-@@ -438,6 +525,31 @@ It's also possible to use the word "never", meaning that the metadata will
+@@ -438,6 +533,31 @@ It's also possible to use the word "never", meaning that the metadata will
  never expire. Note that when using a metalink file the metalink must always
  be newer than the metadata for the repository, due to the validation, so this
  timeout also applies to the metalink file.
@@ -3143,7 +3185,7 @@ index 515aa73..f9a924a 100644
  
  .IP
  \fBmirrorlist_expire \fR
-@@ -480,6 +592,19 @@ not listed above is the other metadata, which contains the changelog information
+@@ -480,6 +600,19 @@ not listed above is the other metadata, which contains the changelog information
  which is used by yum-changelog. This is what "yum makecache" uses.
  
  .IP
@@ -3163,7 +3205,7 @@ index 515aa73..f9a924a 100644
  \fBmultilib_policy \fR
  Can be set to 'all' or 'best'. All means install all possible arches for any package you 
  want to install. Therefore yum install foo will install foo.i386 and foo.x86_64 on x86_64, 
-@@ -587,14 +712,65 @@ be downloaded. The updates list is what is printed when you run "yum update",
+@@ -587,14 +720,65 @@ be downloaded. The updates list is what is printed when you run "yum update",
  Default is `normal'.
  See color_list_installed_older for possible values.
  
@@ -3185,15 +3227,15 @@ index 515aa73..f9a924a 100644
 +\fBupgrade_requirements_on_install \fR
 +When installing/reinstalling/upgrading packages go through each package's
 +installed dependencies and check for an update.
- Boolean (1, 0, True, False, yes,no) Defaults to False
- 
++Boolean (1, 0, True, False, yes,no) Defaults to False
++
 +.IP
 +\fBrecheck_installed_requires \fR
 +When upgrading a package do we recheck any requirements that existed in the old
 +package. Turning this on shouldn't do anything but slow yum depsolving down,
 +however using rpm --nodeps etc. can break the rpmdb and then this will help.
-+Boolean (1, 0, True, False, yes,no) Defaults to False
-+
+ 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
@@ -3229,7 +3271,7 @@ index 515aa73..f9a924a 100644
  
  
  .SH "[repository] OPTIONS"
-@@ -755,6 +931,16 @@ repository.
+@@ -755,6 +939,22 @@ repository.
  Overrides the \fBbandwidth\fR option from the [main] section for this
  repository.
  
@@ -3239,14 +3281,20 @@ index 515aa73..f9a924a 100644
 +repository.
 +
 +.IP
-+\fBpresto\fR
++\fBdeltarpm\fR
 +
-+Overrides the \fBpresto\fR option from the [main] section for this
++Overrides the \fBdeltarpm\fR option from the [main] section for this
 +repository.
++
++.IP
++\fBdeltarpm_percentage\fR
++
++Overrides the \fBdeltarpm_percentage\fR option from the [main] section
++for this repository.
  
  .IP
  \fBsslcacert \fR
-@@ -776,6 +962,10 @@ repository.
+@@ -776,6 +976,10 @@ repository.
  Overrides the \fBsslclientkey\fR option from the [main] section for this
  repository.
  
@@ -3257,7 +3305,7 @@ index 515aa73..f9a924a 100644
  
  .IP
  \fBmetadata_expire \fR
-@@ -783,6 +973,11 @@ Overrides the \fBmetadata_expire\fR option from the [main] section for this
+@@ -783,6 +987,11 @@ Overrides the \fBmetadata_expire\fR option from the [main] section for this
  repository.
  
  .IP
@@ -3269,7 +3317,7 @@ index 515aa73..f9a924a 100644
  \fBmirrorlist_expire \fR
  Overrides the \fBmirrorlist_expire\fR option from the [main] section for this
  repository.
-@@ -824,7 +1019,16 @@ as greater/less than any other. defaults to 1000
+@@ -824,7 +1033,16 @@ as greater/less than any other. defaults to 1000
  If set to True yum will continue running if this repository cannot be 
  contacted for any reason. This should be set carefully as all repos are consulted
  for any given command. Defaults to False.
@@ -5762,10 +5810,10 @@ index b6aa277..26e3928 100755
      mark = '#'
 diff --git a/po/bg.po b/po/bg.po
 new file mode 100644
-index 0000000..5c97b5c
+index 0000000..63d00c7
 --- /dev/null
 +++ b/po/bg.po
-@@ -0,0 +1,3308 @@
+@@ -0,0 +1,3506 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
@@ -5776,9 +5824,9 @@ index 0000000..5c97b5c
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-04-13 13:16+0000\n"
-+"Last-Translator: Valentin Laskov <laskov at festa.bg>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Bulgarian (http://www.transifex.com/projects/p/yum/language/bg/)\n"
 +"MIME-Version: 1.0\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
@@ -5786,7 +5834,7 @@ index 0000000..5c97b5c
 +"Language: bg\n"
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Обновяване"
 +
@@ -5794,26 +5842,26 @@ index 0000000..5c97b5c
 +msgid "Erasing"
 +msgstr "Изтриване"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Инсталиране"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Излязъл от употреба"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Обновен"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Изтрит"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Инсталиран"
 +
@@ -5835,7 +5883,7 @@ index 0000000..5c97b5c
 +msgid "Erased: %s"
 +msgstr "Изтрит: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Премахване"
 +
@@ -5843,58 +5891,58 @@ index 0000000..5c97b5c
 +msgid "Cleanup"
 +msgstr "Почистване"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "Командата \"%s\" е вече дефинирана"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Задаване на хранилища"
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
 +msgstr "Четене метаданни на хранилища от локални файлове"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Грешка в конфига: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Грешка в опции: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "  Инсталирани: %s-%s на %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr "  Построен    : %s на %s"
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr "  Подаден: %s на %s"
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Трябва да зададете някаква команда"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Няма такава команда: %s. Моля, ползвайте %s --help"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Изисквания за пространство:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -5903,323 +5951,374 @@ index 0000000..5c97b5c
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Обобщение на грешките\n---------------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Не мога да създам заключващ файл; излизам"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Друго приложение ползва и е заключило yum; излизам - конфигурирано е exit_on_lock"
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr "Опитвам да стартирам транзакцията, но няма нищо за правене. Излизам."
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " игнорирам, както е зададено."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " прекратявам."
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Излизане по команда от потребителя"
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Сваляне на пакети:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Грешка при сваляне на пакети:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr "Извършва се проверка на транзакцията"
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "ГРЕШКА трябва да обновите rpm за да обработя:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr "ГРЕШКА в проверката на транзакцията спрямо разрешаването на зависимостите:"
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "RPM трябва да се обнови"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Моля, докладвайте тази грешка в %s"
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "Провежда се тестова транзакция"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "Грешка в проверката на транзакция:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "Тестовата транзакция е успешна"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "Транзакцията е в ход"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr "Отказ от автоматичен импорт на ключове при работа без надзор.\nЗа пренебрегване, ползвайте \"-y\"."
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "  * Може би имате предвид: "
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr "Пакет(и) %s%s%s са налични, но не са инсталирани."
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr "Няма наличен пакет %s%s%s."
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d пакет за инсталиране"
 +msgstr[1] "%d пакета за инсталиране"
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Нищо за правене"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
 +msgstr[0] "%d пакет, маркиран за обновяване"
 +msgstr[1] "%d пакета, маркирани за обновяване"
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Няма пакети, маркирани за обновяване"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
 +msgstr[0] "%d пакет, маркиран за синхронизиране на дистрибуцията"
 +msgstr[1] "%d пакета, маркирани за синхронизиране на дистрибуцията"
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Няма пакети, маркирани за синхронизация на дистрибуцията"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
 +msgstr[0] "%d пакет, маркиран за премахване"
 +msgstr[1] "%d пакета, маркирани за премахване"
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Няма пакети, маркирани за премахване"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "%d пакет за връщане към предишна версия"
 +msgstr[1] "%d пакета за връщане към предишна версия"
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr " (от %s)"
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr "Инсталираният пакет %s%s%s%s не е наличен."
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "%d пакет за преинсталиране"
 +msgstr[1] "%d пакета за преинсталиране"
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr "Няма осигурени пакети"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Пакет(и) за инсталиране"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr "N/S Съвпадение: %s"
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Името и описанието съвпадат %sсамо%s, ползвайте \"search all\" за всичко."
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Пълното име и описанието съвпадат %sсамо%s, ползвайте \"search all\" за всичко."
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr "Съвпадащ: %s"
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr "  Името и описанието съвпадат %sпочти%s, ползвайте \"search all\" за всичко."
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr "Внимание: Не са намерени съвпадения за: %s"
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Не са намерени съвпадения"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr "Грешка: Няма пакети, намерени за:\n  %s"
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Почиствам хранилища: "
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Почиствам всичко"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Почиствам заглавните части"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Почиствам пакети"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Почиствам xml метаданни"
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Почиствам кеша на базата данни"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr "Почиствам от кеша остарели метаданни"
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr "Почиствам от кеша rpmdb данни"
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Почиствам плъгини"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
-+msgstr "Внимание: Няма съвпадащи групи: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Инсталирани групи:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr "Инсталирани езикови групи:"
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Налични групи:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr "Достъпни езикови групи:"
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Готово"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr "Внимание: Група %s не съществува."
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr "В никоя от исканите групи няма налични за инсталиране или обновяване пакети "
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d пакет за инсталиране"
 +msgstr[1] "%d пакета за инсталиране"
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr "Група с име %s не съществува"
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr "Няма пакети за премахване от групите"
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
 +msgstr[0] "%d пакет за премахване"
 +msgstr[1] "%d пакета за премахване"
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr "Пакетът %s е вече инсталиран, пропускам го"
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr "Изоставям несравним pkg %s.%s"
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr "Няма друг инсталиран %s, добавям към списъка за евентуално инсталиране"
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Опции на плъгин"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr "Грешка в командния ред: %s"
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -6227,452 +6326,484 @@ index 0000000..5c97b5c
 +"%s: %s option requires an argument"
 +msgstr "\n\n%s: %s опцията изисква аргумент"
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr "--color приема едно от: auto, always, never"
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr "--installroot трябва да е абсолютен път: %s"
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "показва този помощен текст и излиза"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "бъди толерантен към грешки"
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "работи изцяло от системния кеш, не обновявай кеша"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "място на конфиг файла"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr "максимално време на изчакване на команда"
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr "ниво извеждана инфо за отстраняване на грешки"
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr "показвай дублиращи се, в repo-та, в list/search команди"
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr "ниво извеждана инфо при грешка"
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr "ниво извеждана инфо за rpm"
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr "работи без обяснения"
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr "работи с подробни обяснения"
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr "отговаря с да на всички въпроси"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "отговор не на всички въпроси"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr "показва версията на Yum и излиза"
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr "задаване коренова директория"
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr "разрешава едно или повече хранилища (допуска wildcards)"
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr "забранява едно или повече хранилища (допуска wildcards)"
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr "изключва пакет(и) по име или glob"
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr "забранява изключването от главното, от друго или всички хранилища"
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr "разрешава заместване на излезли от употреба при обновявания"
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr "забранява Yum плъгини"
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr "забранява проверката на gpg сигнатура"
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr "забранява плъгини по име"
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr "разрешава плъгини по име"
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr "пропуска пакети с проблеми в разрешаването на зависимости"
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr "контролира дали се използва цвят"
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr "задава стойност на $releasever в конфиг и repo файловете на yum"
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr "задава други настройки и свойства на хранилище"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Яну"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Фев"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Мар"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Апр"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "Май"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr "Юни"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr "Юли"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr "Авг"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr "Сеп"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr "Окт"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr "Ное"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr "Дек"
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr "Пробвам друг огледален сървър."
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr "Име         : %s%s%s"
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr "Архитект.   : %s"
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr "Период      : %s"
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr "Версия      : %s"
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr "Издание     : %s"
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr "Обем        : %s"
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr "Хранилище   : %s"
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr "От хранилище: %s"
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr "Подател     : %s"
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr "Час на подаване: %s"
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr "Час на създаване: %s"
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr "Час на инсталиране: %s"
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr "Инсталиран от: %s"
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr "Променен от  : %s"
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr "Обобщение   : "
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr "URL         : %s"
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr "Лиценз      : "
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr "Описание    : "
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr "y"
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr "да"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr "n"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr "не"
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr "Така добре ли е [y/N]: "
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr "\nГрупа: %s"
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr " Група-Id: %s"
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr " Описание: %s"
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr " Език: %s"
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr " Задължителни пакети:"
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr " Подразбиращи се пакети:"
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr " Опционални пакети:"
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr " Условни пакети:"
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Инсталирани пакети:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr "пакет: %s"
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr "  Няма зависимости за този пакет"
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr "  зависимост: %s"
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr "   Неудовлетворена зависимост"
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr "Съвпадащ от:"
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr "Лиценз     : %s"
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr "Име на файл : %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Осигурява    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr "Друго       : "
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr "Имаше грешка при пресмятането на общия обем за сваляне"
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr "Общ обем: %s"
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr "Общ обем за сваляне: %s"
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr "Инсталиран обем: %s"
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr "Имаше грешка при пресмятането на инсталирания обем"
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr "Преинсталиране"
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr "Връщане на предишна версия"
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr "Инсталиране на зависимости"
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr "Обновяване на зависимости"
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr "Премахване на зависимости"
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr "Пропуснат (проблеми в зависимости)"
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr "Не е инсталиран"
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr "Не е наличен"
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] "Пакет"
 +msgstr[1] "Пакети"
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr "Архитектура"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr "Версия"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr "Хранилище"
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr "Обем"
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr "     заместване  %s%s%s.%s %s\n"
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -6680,58 +6811,58 @@ index 0000000..5c97b5c
 +"%s\n"
 +msgstr "\nОбобщение на транзакцията\n%s\n"
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Инсталирай"
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Надгради"
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Премахни"
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Преинсталирай"
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Връщане към предишна версия"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Зависим пакет"
 +msgstr[1] "Зависими пакета"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr "Премахнат"
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr "Премахнати зависимости"
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr "Инсталирани зависимости"
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr "Обновени зависимости"
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr "Заместен"
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr "Неуспял"
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr "две"
 +
@@ -6739,7 +6870,7 @@ index 0000000..5c97b5c
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -6747,542 +6878,542 @@ index 0000000..5c97b5c
 +"to exit.\n"
 +msgstr "\n Свалянето е спряно, %sпрекъснете (ctrl-c) отново%s в рамките на %s%s%s секунди\nза изход.\n"
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr "прекъсване от потребителя"
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr "Всичко"
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr "I"
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr "O"
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr "E"
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr "R"
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr "D"
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr "U"
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr "<незададено>"
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr "Система"
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr "Пропускам добавената транзакция %d към %d, понеже я припокрива"
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr "Няма транзакции"
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr "Даден е грешен пакет(и) или ID на транзакция"
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr "Команден ред"
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr "Вход на потребител"
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr "ID"
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr "Дата и час"
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr "Действие(я)"
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr "Променен"
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr "Не е даден ID на транзакция"
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr "Даден е грешен ID на транзакция"
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr "Не е намерен дадения ID на транзакция"
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr "Намерени са повече от един ID на транзакция!"
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr "Не е даден пакет или ID на транзакция"
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr "Върнат към предишна версия"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr "По-стар"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr "Никога"
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr "ID на транзакция:"
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr "Начален час     :"
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr "Начало на rpmdb:"
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr "(%u секунди)"
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr "(%u минути)"
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr "(%u часа)"
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr "(%u дни)"
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr "Краен час       :"
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr "Край на rpmdb  :"
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr "Потребител     :"
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr "Върнат код     :"
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr "Прекратен"
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr "Проблеми:"
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr "Неуспех:"
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr "Успех"
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr "Команден ред   :"
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr "Записана допълнителна неподразбираща се информация: %d"
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr "Транзакцията осъществена с:"
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr "Променени пакети:"
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr "Пропуснати пакети:"
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr "Rpmdb проблеми:"
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr "Резултат от скрипта:"
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr "Грешки:"
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr "Инсталиране зависимости"
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr "Замествам излязъл от употреба"
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr "Изтрий"
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr "Обнови"
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr "Време"
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr "Последния ден"
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr "Последната седмица"
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr "Последните 2 седмици"
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr "Последните 3 месеца"
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr "Последните 6 месеца"
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr "Последната година"
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr "Преди повече от година"
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr "Транзакция %s не е намерена"
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr "Транзакция с ID:"
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr "Налична допълнителна историческа информация:"
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr "%s: Няма намерени допълнителни данни с това име"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Пакет          :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Състояние      :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Големина       :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Създаден на хост:"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Създаден на    :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Опаковал       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Доставчик     :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Лиценз         :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "RPM източник  :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Час на подаване:"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Подал          :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Причина        :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "От хранилище   :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Инсталиран от   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Променен от    :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr "инсталиран"
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr "обновление"
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr "изтрит"
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr "преинсталиран"
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr "връщане към предишна версия"
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr "заместващ"
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr "обновен"
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr "излязъл от употреба"
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr "---> Пакет %s.%s %s:%s-%s ще е %s"
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr "--> Извършвам проверка на транзакцията"
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr "--> Рестартирам определянето на зависимости с новите промени."
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr "--> Завърших определянето на зависимости"
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr "--> Обработвам зависимости: %s за пакет: %s"
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
-+msgstr "---> Запазвам пакет: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr "--> Неудовлетворена зависимост: %s"
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr "Пакет: %s"
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr "\n    Изисква: %s"
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr "\n    %s: %s (%s)"
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr "\n        %s"
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr "\n        Не е намерено"
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr "Обновен от"
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr "Върнат към предишна версия от"
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr "Заместен от"
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr "Наличен"
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr "--> Обработка на конфликт: %s е в конфликт с %s"
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr "--> Окомплектовам транзакцията с избраните пакети. Моля изчакайте."
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr "---> Свалям заглавната част на %s за включване в комплекта на транзакцията."
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Проверка"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr "Работещ"
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr "Спящ"
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr "Непрекъсваем"
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr "Зомби"
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr "Трасиран/Спрян"
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr "Неизвестно"
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr "  Другото приложение е: PackageKit"
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr "  Другото приложение е: %s"
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr "    Памет : %5s RSS (%5sB VSZ)"
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr "    Стартиран: %s - преди %s"
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr "    Състояние  : %s, pid: %d"
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr "\n\nИзход поради прекъсване от потребителя"
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr "\n\nИзход поради прекъсната последователност"
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -7290,47 +7421,41 @@ index 0000000..5c97b5c
 +"%s"
 +msgstr "\n\n%s"
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr "Друго приложение ползва и е заключило yum; излизам - конфигурирано е exit_on_lock"
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr "PluginExit грешка: %s"
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr "Yum грешка: %s"
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr "Грешка: %s"
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr " Може да пробвате с --skip-broken за да заобиколите проблема"
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr " Може да пробвате като стартирате: rpm -Va --nofiles --nodigest"
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr "Непозната грешка: Код на изхода: %d:"
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr "\nЗависимостите са удовлетворени"
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr "Завърших!"
 +
@@ -7369,518 +7494,564 @@ index 0000000..5c97b5c
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr "Грешка: Нужно е да се подаде списък пакети на %s"
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr "Грешка: Нужен е съвпадащ елемент"
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr "Грешка: Нужна е група или списък групи"
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr "Грешка: почистването изисква опция: %s"
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Грешка: невалиден аргумент за почистването: %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr "Няма аргумент към обвивката"
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr "Име на файл, подаден към обвивката: %s"
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr "Файлът %s, даден като аргумент към командата не съществува."
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr "Грешка: даден е повече от един файл като аргумент към командата."
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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 "Няма разрешени хранилища.\n Изпълнете \"yum repolist all\" за да видите хранилищата, които имате.\n Може да разрешите хранилища чрез yum-config-manager --enable <хран>"
 +
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr "ПАКЕТ..."
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr "Инсталира пакет или пакети на Вашата система"
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr "Подготовка на инсталиращия процес"
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr "[ПАКЕТ...]"
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr "Обновява пакет или пакети на Вашата система"
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr "Подготовка на обновяващия процес"
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr "Синхронизира инсталираните пакети с последните налични версии"
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr "Подготовка на процеса за синхронизиране на дистрибуцията "
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr "Показва детайли за пакет или група от пакети"
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr "Инсталирани пакети"
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr "Налични пакети"
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr "Допълнителни пакети"
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr "Обновени пакети"
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr "Излезли от употреба пакети"
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr "Скоро добавени пакети"
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr "Няма регистрирани съвпадащи пакети"
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr "Списък на пакети или групи от пакети"
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr "Премахва пакет или пакети от Вашата система"
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr "Подготовка процеса на премахване"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Показва или използва информацията за групите"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr "Подготовка за обработка на групата"
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr "Няма група, върху която да стартирам командата"
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Невалидна групова подкоманда, ползвайте: %s."
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Не е инсталиран файл с групи."
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Нямате достъп до базата данни на групите."
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr "Генериране на кеш с метаданни"
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr "Създаване на файлове в кеша за всички файлове с метаданни."
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr "Може да отнеме време, зависещо от бързодействието на този компютър"
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr "Кешът с метаданни е създаден"
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr "Премахни кешираните данни"
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr "Търси кой от пакетите предоставя дадената стойност"
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr "Проверка за налични обновявания на пакети"
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr "Търси детайли за пакета за дадения низ"
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr "Търсене в пакети: "
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr "Обновява пакети, имайки предвид излезлите от употреба"
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr "Подготовка процеса на надграждане"
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr "Инсталира локален пакет"
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr "Подготовка обработката на локалния пакет"
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr "Търсене на зависимости в пакетите:"
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr "Стартира интерактивен режим на yum"
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr "Настройка на Yum Shell"
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr "Показва списък на зависимостите на пакетите"
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr "Търсене на зависимости: "
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr "Показва конфигурираните хранилища на софтуер"
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr "разрешен"
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr "забранен"
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr "Хранилище-id      : "
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr "Хранилище-име     : "
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr "Хранилище-статус  : "
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr "Хранилище-revision: "
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr "Хранилище-етикети : "
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr "Хранилище-етикети на дистр.: "
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr "Хранилище-обновено: "
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr "Хранилище-пакети   : "
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr "Хранилище-обем    : "
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr "Хранилище-основен url : "
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr "Хранилище-мета връзка: "
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr "  Обновено   : "
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr "Хранилище-огледала: "
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr "Никога (последен: %s)"
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr "Моментен (последен: %s)"
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr "%s секунда(и) (последен: %s)"
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr "Хранилище-изтича  : "
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr "Хранилище-изключва: "
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr "Хранилище-включва : "
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr "Хранилище-изключен: "
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr "Файл на хранилище: "
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr "хранилище id"
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr "статус"
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr "име на хранилище"
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr "Показва помощно за употребата съобщение"
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr "Няма налична за %s помощ"
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr "\n\nсиноними: "
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr "\n\nсиноним: "
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr "Подготовка на преинсталиращия процес"
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr "преинсталира пакет"
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr "Подготовка процеса на връщане към предишна версия"
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr "връща предишна версия на пакет"
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr "Показва версия за машината и/или наличните хранилища."
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr " Yum версия групи:"
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr " Група   :"
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr " Пакети:"
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr "Инсталиран:"
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr "Група-Инсталирана:"
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr "Наличен:"
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr "Група-Налична:"
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr "Покажи или използвай историята на транзакциите"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Транзакции:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Начален час  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Час на завършване:"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Количество      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm база данни :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum база данни :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr "Невалидна подкоманда за история, ползвайте: %s."
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr "Вие нямате достъп до базата данни с историята."
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr "Проверява за проблеми в rpmdb"
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr "зарежда записана транзакция от файл с име"
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr "Не е зададен файла със записана транзакция."
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr "зареждам транзакция от %s"
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr "Транзакцията е заредена от %s с %s члена"
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr " Yum проверките не успяха: %s"
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Нямам права за четене/изпълнение в текущата директория, местя се в /"
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Нямам getcwd() достъп в текущата директория, местя се в /"
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "Не мога да създам заключващ файл; излизам"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Друго приложение ползва и държи заключен yum; чакам го да завърши..."
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr "Определяне на зависимостите"
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr "Транзакцията Ви беше записана, стартирайте я с:\n yum load-transaction %s"
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -7910,7 +8081,7 @@ index 0000000..5c97b5c
 +msgid "Member: %s"
 +msgstr "Част: %s"
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr "%s конвертиран за инсталиране"
@@ -7967,326 +8138,380 @@ index 0000000..5c97b5c
 +msgid "Trying to update %s to resolve dep"
 +msgstr "Опитвам да обновя %s за да удовлетворя зависимост"
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr "Не е намерен обновяващ път за %s. Неуспех!"
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr "TSINFO: %s пакет, изискващ %s, е маркиран за изтриване"
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr "TSINFO: Замествам %s с %s за да задоволя зависимост."
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr "TSINFO: Обновявам %s за да задоволя зависимост."
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr "Не мога да намеря път за обновяване за зависимост за: %s"
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr "Бързо подбран %s, задоволяващ %s"
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr "%s е сред осигуряващите пакети и вече е инсталиран, премахвам го."
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr "Потенциално удовлетворяващият пакет %s има по-нова инстанция в ts."
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr "Потенциално удовлетворяващият пакет %s има по-нова инсталирана инстанция."
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr "%s е вече в ts, пропускам го"
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr "TSINFO: Маркирам %s като обновление за %s"
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr "TSINFO: Маркирам %s като инсталиращ за %s"
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr "Успех - празна транзакция"
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr "Рестартиране на цикъла"
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr "Завършване процеса за определяне на зависимости"
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr "Успех - зависимостите са удовлетворени"
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr "Проверка зависимостите за %s"
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr "търсене на %s като изискван от %s"
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr "Стартиране compare_providers() за %s"
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr "по-добър arch в po %s"
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr "%s замества %s"
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr "archdist сравни %s с %s на %s\n  Победител: %s"
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr "общ rpm източник %s и %s"
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr "основният пакет %s е инсталиран за %s"
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr "общ префикс на %s между %s и %s"
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr "предоставя vercmp: %s"
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr " Победител: %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "изисква минимум: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr " Губещ(с %d): %s"
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr "Най-добър ред: %s"
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr "doConfigSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr "Хранилище %r: Грешка при разбор на конфигурацията: %s"
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr "В конфигурацията липсва име на хранилище %r, ползвам id"
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr "плъгините вече са инициализирани"
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr "doRpmDBSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr "Чета локалната RPMDB"
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr "doRepoSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr "doSackSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr "Задаване на сакове пакети"
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr "в repo обекта за хранилище %s липсва метод _resetSack\n"
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr "ето защо, това хранилище не може да бъде ресетнато.\n"
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr "doUpdateSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr "Изграждам обекта с обновявания"
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr "doGroupSetup() ще бъде премахнат в бъдеща версия на Yum.\n"
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr "Вземам метаданните на групата"
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr "Добавям файла на групата от хранилище: %s"
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr "Не успя добавянето на файла на групата за хранилище: %s - %s"
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr "Няма налични групи в което и да е хранилище"
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr "Вземам pkgtags метаданните"
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr "Добавям тагове от хранилище: %s"
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr "Не успя добавянето тагове на пакети за хранилище: %s - %s"
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr "Импортирам допълнителна информация за списъка файлове"
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr "Програмата %s%s%s е намерена в пакета yum-utils."
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr "Останаха недовършени транзакции. Помислете дали да не стартирате първо yum-complete-transaction за да ги довършите."
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr "--> Търся ненужни останали зависимости"
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
 +msgstr "Защитени multilib версии: %s != %s"
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr "Опитвам да премахна \"%s\", който е защитен"
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr "\nПропуснати са пакети поради проблеми в зависимости:"
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr "    %s от %s"
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr "** Намерени %d предварително съществуващи rpmdb проблема, 'yum check' показа следното:"
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr "Внимание: RPMDB е променена извън yum."
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr "липсват изисквани"
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr "инсталиран конфликт"
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr "Внимание: scriptlet или други нефатални грешки възникнаха по време на транзакцията."
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr "Транзакцията не можа да се стартира:"
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr "Не можа да се стартира транзакцията"
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, 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:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr "%s се предполагаше да е инсталиран, но не е!"
@@ -8296,462 +8521,482 @@ index 0000000..5c97b5c
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr "%s се предполагаше да е премахнат, но не е!"
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr "Съществува lock %s: работи друго копие с pid %s."
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr "Не мога да създам lock на %s: %s "
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Не мога да отворя lock %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Не може да се провери дали PID %s е активен"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, 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:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr "Не мога да изчисля контролна сума"
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr "Контролната сума не съвпада с тази на пакета"
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr "провали се контролната сума на пакета, но кеширането е разрешено за %s"
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr "използвам локално копие на %s"
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr ""
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr "Заглавната част не е пълна."
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr "Заглавната част не е в локалния кеш, а сме в режим caching-only. Не мога да сваля %s"
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr "Публичният ключ за %s не е инсталиран"
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr "Проблем при отварянето на пакет %s"
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr "Публичният ключ за %s не е доверен"
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr "Пакетът %s не е подписан"
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr "Не мога да премахна %s"
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr "%s е премахнат"
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr "Не мога да премахна %s файл %s"
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr "%s файл %s е премахнат"
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
 +msgstr[0] "%d %s премахнат файл"
 +msgstr[1] "%d %s премахнати файла"
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr "Повече от един идентично съвпадащ в сака за %s"
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr "Нищо не съвпада с %s.%s %s:%s-%s от обновяването"
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr "searchPackages() ще бъде премахнат в бъдеща версия на Yum.                      Вместо това, ползвайте searchGenerator(). \n"
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
 +msgstr[0] "Търся %d пакет"
 +msgstr[1] "Търся %d пакета"
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr "търся пакет %s"
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr "търсене в списъка файлове"
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr "търсене в предоставяно съдържание"
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr "Няма налични данни за групата за конфигурираните хранилища"
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr "Не съществува група с име %s"
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr "пакет %s не беше маркиран в група %s"
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Пропускам пакет %s от група %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr "Добавяне на пакет %s от група %s"
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr "Няма наличен пакет за инсталиране с име %s"
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
-+msgstr "Внимание: Групата %s не съдържа никакви пакети."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr "Групата %s съдържа %u условни пакета, които могат да бъдат инсталирани."
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr "Кортежът на пакета %s не може да бъде намерен в сака на пакета"
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr "Кортежът на пакета %s не може да бъде намерен в rpmdb"
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr "Невалиден флаг за версия от: %s"
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr "Не беше намерен пакет за %s"
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr "Package Object не беше package object instance"
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr "Нищо не е определено за инсталиране"
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr "Проверявам за virtual provide или file-provide за %s"
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr "Пакет %s е инсталиран и недостъпен"
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr "Няма пакет(и) достъпни за инсталиране"
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr "Пакет: %s  - вече е в комплекта на транзакцията"
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr "Пакетът %s е излязъл от употреба и заместен от %s, който вече е инсталиран"
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr "Пакетът %s е заместен от %s, но заместващият пакет не предоставя изискваното"
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr "Излезлият от употреба пакет %s е заместен от %s, вместо него пробвам да инсталирам %s"
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr "Пакетът %s е вече инсталиран и е последна версия"
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr "Съвпадащият пакет %s е вече инсталиран. Проверявам за обновления."
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr "Обновявам всичко"
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Не обновявам пакет, излязъл вече от употреба: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Няма съвпадение за аргумент: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Няма съвпадащ пакет за надграждане: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Пакетът вече е излязъл от употреба: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr "Не обновявам пакет, излязъл от употреба: %s"
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr "Не обновявам вече обновен пакет: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Няма съвпадащ пакет за премахване: %s"
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr "Пропускам работещото ядро: %s"
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr "Премахвам %s от транзакцията"
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr "Не мога да отворя: %s. Пропускам го."
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr "Проверявам %s: %s"
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr "Не мога да инсталирам локално deltarpm: %s. Пропускам го."
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr "Не мога да добавя пакета %s към транзакцията. Несъвместима архитектура: %s"
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr "Не мога да инсталирам пакета %s. Излязъл е от употреба и е заместен от пакета %s"
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr "Пакетът %s не е инсталиран, не мога да го обновя. Стартирайте yum install за да го инсталирате."
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, 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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr "Изключвам %s"
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr "Маркирам %s за инсталиране"
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr "Маркирам %s като обновление към %s"
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr "%s: не обнови инсталиран пакет."
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr "Не мога да отворя файл: %s. Пропускам го."
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr "Проблем при преинсталиране: няма съвпадащ пакет за премахване"
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr "Проблем при преинсталиране: няма съвпадащ пакет %s за инсталиране"
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr "Няма наличен пакет(и) за връщане към предишна версия"
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr "На пакета %s е позволено многократно инсталиране, пропускам го"
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr "Няма съвпадение за наличен пакет: %s"
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr "Налично е само надграждане на пакет: %s"
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr "Неуспех при връщане към предишна версия на: %s"
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Неуспешно надграждане: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr "Извличане на ключ от %s"
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +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:5306
++#: ../yum/__init__.py:5766
 +#, 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:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr "GPG ключовата сигнатура е проверена чрез CA ключ(ове)"
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr "Невалиден GPG ключ от %s: %s"
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr "Разборът на GPG ключ не успя: ключът няма стойност %s"
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -8761,7 +9006,7 @@ index 0000000..5c97b5c
 +" From       : %s"
 +msgstr "Импортирам %s ключ 0x%s:\n Потреб.id   : \"%s\"\n Пръстов отп.: %s\n Пакет       : %s (%s)\n От          : %s"
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -8770,7 +9015,7 @@ index 0000000..5c97b5c
 +" From       : %s"
 +msgstr "Импортирам %s ключ 0x%s:\n Потреб.id   : \"%s\"\n Пръстов отп.: %s\n От        : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -8780,44 +9025,44 @@ index 0000000..5c97b5c
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Проблемният пакет е: %s\n GPG ключовете са конфигурирани така: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr "GPG ключът на %s (0x%s) е вече инсталиран"
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr "Импортирането на ключ не успя (код %d)"
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr "Ключът е успешно импортиран"
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr "Не инсталирай никакви ключове"
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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 ключовете, описани за хранилището \"%s\" са вече инсталирани, но не са коректни за този пакет.\nПроверете дали за това хранилище са конфигурирани коректните URL-и на ключове."
 +
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr "Импортирането на ключ(ове) не помогна, грешен ключ(ове)?"
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Не"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Да"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -8828,123 +9073,120 @@ index 0000000..5c97b5c
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA ключ: %s\n Проблемното хранилище е: %s\n GPG ключовете са конфигурирани така: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr "GPG ключ на %s (0x%s) е вече импортиран"
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Импортирането на ключ %s не успя"
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr "Не инсталирай никакви ключове за хранилище %s"
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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 "GPG ключовете, описани за хранилището \"%s\" са вече инсталирани, но не са коректни.\nПроверете дали за това хранилище са конфигурирани коректните URL-и на ключове."
 +
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr "Не мога да намеря подходящ огледален сървър."
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr "Възникнаха грешки при свалянето на пакети."
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr "Моля, докладвайте тази грешка на %s"
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr "Грешки от теста на транзакцията: "
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr "Не мога да задам cachedir: %s"
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr "Зависимостите не са решени. Няма да запиша нерешена транзакция."
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr "Не мога да запиша транзакционния файл %s: %s"
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr "Не мога да достъпя/прочета записана транзакция %s : %s"
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr "rpmdb версията не съвпада с версията на записаната транзакция, "
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
-+msgstr " игнорирам, както е зададено."
-+
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
-+msgstr " прекратявам."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
 +
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr "не мога да намеря tsflags или те не са целочислени."
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr "Намерен е txmbr в непознато текущо състояние: %s"
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr "Не мога да намеря txmbr: %s в състояние %s"
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr "Не мога да намеря txmbr: %s от произход: %s"
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr "Липсват връзки или членове на транзакцията, или тя е била променена,"
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr " игнорирам, както е зададено. Трябва отново определяне на зависимости!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s вече беше посетен и не може да бъде премахнат."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Изследване версиите на зависимости на %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s има зависимост на версия %s, която е инсталирана от потребителя."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s няма инсталирани от потребителя зависимости на версии."
@@ -9038,7 +9280,7 @@ index 0000000..5c97b5c
 +msgid "Verify: %u/%u: %s"
 +msgstr "Провери: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -9046,6 +9288,10 @@ index 0000000..5c97b5c
 +"    * needed %s"
 +msgstr "Недостатъчно пространство в директорията за сваляне %s\n    * свободно   %s\n    * необходимо %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -9075,10 +9321,10 @@ index 0000000..5c97b5c
 +msgid "Error opening rpm %s - error %s"
 +msgstr "Грешка при отваряне на rpm %s - грешка %s"
 diff --git a/po/bn_IN.po b/po/bn_IN.po
-index f1f232a..daa4448 100644
+index f1f232a..66f749c 100644
 --- a/po/bn_IN.po
 +++ b/po/bn_IN.po
-@@ -2,427 +2,455 @@
+@@ -2,427 +2,506 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -9092,8 +9338,8 @@ index f1f232a..daa4448 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Bengali (India) (http://www.transifex.net/projects/p/yum/team/bn_IN/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/yum/language/bn_IN/)\n"
  "MIME-Version: 1.0\n"
@@ -9104,7 +9350,7 @@ index f1f232a..daa4448 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -9115,31 +9361,31 @@ index f1f232a..daa4448 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -9166,7 +9412,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -9176,69 +9422,69 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -9249,121 +9495,147 @@ index f1f232a..daa4448 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -9373,12 +9645,12 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -9388,12 +9660,12 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -9403,14 +9675,14 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -9418,13 +9690,13 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -9432,7 +9704,7 @@ index f1f232a..daa4448 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -9440,58 +9712,58 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -9500,115 +9772,140 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, 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:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -9618,392 +9915,400 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +458,452 @@ msgid ""
+@@ -430,438 +509,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -10011,165 +10316,189 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -10177,387 +10506,387 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +911,58 @@ msgid ""
+@@ -869,57 +994,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +970,7 @@ msgstr ""
+@@ -927,7 +1053,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +978,542 @@ msgid ""
+@@ -935,484 +1061,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -10566,17 +10895,17 @@ index f1f232a..daa4448 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -10589,224 +10918,225 @@ index f1f232a..daa4448 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -10814,7 +11144,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -10822,7 +11152,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -10830,7 +11160,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -10838,38 +11168,38 @@ index f1f232a..daa4448 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -10877,70 +11207,70 @@ index f1f232a..daa4448 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -10948,7 +11278,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -10956,68 +11286,67 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1521,47 @@ msgid ""
+@@ -1420,47 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1573,7 @@ msgstr ""
+@@ -1472,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -11026,7 +11355,7 @@ index f1f232a..daa4448 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1590,488 @@ msgid ""
+@@ -1489,555 +1667,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -11043,51 +11372,71 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -11095,200 +11444,200 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -11297,183 +11646,183 @@ index f1f232a..daa4448 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -11481,7 +11830,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -11489,180 +11838,210 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -11671,7 +12050,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -11707,7 +12086,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -11764,7 +12143,7 @@ index f1f232a..daa4448 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2193,1069 @@ msgstr ""
+@@ -2045,991 +2316,1140 @@ 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 :(
@@ -11775,130 +12154,140 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -11906,254 +12295,298 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -12161,7 +12594,7 @@ index f1f232a..daa4448 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -12172,14 +12605,14 @@ index f1f232a..daa4448 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -12187,7 +12620,7 @@ index f1f232a..daa4448 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -12195,7 +12628,7 @@ index f1f232a..daa4448 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -12204,14 +12637,14 @@ index f1f232a..daa4448 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -12219,23 +12652,23 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -12246,70 +12679,73 @@ index f1f232a..daa4448 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -12319,26 +12755,26 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -12348,111 +12784,127 @@ index f1f232a..daa4448 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -12464,30 +12916,30 @@ index f1f232a..daa4448 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -12495,123 +12947,123 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -12619,7 +13071,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -12627,118 +13079,118 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -12752,7 +13204,7 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -12761,9 +13213,10 @@ index f1f232a..daa4448 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -12771,32 +13224,31 @@ index f1f232a..daa4448 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -12804,20 +13256,20 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -12828,26 +13280,26 @@ index f1f232a..daa4448 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -12855,117 +13307,121 @@ index f1f232a..daa4448 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -13065,7 +13521,7 @@ index f1f232a..daa4448 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3264,19 @@ msgstr ""
+@@ -3038,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -13074,7 +13530,7 @@ index f1f232a..daa4448 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -13082,20 +13538,24 @@ index f1f232a..daa4448 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3305,3 @@ msgstr ""
+@@ -3066,5 +3503,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/ca.po b/po/ca.po
-index cca37b7..13d8d5c 100644
+index cca37b7..52f0094 100644
 --- a/po/ca.po
 +++ b/po/ca.po
-@@ -2,944 +2,967 @@
+@@ -2,944 +2,1050 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -13108,8 +13568,8 @@ index cca37b7..13d8d5c 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -13120,7 +13580,7 @@ index cca37b7..13d8d5c 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Actualitzant"
  
@@ -13131,31 +13591,31 @@ index cca37b7..13d8d5c 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Actualitzat"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Instal·lat"
  
@@ -13182,7 +13642,7 @@ index cca37b7..13d8d5c 100644
  msgstr "Suprimit: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Suprimint"
  
@@ -13192,69 +13652,69 @@ index cca37b7..13d8d5c 100644
  msgstr "Neteja"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "L'ordre «%s» ja està definida"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Configurant repositoris"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "S'estan llegint les metadades de repositoris des de fitxers locals"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Error de configuració: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Error d'opcions: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Instal·lat: %s-%s a %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Muntat    : %s a %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Pujat: %s a %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Cal que doneu alguna ordre"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Requeriments de disc:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -13265,86 +13725,106 @@ index cca37b7..13d8d5c 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "Resum d'errors\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
+ msgstr ""
 -"Resum d'errors\n"
 -"-------------\n"
-+msgstr "Resum d'errors\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
++msgstr "S'ha intentat executar la transacció però no hi ha cap tasca a fer. S'està sortint."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
 -"S'ha intentat executar la transacció però no hi ha cap tasca a fer. S'està "
 -"sortint."
-+msgstr "S'ha intentat executar la transacció però no hi ha cap tasca a fer. S'està sortint."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "S'està sortint de l'ordre de l'usuari"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "S'estan baixant els següents paquets:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  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:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr "S'ha produït un error. Necessiteu actualitzar el gestor rpm:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "Cal actualitzar l'RPM"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Siusplau, informeu d'aquest error a %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "S'està executant la transacció de prova"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "S'ha produït un error en la transacció de prova:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "La transacció de prova ha acabat amb èxit"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "S'està executant la transacció"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -13354,18 +13834,18 @@ index cca37b7..13d8d5c 100644
 +msgstr "No s'importaran automàticament les claus en una execució desatesa.\nFeu servir \"-y\" per a importar les claus."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Potser volíeu dir: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
  msgstr "Paquets %s%s%s disponibles, però no instal·lats."
  
 -#: ../cli.py:689 ../cli.py:722 ../cli.py:908
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "El paquet %s%s%s no està disponible."
@@ -13373,22 +13853,27 @@ index cca37b7..13d8d5c 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paquets a instal·lar"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Res a fer"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paquets marcats per a actualitzar"
@@ -13398,12 +13883,12 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "No hi ha cap paquet marcat per a actualitzar"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -13413,12 +13898,12 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paquets marcats per a suprimir"
@@ -13428,14 +13913,14 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -13443,13 +13928,13 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (des de %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "El paquet instal·lat %s%s%s%s no està disponible."
@@ -13457,7 +13942,7 @@ index cca37b7..13d8d5c 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paquets a reinstal·lar"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -13465,58 +13950,58 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "No s'ha proporcionat cap paquet"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paquets a instal·lar"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Avís: no s'ha trobat cap coincidència per a: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "No s'ha trobat cap coincidència"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "No s'ha trobat cap paquet per a %s"
@@ -13526,118 +14011,144 @@ index cca37b7..13d8d5c 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "S'està netejant tot"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "S'estan netejant les capçaleres"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "S'estan netejant els paquets"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "S'estan netejant les metadades xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "S'està netejant la memòria cau de la base de dades"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "S'està netejant la memòria cau de metadades que han vençut"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "S'estan netejant els connectors"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Grups instal·lats:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Grups disponibles:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Fet"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Avís: El grup %s no existeix."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"No hi ha cap paquet disponible per a instal·lar o actualitzar en els grups "
 -"sol·licitats"
 +msgstr "No hi ha cap paquet disponible per a instal·lar o actualitzar en els grups sol·licitats"
++
++#: ../cli.py:1885
++#, python-format
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, python-format
 -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] ""
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "No existeix cap grup anomenat %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "No hi ha cap paquet a suprimir dels grups"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d paquets a suprimir"
@@ -13647,20 +14158,20 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "El paquet %s ja està instal·lat, s'ometrà"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
  msgstr "S'està descartant el paquet no comparable %s.%s"
  
  #. we've not got any installed that match n or n+a
 -#: ../cli.py:1423
-+#: ../cli.py:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -13669,18 +14180,18 @@ index cca37b7..13d8d5c 100644
 +msgstr "No hi ha cap altre %s instal·lat, s'afegeix a la llista per a una possible instal·lació"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opcions del connector"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Error en la línia d'ordres: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -13693,357 +14204,365 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n\n%s: l'opció %s necessita un argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color pren un valor d'entre: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "mostra el missatge d'ajuda i surt"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "sigues tolerant amb els errors"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "ubicació del fitxer de configuració"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "temps màxim d'espera d'ordres"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nivell de sortida de depuració"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "mostra duplicats, en repositoris, en les ordres per llistar i cercar"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "nivell de sortida d'error"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "operació silenciosa"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "operació descriptiva"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "respon sí a totes les preguntes"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "mostra la versió del Yum i surt"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "estableix l'arrel de la instal·lació"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"habilita un o més repositoris (es permeten caràcters de reemplaçament)"
 +msgstr "habilita un o més repositoris (es permeten caràcters de reemplaçament)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"deshabilita un o més repositoris (es permeten caràcters de reemplaçament)"
 +msgstr "deshabilita un o més repositoris (es permeten caràcters de reemplaçament)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "exclou els paquets per nom o expressió regular del glob"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "habilita el processament d'obsolets durant les actualitzacions"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "inhabilita els connectors de Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "inhabilita la comprobació de signatures gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "inhabilita els connectors pel seu nom"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "habilita els connectors pel seu nom"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "omet paquets amb problemes de resolució de dependències"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "controla sempre que s'usi color"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Gen"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Abr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mai"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Ago"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Set"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Oct"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Des"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "S'està intentant un altre servidor rèplica."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repo        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Descripció  : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "s"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "sí"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "És correcte [s/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -14054,165 +14573,189 @@ index cca37b7..13d8d5c 100644
 +msgstr "\nGrup: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Id de Grup: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Descripció: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Paquets obligatoris:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Paquets per defecte:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Paquets opcionals:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Paquets condicionals:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paquet: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  No hi ha dependències per a aquest paquet"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  dependència: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Dependència insatisfeta"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Coincidències amb:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Llicència   : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Fitxer      : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Altre       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Mida total: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Mida total de la descàrrega: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Tornant a instal·lar"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Desfent l'actualització"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "S'està instal·lant per dependències"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "S'està actualitzant degut a les dependències"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "S'està suprimint degut a les dependències"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Ignorat degut a problemes de dependències:"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paquet"
 +msgid_plural "Packages"
@@ -14220,33 +14763,33 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] "Paquet"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arq"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versió"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repositori"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Mida"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -14261,86 +14804,86 @@ index cca37b7..13d8d5c 100644
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Suprimit"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dependència suprimida"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dependència instal·lada"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dependència actualitzada"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Reemplaçat"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Ha fallat"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dos"
  
-@@ -947,559 +970,598 @@ msgstr "dos"
+@@ -947,559 +1053,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -14353,262 +14896,262 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n S'ha cancel·lat la descàrrega actual, %sinterromp (crtl-c) de nou%s en %s%s%s segons\nper a sortir.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "interrupció de l'usuari"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -14617,17 +15160,17 @@ index cca37b7..13d8d5c 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -14640,226 +15183,227 @@ index cca37b7..13d8d5c 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "instal·lat"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "suprimit"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "actualitzat"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "obsolet"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> S'està executant la transacció de prova"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Tornant a calcular la resolució de dependències amb els nous canvis."
 +msgstr "--> Tornant a calcular la resolució de dependències amb els nous canvis."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Ha finalitzat la resolució de dependències"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> S'està processant la dependència %s per al paquet: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Dependència no resolta: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -14867,7 +15411,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -14875,7 +15419,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -14883,7 +15427,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -14891,33 +15435,33 @@ index cca37b7..13d8d5c 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, 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:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> S'està poblant la transacció amb els paquets sel·leccionats. Si us plau,"
@@ -14925,80 +15469,80 @@ index cca37b7..13d8d5c 100644
 +msgstr "--> S'està poblant la transacció amb els paquets sel·leccionats. Si us plau, espereu."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, 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."
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
  msgstr ""
 -"---> S'està baixant la capçalera per a %s per a empaquetar dins de la "
 -"transacció de prova."
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "S'està executant"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Està dormint"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Traçat/aturat"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Desconegut"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  L'altre aplicatiu és: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  L'altre aplicatiu és: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memòria : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Iniciat: fa %s-%s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Estat  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -15010,7 +15554,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n\nS'està sortint per la cancel·lació de l'usuari"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -15022,7 +15566,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n\nS'està sortint en trobar la canonada trencada"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -15032,51 +15576,50 @@ index cca37b7..13d8d5c 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Error: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Errors desconeguts: Codi de sortida: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -15086,11 +15629,11 @@ index cca37b7..13d8d5c 100644
 +msgstr "\nDependències resoltes"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Completat!"
  
-@@ -1511,7 +1573,7 @@ msgstr ""
+@@ -1511,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Heu de ser root per a executar aquesta ordre."
  
@@ -15099,7 +15642,7 @@ index cca37b7..13d8d5c 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1526,475 +1588,490 @@ msgid ""
+@@ -1526,587 +1665,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -15132,53 +15675,73 @@ index cca37b7..13d8d5c 100644
  msgstr "Error: es necessita passar una llista de paquets a %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Error: es necessita algun element per comparar"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  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:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Error: la neteja requereix una opció: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Error: argument invàlid per a la neteja: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "No hi ha arguments per a l'intèrpret d'ordres"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, 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:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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."
 +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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -15186,112 +15749,112 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAQUET..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  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:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "S'està preparant el procés d'instal·lació"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAQUET...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  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:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "S'està preparant el procés d'actualització"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Paquets instal·lats"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Paquets disponibles"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Paquets extra"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Paquets actualitzats"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Paquets obsolets"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Paquets recentment afegits"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "No hi ha paquets coincidents per llistar"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Llista un paquet o un grup de paquets"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Suprimeix un o més paquets del vostre sistema"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "S'està preparant el procés de supressió"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "S'està preparant el procés de grup"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "No hi ha cap grup on executar l'ordre"
  
@@ -15302,7 +15865,7 @@ index cca37b7..13d8d5c 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -15310,83 +15873,83 @@ index cca37b7..13d8d5c 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Mostra detalls sobre un grup de paquets"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Genera les metadades de la memòria cau"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  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."
 +msgstr "S'estan fent els fitxers de memòria cau per a tots els fitxers de metadades."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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"
 +msgstr "Això pot trigar una estona depenent de la velocitat d'aquest ordinador"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "S'han creat les metadades per a la memòria cau"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "S'han suprimit les dades de la memòria cau"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Troba quin paquet proporciona el valor donat"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Comprova si hi ha actualitzacions de paquets disponibles"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Busca detalls del paquet per la cadena donada"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "S'estan buscant paquets: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Actualitza paquets tenint en compte els obsolets"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "S'està preparant el procés d'actualització"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instal·la un RPM local"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "S'està configurant el procés local de paquets"
  
@@ -15395,183 +15958,183 @@ index cca37b7..13d8d5c 100644
 -msgstr "Determina quin paquet satisfà la dependència donada"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "S'estan buscant paquets per a la dependència:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Executa un intèrpret d'ordres interactiu de yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "S'està preparant l'intèrpret d'ordres de yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Llista les dependències d'un paquet"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "S'estan trobant dependències: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Mostra els repositoris de programari configurats"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "habilitat"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "deshabilitat"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Id-repo           : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Nom-repo          : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Estat-repo        : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-revisió      : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-etiquetes    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-etiq-dist    : "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo-actualitzat  : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Paquets-repo      : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Mida-repo         : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "URL-base-repo     : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metaenllaç   : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Actualitzat     : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Miralls-repo      : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Mai (últim: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Temps d'instal·lació (últim: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s segons (últim: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Venç-repo   : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-exclou : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-inclou : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "id repo"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "estat"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nom repo"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Mostra un missatge d'ajuda d'ús"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "No hi ha ajuda disponible per a %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -15583,7 +16146,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n\nàlies: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -15595,182 +16158,212 @@ index cca37b7..13d8d5c 100644
 +msgstr "\n\nàlies: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "S'està preparant el procés de reinstal·lació"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "reinstal·la un paquet"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "S'està preparant el procés de desactualització"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "desactualitza un paquet"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Instal·lat:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Disponible:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -2005,108 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
 -"Alguna altra aplicació té el bloqueig del yum; s'està esperant a que "
 -"surti..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+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..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "S'estan resolent dependències"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -15779,7 +16372,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -15822,7 +16415,7 @@ index cca37b7..13d8d5c 100644
  msgstr "Membre: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s convertits per a instal·lar"
@@ -15881,7 +16474,7 @@ index cca37b7..13d8d5c 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Mode per al paquet que proporciona %s: %s"
-@@ -2114,1032 +2193,1069 @@ msgstr "Mode per al paquet que proporciona %s: %s"
+@@ -2114,1032 +2316,1140 @@ 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 :(
@@ -15892,19 +16485,29 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -15912,26 +16515,26 @@ index cca37b7..13d8d5c 100644
 +msgstr "TSINFO: S'està marcant com a obsolet %s amb %s per resoldre dependències."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -15940,7 +16543,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "%s es troba en els paquets proporcionats però ja es troba instal·lat, s'està suprimint."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -15948,7 +16551,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "El paquet potencial que resol dependències %s té una instància nova a ts"
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -15957,75 +16560,75 @@ index cca37b7..13d8d5c 100644
 +msgstr "El paquet potencial que resol dependències %s té una nova instància insta·lada."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Èxit - transacció buida"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "S'està recomençant el bucle"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Està acabant el procés de dependències"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Èxit - dependències resoltes"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "S'estan comprobant les dependències per a %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "millor arq en el po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s fa obsolet %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -16036,178 +16639,188 @@ index cca37b7..13d8d5c 100644
 +msgstr "archdist ha comparat %s amb %s a %s\n  Ha guanyat: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "rpm font comú %s i %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Millor ordre: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "els connectors ja estan inicialitzats"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "S'està llegint un RPMDB local"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "S'estan configurant els sacs de paquets"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "Aquest repositori no es pot reiniciar.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "S'està construint l'objecte d'actualitzacions"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "S'estan obtenint les metadades del grup"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "No hi ha cap grup disponible en cap repositori"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "S'està important informació adicional de la llista de fitxers"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -16217,24 +16830,58 @@ index cca37b7..13d8d5c 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -16244,35 +16891,35 @@ index cca37b7..13d8d5c 100644
 +msgstr "\nPaquets omesos degut a problemes de dependències:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s des de %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -16281,18 +16928,18 @@ index cca37b7..13d8d5c 100644
 +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:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "No s'ha pogut suprimir el fitxer de transaccions %s"
@@ -16300,7 +16947,7 @@ index cca37b7..13d8d5c 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "S'havia d'instal·lar %s però no s'ha realitzat!"
@@ -16311,7 +16958,7 @@ index cca37b7..13d8d5c 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "S'havia de suprimir %s però no s'ha realitzat!"
@@ -16329,32 +16976,32 @@ index cca37b7..13d8d5c 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "No s'ha pogut comprovar si el PID %s es troba actiu"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -16362,17 +17009,17 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "No s'ha pogut realitzar la suma de verificació"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "No coincideix la suma de verificació del paquet"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -16381,7 +17028,7 @@ index cca37b7..13d8d5c 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "s'està utilitzant la còpia local de %s"
@@ -16392,18 +17039,21 @@ index cca37b7..13d8d5c 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ 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:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "La capçalera no està completa."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -16413,55 +17063,55 @@ index cca37b7..13d8d5c 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Hi ha hagut un problema obrint el paquet %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "El paquet %s no està signat"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "No es pot suprimir %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "S'ha suprimit %s"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "No es pot suprimir %s fitxer %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s fitxer %s suprimit"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s fitxers suprimits"
@@ -16471,19 +17121,19 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -16493,7 +17143,7 @@ index cca37b7..13d8d5c 100644
 +msgstr "searchPackages() desapareixerà en una futura versió de Yum.                      Useu searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "S'estan buscant %d paquets"
@@ -16503,23 +17153,23 @@ index cca37b7..13d8d5c 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "s'està buscant el paquet %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "s'està buscant en les entrades de fitxers"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "s'està buscant en les entrades proporcionades"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  msgid "No group data available for configured repositories"
 -msgstr ""
 -"No hi ha dades de grup disponibles en cap dels repositoris configurats"
@@ -16528,126 +17178,142 @@ index cca37b7..13d8d5c 100644
 -#: ../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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, 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:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  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:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, 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"
-+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
 -#, python-format
 -msgid "No Match for argument: %s"
 -msgstr "No hi ha cap coincidència per a l'argument: %s"
--
++msgstr "S'està verificant si hi ha un proveïdor virtual o un fitxer proveïdor per a %s"
+ 
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  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:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -16655,7 +17321,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -16664,13 +17330,13 @@ index cca37b7..13d8d5c 100644
 +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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -16680,48 +17346,48 @@ index cca37b7..13d8d5c 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "No hi ha cap coincidència per a l'argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -16729,43 +17395,43 @@ index cca37b7..13d8d5c 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "No hi ha cap paquet coincident per a suprimir"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "S'està examinant %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -16775,13 +17441,13 @@ index cca37b7..13d8d5c 100644
 +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:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -16792,7 +17458,7 @@ index cca37b7..13d8d5c 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -16800,44 +17466,44 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "S'està excloent %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, 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:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, 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:4846
++#: ../yum/__init__.py:5299
  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"
 +msgstr "Hi ha un problema en reinstal·lar: no hi ha cap paquet marcat per a suprimir"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -16846,77 +17512,77 @@ index cca37b7..13d8d5c 100644
 +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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "No hi ha cap paquet disponible per a desactualitzar"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -16930,7 +17596,7 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -16939,10 +17605,9 @@ index cca37b7..13d8d5c 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++msgstr ""
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -16950,31 +17615,32 @@ index cca37b7..13d8d5c 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5393
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "La clau s'ha importat amb èxit"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -16985,20 +17651,20 @@ index cca37b7..13d8d5c 100644
 +msgstr "Les claus GPG llistades per al repositori \"%s\" ja estan instal·lades però no són correctes per a aquest paquet.\nComproveu que les URL de claus correctes estan configurades per a aquest repositori."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -17009,7 +17675,7 @@ index cca37b7..13d8d5c 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "La clau GPG a %s (0x%s) ja ha estat importada"
@@ -17017,19 +17683,19 @@ index cca37b7..13d8d5c 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Ha fallat la importació de la clau"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -17037,117 +17703,121 @@ index cca37b7..13d8d5c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  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:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "S'han trobat errors baixant paquets."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Siusplau, informeu d'aquest error al %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Errors en la transacció de prova: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -17250,7 +17920,7 @@ index cca37b7..13d8d5c 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3148,6 +3264,19 @@ msgstr ""
+@@ -3148,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr "Reempaquetant"
  
@@ -17259,7 +17929,7 @@ index cca37b7..13d8d5c 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -17267,10 +17937,14 @@ index cca37b7..13d8d5c 100644
 +"    * needed %s"
 +msgstr "No hi ha espai suficient al directori de descàrregues %s\n    * lliure    %s\n    * necessari %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3160,9 +3289,7 @@ msgstr "Falla la comprobació md5 per al RPM %s"
+@@ -3160,9 +3487,7 @@ msgstr "Falla la comprobació md5 per al RPM %s"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -17281,17 +17955,17 @@ index cca37b7..13d8d5c 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3178,5 +3305,3 @@ msgstr "Capçalera malmesa %s"
+@@ -3178,5 +3503,3 @@ msgstr "Capçalera malmesa %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "S'ha produït un error en obrir l'rpm %s - error %s"
 -
 -
 diff --git a/po/cs.po b/po/cs.po
-index 622394b..0e55a16 100644
+index 622394b..6da0bf3 100644
 --- a/po/cs.po
 +++ b/po/cs.po
-@@ -2,1515 +2,1592 @@
+@@ -2,1515 +2,1670 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -17299,7 +17973,8 @@ index 622394b..0e55a16 100644
 +# Translators:
 +# Adam  Pribyl <covex at lowlevel.cz>, 2011.
 +# Adam Pribyl <pribyl at lowlevel.cz>, 2012.
-+#   <zpavlas at redhat.com>, 2011, 2012.
++#  <zpavlas at redhat.com>, 2013.
++#   <zpavlas at redhat.com>, 2011-2012.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -17309,8 +17984,8 @@ index 622394b..0e55a16 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Czech (http://www.transifex.net/projects/p/yum/team/cs/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-06-28 10:53+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-03-06 09:44+0000\n"
 +"Last-Translator: zpavlas <zpavlas at redhat.com>\n"
 +"Language-Team: Czech (http://www.transifex.com/projects/p/yum/language/cs/)\n"
  "MIME-Version: 1.0\n"
@@ -17321,7 +17996,7 @@ index 622394b..0e55a16 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
 -msgstr "Aktualizuje se"
 +msgstr "Aktualizace"
@@ -17334,33 +18009,33 @@ index 622394b..0e55a16 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Aktualizováno"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Nainstalováno"
  
@@ -17387,7 +18062,7 @@ index 622394b..0e55a16 100644
  msgstr "Smazáno: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Odstraňuje se"
  
@@ -17398,75 +18073,75 @@ index 622394b..0e55a16 100644
 +msgstr "Vymazání"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Příkaz „%s“ již definován"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
 -msgstr "Nastavují se repozitáře"
 +msgstr "Příprava repozitářů"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Chyba konfigurace: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Chybná volba: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
 -msgstr "  Nainstalováno: %s-%s na %s"
 +msgstr "  Nainstalováno: %s-%s %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
 -msgstr "  Sestaveno    : %s na %s"
 +msgstr "  Sestaveno    : %s %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
 -msgstr "  Odesláno     : %s na %s"
 +msgstr "  Odesláno     : %s %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  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:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Diskové požadavky:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -17478,7 +18153,7 @@ index 622394b..0e55a16 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -17486,85 +18161,107 @@ index 622394b..0e55a16 100644
 -"Přehled chyb\n"
 -"------------\n"
 +msgstr "Přehled chyb\n------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Nelze vytvořit soubor se zámkem; končím"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Zámek pro yum nyní blokuje jiná aplikace; ukončení kvůli nastavenému exit_on_lock"
++
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "budoucí verze rpmdb neodpovídá verzi uložené v transakci,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorováno, jak bylo žádáno."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " přerušeno."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Ukončeno na příkaz uživatele"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
 -msgstr "Stahují se balíčky:"
 +msgstr "Stahování balíčků:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  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:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Spuštěna kontrola transakce"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "CHYBA při kontrole transakce a řešení závislostí:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
 -msgstr "Je potřeba aktualizovat RPM"
 +msgstr "Je nutné aktualizovat RPM"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, 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:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
 -msgstr "Spouští se test transakcí"
 +msgstr "Spuštěn test transakce"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
 -msgstr "Chyba při kontrole transakcí:\n"
 +msgstr "Chyba při kontrole transakce:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
 -msgstr "Test transakcí uspěl"
 +msgstr "Test transakce v pořádku"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
 -msgstr "Spouští se transakce"
 +msgstr "Transakce spuštěna"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -17574,19 +18271,19 @@ index 622394b..0e55a16 100644
 +msgstr "Nelze automaticky importovat klíče při spuštění bez obsluhy.\nPoužijte \"-y\" k potlačení."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
 -msgstr "  * Možná jste myslel: "
 +msgstr "  * Možná bylo míněno: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Balíček %s%s%s není dostupný."
@@ -17594,23 +18291,28 @@ index 622394b..0e55a16 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Balíček(y) k instalaci"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "%s: chybný argument %s."
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Není co dělat"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d balíčků označeno k aktualizaci"
@@ -17621,13 +18323,13 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků označeno jako aktualizace"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  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:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d balíčků označených k synchronizaci distribuce"
@@ -17638,13 +18340,13 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků označeno k synchronizaci distribuce"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  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:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d balíčků označeno ke smazání"
@@ -17655,7 +18357,7 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků označeno k odstranění"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
 -msgstr "Žádné balíčky označené k odstranění"
 +msgstr "Žádné balíčky ke smazání"
@@ -17663,7 +18365,7 @@ index 622394b..0e55a16 100644
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "Balíček(y) ke snížení verze"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -17672,13 +18374,13 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků označeno ke snížení verze"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (z %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
 -msgstr "Instalované balíčky  %s%s%s%s nejsou dostupné"
@@ -17687,7 +18389,7 @@ index 622394b..0e55a16 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Balíček(y) k reinstalaci"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -17696,31 +18398,31 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků k reinstalaci"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
 -msgstr "Žádný balíček neposkytuje"
 +msgstr "Neposkytnuty žádné balíčky"
- 
--#: ../cli.py:1058
-+#: ../cli.py:1162
++
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Balíček(y) k instalaci"
-+
-+#: ../cli.py:1269
+ 
+-#: ../cli.py:1058
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "Jméno/Souhrn odpovídá: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  Vyhledáno %spouze%s podle jména a souhrnu, použijte \"search all\" pro úplné hledání."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -17728,32 +18430,32 @@ index 622394b..0e55a16 100644
 +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:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Shoda: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, 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:1317
++#: ../cli.py:1415
  #, 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:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nebyla nalezena shoda"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nebyly nalezeny balíčky pro %s"
@@ -17763,108 +18465,128 @@ index 622394b..0e55a16 100644
 +msgstr "Chyba: Nebyly nalezený balíčky pro:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
 -msgstr "Čištění repozitářů:"
 +msgstr "Vyčištění repozitářů:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
 -msgstr "Čistí se vše"
 +msgstr "Vymazání celého obsahu cache"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
 -msgstr "Čistí se hlavičky"
 +msgstr "Vymazání hlaviček"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
 -msgstr "Čistí se balíčky"
 +msgstr "Vymazání balíčků"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
 -msgstr "Čistí se XML metadata"
 +msgstr "Vymazání XML metadat"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
 -msgstr "Čistí se skladiště databáze"
 +msgstr "Vymazání databázové cache"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  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:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
 -msgstr "Čistí se skladiště rpmdb dat"
 +msgstr "Vymazání rpmdb cache"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
 -msgstr "Čistí se zásuvné moduly"
 +msgstr "Vymazání modulů"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
 -msgstr ""
-+msgstr "Varování: Žádná shoda skupiny pro: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Nainstalované skupiny prostředí:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Dostupné skupiny prostředí:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Nainstalované skupiny:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Nainstalované jazykové skupiny:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Dostupné skupiny:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
 -msgstr ""
 +msgstr "Dostupné jazykové skupiny:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Varování: Žádná shoda skupiny pro: %s"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Dokončeno"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Varování: Skupina %s neexistuje."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Varování: Skupina %s neexistuje."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Varování: skupina %s neexistuje."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "V žádné z požadovaných skupin nejsou balíčky k instalaci nebo aktualizaci"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d balíček(ů) k instalaci"
@@ -17873,20 +18595,26 @@ index 622394b..0e55a16 100644
 +msgstr[0] "%d balíček k instalaci"
 +msgstr[1] "%d balíčky k instalaci"
 +msgstr[2] "%d balíčků k instalaci"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr "Neexistuje skupina se jménem %s"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Neexistuje skupina se jménem %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Žádné balíčky k odstranění ve skupině"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d balíček(ů) k odstranění"
@@ -17897,13 +18625,13 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d balíčků k odstranění"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, 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:1785
++#: ../cli.py:1999
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
 -msgstr "Skartuje se neporovnatelný balíček %s.%s"
@@ -17911,26 +18639,26 @@ index 622394b..0e55a16 100644
  
  #. we've not got any installed that match n or n+a
 -#: ../cli.py:1423
-+#: ../cli.py:1811
++#: ../cli.py:2025
  #, 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:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
 -msgstr "Možnosti zásuvného modulu"
 +msgstr "Volby zásuvného modulu"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, 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:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -17943,394 +18671,402 @@ index 622394b..0e55a16 100644
 +msgstr "\n\n%s: %s volba vyžaduje argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot musí být absolutní cesta: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "ukázat tuto nápovědu a skončit"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "tolerovat chyby"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "umístění konfiguračního souboru"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maximální čas čekání na příkaz"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  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:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
 -msgstr "úroveň výstupu chyb"
 +msgstr "úroveň výpisu chyb"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  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:2080
++#: ../cli.py:2302
  msgid "quiet operation"
 -msgstr "tichý chod"
 +msgstr "tichý běh"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
 -msgstr "užvaněný chod"
 +msgstr "užvaněný běh"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  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:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "odpovědět ne na všechny otázky"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "ukázat verzi yumu a skončit"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "nastavit kořen instalace "
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "povolit jeden nebo více repozitářů (zástupné znaky povoleny)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  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:2102
++#: ../cli.py:2324
  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:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "povolit zpracování zastaralých během aktualizací"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "zakázat zásuvné moduly yumu"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "zakázat kontrolu GPG podpisů"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "zakázat zásuvné moduly podle jména"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "povolit zásuvné moduly podle jména"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "přeskočit balíčky s problémy v závislostech"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontrola zda jsou použity barvy"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "Neprováděj aktualizaci, pouze stáhni soubory"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "specifikuje alternativní adresář pro uložení balíčků"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "nastavit doplňkové konfigurace a možnosti repozitáře "
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
 -msgstr "Led"
 +msgstr "led"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
 -msgstr "Úno"
 +msgstr "úno"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
 -msgstr "Bře"
 +msgstr "bře"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
 -msgstr "Dub"
 +msgstr "dub"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
 -msgstr "Kvě"
 +msgstr "kvě"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
 -msgstr "Čer"
 +msgstr "čer"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
 -msgstr "Čec"
 +msgstr "čec"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
 -msgstr "Srp"
 +msgstr "srp"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
 -msgstr "Zář"
 +msgstr "zář"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
 -msgstr "Říj"
 +msgstr "říj"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
 -msgstr "Lis"
 +msgstr "lis"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
 -msgstr "Pro"
 +msgstr "pro"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
 -msgstr "Zkouší se jiné zrcadlo"
 +msgstr "Zkusí se jiné zrcadlo..."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
 -msgstr "Jméno       : %s%s%s"
 +msgstr "Jméno        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
 -msgstr "Arch        : %s"
 +msgstr "Platforma    : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
 -msgstr "Epocha      : %s"
 +msgstr "Epocha       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
 -msgstr "Verze       : %s"
 +msgstr "Verze        : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
 -msgstr "Vydání      : %s"
 +msgstr "Vydání       : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
 -msgstr "Velikost    : %s"
 +msgstr "Velikost     : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
 -msgstr "Repo        : %s"
 +msgstr "Repozitář    : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
 -msgstr "Z repozitáře: %s"
 +msgstr "Z repozitáře : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
 -msgstr "Odesilatel  : %s"
 +msgstr "Odesilatel   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
 -msgstr "Čas odeslání: %s"
 +msgstr "Čas odeslání : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
 -msgstr "Čas sestavení: %s"
 +msgstr "Čas vytvoření: %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Čas instalace: %s "
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
 -msgstr "Nainstaloval: %s "
 +msgstr "Nainstaloval : %s "
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
 -msgstr "Změnil      : %s"
 +msgstr "Změnil       : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
 -msgstr "Souhrn      : "
 +msgstr "Souhrn       : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
 -msgstr "URL         : %s"
 +msgstr "URL          : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
 -msgstr "Licence     : "
 +msgstr "Licence      : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr "Popis       : "
 +msgstr "Popis        : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "a"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ano"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ne"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "V pořádku [a/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -18341,179 +19077,203 @@ index 622394b..0e55a16 100644
 +msgstr "\nSkupina: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " ID skupiny: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Popis: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " Jazyk: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Povinné balíčky:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Výchozí balíčky:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Volitelné balíčky:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Podmínečné balíčky:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr "Nainstalované balíčky:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nSkupina prostředí: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr " Environment-Id: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr " Povinné skupiny:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr " Volitelné skupiny:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Nainstalované skupiny:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
 -msgstr "balíčky: %s"
 +msgstr "balíček: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  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:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
 -msgstr "  závislosti: %s"
 +msgstr "  závislost: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
 -msgstr "   Neuspokojené závislosti"
 +msgstr "   Nevyřešené závislosti"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Shoda s:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licence     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Soubor      : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Poskytuje   : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Další       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Celková velikost: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, 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:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Nainstalovaná velikost: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  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:1442
++#: ../output.py:1504
  msgid "Reinstalling"
 -msgstr "Přeinstalovává se"
 +msgstr "Reinstalace"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
 -msgstr "Snižuje se verze"
 +msgstr "Snížení verze"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
 -msgstr "Instaluje se kvůli závislostem"
 +msgstr "Instalace kvůli závislostem"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
 -msgstr "Aktualizuje se kvůli závislostem"
 +msgstr "Aktualizace se kvůli závislostem"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  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:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Přeskočeno (problémy se závislostmi)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Nenainstalováno"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Nedostupný"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Balíček"
 +msgid_plural "Packages"
@@ -18522,33 +19282,33 @@ index 622394b..0e55a16 100644
 +msgstr[2] "Balíček"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arch"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Verze"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repozitář"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Vel."
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     nahrazuje se  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -18564,7 +19324,7 @@ index 622394b..0e55a16 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Instalace    %5.5s balíčků\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalovat"
  
@@ -18572,7 +19332,7 @@ index 622394b..0e55a16 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Aktualizace  %5.5s balíčků\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Aktualizace"
  
@@ -18580,7 +19340,7 @@ index 622394b..0e55a16 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Odstranění   %5.5s  balíčků\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Odstranění"
  
@@ -18588,7 +19348,7 @@ index 622394b..0e55a16 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Reinstalace  %5.5s balíčků\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Přeinstalovat"
  
@@ -18596,11 +19356,11 @@ index 622394b..0e55a16 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Snížení verze %5.5s balíčků\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Snížit verzi"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Závislý balíček"
@@ -18608,38 +19368,38 @@ index 622394b..0e55a16 100644
 +msgstr[2] "Závislých balíčků"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Odstraněno"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Odstraněné závislosti"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Nainstalované závislosti"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Aktualizované závislosti"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Nahrazeno"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Selhalo"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
 -msgstr "dvě"
 +msgstr "dvou"
@@ -18649,7 +19409,7 @@ index 622394b..0e55a16 100644
  #. to exit.
  #. Where "interupt (ctrl-c) again" and "two" are highlighted.
 -#: ../output.py:1271
-+#: ../output.py:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -18662,274 +19422,274 @@ index 622394b..0e55a16 100644
 +msgstr "\nAktuální stahování zrušeno, běh lze ukončit %sopakovaným přerušením (ctrl-c)%s\nběhem %s%s%s sekund.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "Přerušeno uživatelem"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Celkem"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<nenastaveno>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Systém"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Žádné transakce"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Zadáno špatné ID transakce nebo balíčku/ů"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Příkazový řádek"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  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:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Datum a čas"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Akce"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Pozměněno"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Nezadáno ID transakce"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Špatné ID transakce"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Zadané ID transakce nenalezeno"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Nalezeno více než jedno ID transakce!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Nebylo zadáno ID transakce nebo balíčku/ů"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Snížena verze"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Starší"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Novější"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ID transakce:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Počáteční čas  :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Začátek rpmdb  :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u sekund)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u minut)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u hodin)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u dnů)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
 -msgstr "Konečný čas    :"
 +msgstr "Čas ukončení    :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Konec rpmdb    :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Uživatel       :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Návratový kód  :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Přerušeno"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Selhání:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Selhalo:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
 -msgstr "Úspěch"
 +msgstr "Úspěšné"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
 -msgstr "Příkazová řádka:"
 +msgstr "Příkazový řádek:"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transakce proběhla s:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Pozměněné balíčky:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Přeskočené balíčky:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problémy rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Výstup skriptletu:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Chyby:"
  
@@ -18938,17 +19698,17 @@ index 622394b..0e55a16 100644
 -msgstr "Instalovat"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Instalovat závislosti"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Zastaralé"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Smazat"
  
@@ -18961,238 +19721,239 @@ index 622394b..0e55a16 100644
 -msgstr "Snížit verzi"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Aktualizovat"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Čas"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Poslední den"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Poslední týden"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Poslední 2 týdny"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Poslední 3 měsíce"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Posledních 6 měsíců"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Poslední rok"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Více než rok"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Nenalezena transakce %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "ID transakce:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Další dostupná informace z historie:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: Nenalezena další data toho jména"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Balíček        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Stav           :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Velikost       :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Sestaven na    :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Čas sestaveni  :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Sestavil       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Poskytovatel   :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licence        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Zdrojové RPM   :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Čas zadání    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Zadavatel      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Důvod          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Z repa         :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Nainstaloval   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Změnil         :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
 -msgstr "instalaci"
 +msgstr "instalován"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "novou aktualizací"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
 -msgstr "smazání"
 +msgstr "smazán"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
 -msgstr "reinstalaci"
 +msgstr "reinstalován"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "ponížen"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "nahrazen"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
 -msgstr "aktualizaci"
 +msgstr "aktualizován"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
 -msgstr "zastarání"
 +msgstr "zastaralý"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
 -msgstr "--> Spouští se kontrola transakce"
 +msgstr "--> Kontrola transakce spuštěna"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  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:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Řešení závislostí dokončeno"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, 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:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
 -msgstr "---> Ponechají se balíčky: %s"
-+msgstr "---> Ponechíní balíčku: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Balíček %s ponechán, protože: %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, 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:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Balíček: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -19203,7 +19964,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n    Vyžaduje: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -19214,7 +19975,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -19225,7 +19986,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -19236,114 +19997,114 @@ index 622394b..0e55a16 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
 -msgstr "Aktualizoval"
 +msgstr "Aktualizací balíčku"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Snížil verzi"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
 -msgstr "Zastaral"
 +msgstr "Zastaralán"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Dostupné"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Zpracování konfliktu: %s je v konfliktu s %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  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:2915
++#: ../output.py:2983
  #, 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
++
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Ověřování"
-+
-+#: ../utils.py:129
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
  msgid "Running"
  msgstr "Běží"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Spí"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Nepřerušitelné"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Trasován/Zastaven"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Neznámý"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Další aplikace je: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Další aplikace je: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Paměť  : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, 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:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Stav   : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -19355,7 +20116,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n\nUkončeno na příkaz uživatele"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -19367,7 +20128,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n\nUkončeno přerušením roury"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -19377,55 +20138,53 @@ index 622394b..0e55a16 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-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 "
 -"exit_on_lock"
-+msgstr "Zámek pro yum nyní blokuje jiná aplikace; ukončení kvůli nastavenému exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Chyba PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Chyba Yumu: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Chyba: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -19435,7 +20194,7 @@ index 622394b..0e55a16 100644
 +msgstr "\nZávislosti vyřešeny."
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Hotovo!"
  
@@ -19454,7 +20213,7 @@ index 622394b..0e55a16 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1525,1609 +1602,1696 @@ msgid ""
+@@ -1525,1609 +1680,1820 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -19487,53 +20246,73 @@ index 622394b..0e55a16 100644
  msgstr "Chyba: Je potřeba předat seznam balíčků do %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Chyba: Potřebuji alespoň dva balíčky pro %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Chyba: Je třeba zadat id repozitáře a příkaz pro %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Chyba: Je třeba zadat platný id repozitáře pro %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Chyba: Repozitář %s není povolen"
++
++#: ../yumcommands.py:164
  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:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Chyba: Je potřeba skupina nebo seznam skupin"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Chyba: clean vyžaduje volbu: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Chyba: Neplatný argument pro clean: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
 -msgstr "Shell nemá žádný argument"
 +msgstr "Žádný argument pro shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Jméno souboru předané shellu: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -19545,125 +20324,125 @@ index 622394b..0e55a16 100644
 +msgstr "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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "Balíček..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  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:341
++#: ../yumcommands.py:421
  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:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[Balíček...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  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:403
++#: ../yumcommands.py:483
  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:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Synchronizovat nainstalované balíčky na poslední dostupnou verzi"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  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:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
 -msgstr "Nainstalované balíčky"
 +msgstr "Nainstalované balíčky:"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
 -msgstr "Dostupné balíčky"
 +msgstr "Dostupné balíčky:"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
 -msgstr "Dodatečné balíčky"
 +msgstr "Dodatečné balíčky:"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  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:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
 -msgstr "Zastaralé balíčky"
 +msgstr "Zastaralé balíčky:"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
 -msgstr "Nově přidané balíčky"
 +msgstr "Nedávno přidané balíčky:"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
 -msgstr "Nenalezeny shodné balíčky"
 +msgstr "Nenalezeny odpovídající balíčky"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Vypsat balíček nebo skupiny balíčků"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Odstranit balíček nebo balíčky ze systému"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  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:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Zobrazit, nebo použít, informaci o skupinách"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
 -msgstr "Uspořádává se zpracování skupiny"
 +msgstr "Příprava zpracování skupiny"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Nenalezeny skupiny, na které by šlo příkaz aplikovat"
  
@@ -19674,7 +20453,7 @@ index 622394b..0e55a16 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Instalovat balíčky ze skupiny do systému"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Neplatný pod-příkaz pro skupiny, použijte: %s."
@@ -19682,88 +20461,88 @@ index 622394b..0e55a16 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Odstranit balíčky ze skupiny ze systému"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Neexistuje soubor pro nainstalované skupiny."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Zobrazit detaily o skupině balíčků"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Nemáte přístup k DB skupin."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
 -msgstr "Vygenerovat skladiště metadat"
 +msgstr "Vygenerovat cache s metadaty"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  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:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
 -msgstr "Skladiště metadat vytvořeno"
 +msgstr "Cache s metadaty vytvořena."
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
 -msgstr "Odstranit data ze skladiště"
 +msgstr "Odstranit data z cache"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Nalézt balíček, který poskytuje danou hodnotu"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
 -msgstr "Zkontrolovat dostupné aktualizace balíčků"
 +msgstr "Zkontrolovat dostupnost aktualizací pro balíčky"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  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:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
 -msgstr "Prohledávají se balíčky: "
 +msgstr "Prohledávání balíčků: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Aktualizovat balíčky a brát v úvahu zastaralé"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  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:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instalovat lokální RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  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"
@@ -19773,159 +20552,159 @@ index 622394b..0e55a16 100644
 -msgstr "Určit který balíček poskytuje danou závislost"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  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:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Spustit interaktivní shell yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
 -msgstr "Nastavuje se yum shell"
 +msgstr "Příprava yum shellu"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
 -msgstr "Zobrazit závislosti balíčku"
 +msgstr "Vypsat závislosti balíčku"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
 -msgstr "Hledají se závislosti: "
 +msgstr "Hledání závislostí: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Zobrazit nastavené repozitáře softwaru"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "povoleno"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "zakázáno"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
 -msgstr "Repo-id      : "
 +msgstr "Repo-ID      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
 -msgstr "Repo-jméno   : "
 +msgstr "Repo-název   : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Repo-status  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-revize  : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tagy    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tagy: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
 -msgstr "Repo-aktuální: "
 +msgstr "Repo-aktual. : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
 -msgstr "Repo-bal.    : "
 +msgstr "Repo-balíčků : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Repo-velikost: "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
 -msgstr "  Aktualizováno: "
 +msgstr "Aktualizováno: "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-zrcadla : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Nikdy (poslední: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Okamžitě (naposledy: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekund (naposledy: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Repo-vyprší  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-vyřazeno: "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-zahrnuto: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repo-vyřazeno: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Repo-konfig  : "
@@ -19933,37 +20712,37 @@ index 622394b..0e55a16 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
 -msgstr "repo id"
 +msgstr "ID repozitáře:"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
 -msgstr "status"
 +msgstr "Stav:"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
 -msgstr "jméno repa"
 +msgstr "Název repozitáře:"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Zobrazit užitečnou nápovědu"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, 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:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -19975,7 +20754,7 @@ index 622394b..0e55a16 100644
 +msgstr "\n\naliasy: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -19987,156 +20766,194 @@ index 622394b..0e55a16 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  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:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "Reinstalace balíčku"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  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:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "Snížení verze balíčku"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Verze yum skupin:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Skupina :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Balíčky :"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Nainstalováno:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Nainstalované skupiny:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Dostupné:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Dostupné skupiny:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
 -msgstr "Zobrazit nebo používat transakční historii"
 +msgstr "Zobrazit nebo používat historii transakcí"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transakce:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Začátek v   :"
- 
--#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2603
++
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Konec v     :"
-+
-+#: ../yumcommands.py:2604
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Počet       :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, 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:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Zkontrolovat problémy v rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "Načíst transakci uloženou v souboru"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Nebyla zadána žádná uložená transakce."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "načítání transakce z %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
 -msgstr ""
 +msgstr "Transakce načtena z %s s %s položkami"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Jednoduchý způsob pro záměnu balíčků, bez použití yum-shell"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Považuje repozitář za skupinu balíčků, takže je lze instalovat/odinstalovat všechny"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d balíček k aktualizaci"
++msgstr[1] "%d balíčky k aktualizaci"
++msgstr[2] "%d balíčků k aktualizaci"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d balíček k odstranění/reinstalaci"
++msgstr[1] "%d balíčky k odstranění/reinstalaci"
++msgstr[2] "%d balíčků k odstranění/reinstalaci"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d balíček k odstranění/synchronizaci"
++msgstr[1] "%d balíčky k odstranění/synchronizaci"
++msgstr[2] "%d balíčků k odstranění/synchronizaci"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Neplatný pod-příkaz pro %s"
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -20149,34 +20966,26 @@ index 622394b..0e55a16 100644
 -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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Není přístup pro čtení/spuštěné v aktuálním adresáři, přechod do /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr ""
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Není přístup k getcwd() v aktuálním adresáři, přechod do /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Nelze vytvořit soubor se zámkem; končím"
-+
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
 -msgstr "Řeší se závislosti"
 +msgstr "Řešení závislostí..."
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -20186,7 +20995,7 @@ index 622394b..0e55a16 100644
 +msgstr "Transakce yum byla uložena, znovustit lze s:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -20230,7 +21039,7 @@ index 622394b..0e55a16 100644
 +msgstr "Člen: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
 -msgstr "%s zkonvertován na instalaci"
@@ -20306,42 +21115,52 @@ index 622394b..0e55a16 100644
 +msgstr "Pro vyřešení závislostí se zkouší aktualizace %s"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
 -msgstr ""
 +msgstr "Není cesta pro aktualizaci %s. Selhání!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Nenalezen způsob jak aktualizovat %s. Nelze uspokojit požadavek: %s!"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Aktualizace %s. Neopravuje požadavek: %s!"
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
 -msgstr "Rychlá shoda %s vyžadovaného pro %s"
@@ -20349,7 +21168,7 @@ index 622394b..0e55a16 100644
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -20357,97 +21176,97 @@ index 622394b..0e55a16 100644
 +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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Úspěch - prázdná transakce"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
 -msgstr "Restartuje se smyčka"
 +msgstr "Restartování smyčky"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  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:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Úspěch - závislosti vyřešeny"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, 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:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "lepší architektura v po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s zastarává %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -20458,25 +21277,25 @@ index 622394b..0e55a16 100644
 +msgstr "archdist porovnal %s vůči %s na %s\n  Vítěz: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "společné zdrojové rpm %s a %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "vyžaduje minimálně: %d"
@@ -20484,169 +21303,179 @@ index 622394b..0e55a16 100644
 +msgstr "poskytuje vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Vítěz:  %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "vyžaduje minimálně: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, 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:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
 -msgstr "Nejlepší pořádek: %s"
 +msgstr "Nejlepší pořadí: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Přeskakuji nečitelný repozitář %s"
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  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:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  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:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  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:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
 -msgstr "Sestavuje se objekt aktualizací"
 +msgstr "Sestavování objektů aktualizací"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  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:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Nelze stáhnout soubor skupin pro repozitář: %s"
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "V žádném repozitáři nejsou dostupné skupiny"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  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:954
++#: ../yum/__init__.py:955
  #, 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:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  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:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -20656,27 +21485,60 @@ index 622394b..0e55a16 100644
 +msgstr "Existují nedokončené transakce. Pro jejich dokončení raději nejprve spusťte yum-complete-transaction."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Hledání nepotřebných závislostí"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "Chráněné verze multilib-u: %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -20686,14 +21548,14 @@ index 622394b..0e55a16 100644
 +msgstr "\nBalíčky přeskočené kvůli problémům se závislostmi:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s z %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -20702,24 +21564,24 @@ index 622394b..0e55a16 100644
 +msgstr "** Nalezeny %d existující problémy v rpmdb, následuje výstup \"yum check\":"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Varování: RPMDB byla změněna mimo yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
 -msgstr "chybějící požadavek"
 +msgstr "chybějící requires"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
 -msgstr "konflikt nainstalovaného"
 +msgstr "instalační konflikt"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -20728,18 +21590,18 @@ index 622394b..0e55a16 100644
 +msgstr "Varování: Během transakce došlo k chybě skriptletu nebo jiné nefatální chybě."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transakce nemůže začít:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Nelze spustit transakci."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Selhalo odstranění transakčního souboru %s."
@@ -20747,7 +21609,7 @@ index 622394b..0e55a16 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
 -msgstr "%s mělo být nainstalováno, ale není!"
@@ -20759,7 +21621,7 @@ index 622394b..0e55a16 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
 -msgstr "%s mělo být odstraněno, ale není!"
@@ -20778,32 +21640,32 @@ index 622394b..0e55a16 100644
  
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Nelze otevřít zámek  %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Nelze zkontrolovat, zda je PID %s aktivní."
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -20814,25 +21676,25 @@ index 622394b..0e55a16 100644
 +msgstr "Balíček neodpovídá zamýšlenému stahování. Zkuste spustit: yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Nelze zkontrolovat kontrolní součet"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  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:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
 -msgstr "používá se lokální kopie %s"
@@ -20848,14 +21710,18 @@ index 622394b..0e55a16 100644
 -"Nedostatek diskového prostoru ve stahovacím adresáři %s\n"
 -"    * volno   %s\n"
 -"    * potřeba %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "končím protože bylo zadáno --downloadonly"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Hlavička není kompletní."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -20865,57 +21731,57 @@ index 622394b..0e55a16 100644
 +msgstr "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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problém s otevřením balíčku %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Balíček %s není podepsán"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
 -msgstr "Nemohu odstranit %s"
 +msgstr "Nelze odstranit %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s odstraněn"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, 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:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s soubor %s odstraněn"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s soubor odstraněn"
@@ -20926,21 +21792,21 @@ index 622394b..0e55a16 100644
 +msgstr[2] "%d %s souborů odstraněno"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -20950,7 +21816,7 @@ index 622394b..0e55a16 100644
 +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:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Prohledává se %d balíčků"
@@ -20961,26 +21827,26 @@ index 622394b..0e55a16 100644
 +msgstr[2] "Prohledávání %d balíčků"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, 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:3069
++#: ../yum/__init__.py:3165
  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:3076
++#: ../yum/__init__.py:3172
  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:3213
++#: ../yum/__init__.py:3369
  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"
@@ -20988,136 +21854,152 @@ index 622394b..0e55a16 100644
 -#: ../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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Přeskočen balíček %s ze skupiny %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
 -msgstr ""
-+msgstr "Varování: Skupina %s neobsahuje žádné balíčky."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Varování: Skupina %s nemá žádné balíčky k instalaci."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Vynechávám skupinu %s z prostředí %s"
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, 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:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Varování: Skupina prostředí %s neexistuje."
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Balíček %s nelze instalovat současně s %s"
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  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:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, 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
 -#, python-format
 -msgid "No Match for argument: %s"
 -msgstr "Nenalezena shoda pro argument: %s"
--
++msgstr "Zjišťování virtuálního provide nebo file-provide pro %s"
+ 
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  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:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -21127,7 +22009,7 @@ index 622394b..0e55a16 100644
 +msgstr "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:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -21135,13 +22017,13 @@ index 622394b..0e55a16 100644
 +msgstr "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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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."
@@ -21149,49 +22031,49 @@ index 622394b..0e55a16 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Pro argument nenalezena shoda: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Žádný balíček nevyhovuje aktualizaci: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -21199,47 +22081,47 @@ index 622394b..0e55a16 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nenalezen žádný shodný balíček pro odstranění"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Žádný balíček nevyhovuje odstranění: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, 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:4652
++#: ../yum/__init__.py:5105
  #, 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:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
 -msgstr "Zkoumá se %s: %s"
 +msgstr "Zkoumání %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -21247,14 +22129,14 @@ index 622394b..0e55a16 100644
 +msgstr "Do transakce nelze přidat balíček %s. Nekompatibilní architektura: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, 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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -21265,7 +22147,7 @@ index 622394b..0e55a16 100644
 +msgstr "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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -21274,128 +22156,128 @@ index 622394b..0e55a16 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
 -msgstr "Vynechává se %s"
 +msgstr "Vynechání %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, 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:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Nelze otevřít soubor: %s. Přeskakuje se."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  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:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Neexistuje shoda pro dostupný balíček: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Nepodařilo se snížit verzi: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Nezdařila se aktualizace: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "Získávání klíče z %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Neplatný GPG klíč pro %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -21410,7 +22292,7 @@ index 622394b..0e55a16 100644
 +msgstr "Importuje se %s klíč 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Balíček    : %s (%s)\n Z          : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -21422,7 +22304,7 @@ index 622394b..0e55a16 100644
 +" From       : %s"
 +msgstr "Importuje se %s klíč 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Z          : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -21433,30 +22315,30 @@ index 622394b..0e55a16 100644
 +msgstr "\n\n\n Nepovolené balíček je: %s\n GPG klíče jsou nakonfigurovány jako: %s\n"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Import klíče proběhl úspěšně"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Nebyly instalovány žádné klíče"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -21467,20 +22349,20 @@ index 622394b..0e55a16 100644
 +msgstr "GPG klíče určené pro repozitář „%s“ jsou již nainstalovány, avšak pro tento balíček nejsou správné.\nZkontrolujte, zda URL klíčů jsou pro tento repozitář správně nastaveny."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Ne"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ano"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -21491,7 +22373,7 @@ index 622394b..0e55a16 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA klíč: %s\n Nepovolený repozitář je: %s\n GPG klíče jsou nakonfigurovány jako: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG klíč %s (0x%s) je již naimportován"
@@ -21499,20 +22381,20 @@ index 622394b..0e55a16 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Import klíče selhal"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Import klíče %s se nezdařil."
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -21523,132 +22405,134 @@ index 622394b..0e55a16 100644
 +msgstr "GPG klíče pro repozitář \"%s\" jsou již nainstalovány, ale nejsou správné.\nZkontrolujte že pro repozitář je správně nastaveno URL klíče."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  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:5707
++#: ../yum/__init__.py:6174
  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:5762
++#: ../yum/__init__.py:6229
  #, 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:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Chyby testu transakce: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-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:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " ignorováno, jak bylo žádáno."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr " přerušeno."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "rpmdb obsahuje jinou verzi než je v uložené transakci, "
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 -msgstr ""
 +msgstr " ignorováno. Musíte spustit redepsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s již byl navštíven a nemůže být odebrán"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Zkouší se revdeps %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s má revdep %s který byl nainstalován uživatelem."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s je vyžadováno jedním z balíčků k instalaci."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s nemá žádné uživatelem nainstalované revdeps."
@@ -21766,17 +22650,21 @@ index 622394b..0e55a16 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Ověřování: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, 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"
++
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Balíček neodpovídá zamýšlenému stahování."
  
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
-@@ -3141,11 +3305,11 @@ msgstr "Pro RPM %s selhala kontrola md5"
+@@ -3141,11 +3507,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?"
@@ -21790,17 +22678,17 @@ index 622394b..0e55a16 100644
  
  #: ../rpmUtils/oldUtils.py:253 ../rpmUtils/oldUtils.py:260
  #: ../rpmUtils/oldUtils.py:263 ../rpmUtils/oldUtils.py:266
-@@ -3157,5 +3321,3 @@ msgstr "Poškozená hlavička %s"
+@@ -3157,5 +3523,3 @@ msgstr "Poškozená hlavička %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Chyba při otevření rpm %s - chyba %s"
 -
 -
 diff --git a/po/da.po b/po/da.po
-index a7202e2..ee9b9e3 100644
+index a7202e2..c0d5bf8 100644
 --- a/po/da.po
 +++ b/po/da.po
-@@ -2,941 +2,968 @@
+@@ -2,941 +2,1051 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -21816,9 +22704,9 @@ index a7202e2..ee9b9e3 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Danish (http://www.transifex.net/projects/p/yum/team/da/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-09-03 21:39+0000\n"
-+"Last-Translator: Kris Thomsen <lakristho at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Danish (http://www.transifex.com/projects/p/yum/language/da/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -21828,7 +22716,7 @@ index a7202e2..ee9b9e3 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Opdaterer"
  
@@ -21839,31 +22727,31 @@ index a7202e2..ee9b9e3 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Opdateret"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installeret"
  
@@ -21891,7 +22779,7 @@ index a7202e2..ee9b9e3 100644
  msgstr "Slettet: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Fjerner"
  
@@ -21901,69 +22789,69 @@ index a7202e2..ee9b9e3 100644
  msgstr "Oprydning af"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Kommandoen \"%s\" er allerede defineret"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Indstiller pakkearkiver"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Konfigurationsfejl: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Fejl i indstilling: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installeret: %s-%s på %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Bygget    : %s på %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Indsendt: %s på %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Du skal angive en kommando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Behov for diskplads:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -21974,7 +22862,7 @@ index a7202e2..ee9b9e3 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -21982,77 +22870,99 @@ index a7202e2..ee9b9e3 100644
 -"Fejlopsummering\n"
 -"---------------\n"
 +msgstr "Fejlopsummering\n---------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Kan ikke oprette låsfil; afslutter"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Et andet program holder i øjeblikket yum-låsen; afslutter som konfigureret af exit_on_llock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorerer, som forespurgt."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " afslutter."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Afslutter efter brugerens ønske"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Henter pakker:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Fejl ved hentning af pakker:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Kører overførselskontrol"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "FEJL med overførselskontrol vs depsolve"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM skal opdateres"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Rapportér venligst denne fejl i %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Kører overførselstest"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Fejl i overførselskontrol:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Overførselstest afsluttet uden fejl"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Kører overførsel"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -22062,18 +22972,18 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Afviser automatisk importering af nøgler ved baggrundskørsel.\nBrug \"-y\" til at overskrive."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Du mente måske: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Pakken %s%s%s er ikke tilgængelig."
@@ -22081,22 +22991,27 @@ index a7202e2..ee9b9e3 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Pakke(r) til installation"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d pakke at installere"
 +msgstr[1] "%d pakker at installere"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Intet at udføre"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pakker markeret til opdatering"
@@ -22106,12 +23021,12 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker markeret til opdatering"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Ingen pakker markeret til opdatering"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pakker er markeret til distributionssynkronisering"
@@ -22121,12 +23036,12 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker markeret til distributionssynkronisering"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Ingen pakker er markeret til distributionssynkronisering"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pakker markeret til fjernelse"
@@ -22136,14 +23051,14 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker markeret til fjernelse"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -22151,13 +23066,13 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker at nedgradere"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (fra %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Installeret pakke %s%s%s%s er ikke tilgængelig."
@@ -22165,7 +23080,7 @@ index a7202e2..ee9b9e3 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Pakke(r) til geninstallation"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -22173,30 +23088,30 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker at geninstallere"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Ingen pakker angivet"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pakke(r) til installation"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "N/s matchede: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  Navn og resumé matchede, brug %skun%s \"search all\" til alting."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -22204,31 +23119,31 @@ index a7202e2..ee9b9e3 100644
 +msgstr "  Fulde navn og resumé matchede %skun%s, brug \"search all\" for alting."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Matchede: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  Navn og resumé matchede %snæsten%s, brug \"search all\" for alting."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Advarsel: Ingen match blev fundet for: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Ingen match fundet"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Ingen pakke fundet for %s"
@@ -22238,92 +23153,110 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Fejl: Ingen pakker fundet for:\n%s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Oprydder pakkearkiver: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Oprydning af alt"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Oprydning af headerfiler"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Oprydning af pakker"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Oprydning af xml-metadata"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Oprydning af mellemlager til database"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Oprydning af udløbet mellemlager til metadata"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Rydder mellemlagret rpmdb-data op"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Oprydning af udvidelsesmoduler"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Advarsel: Ingen grupper matcher: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Installerede grupper:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Installerede sproggruppper:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Tilgængelige grupper:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "Tilgængelige sproggrupper:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Afsluttet"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Advarsel: Gruppen %s findes ikke."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"Ingen pakke i nogen de efterspurgte grupper, er tilgængelige til "
@@ -22331,7 +23264,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Ingen pakke i nogen de efterspurgte grupper, er tilgængelige til installation eller opdatering"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d pakke(r) til installation"
@@ -22339,20 +23272,26 @@ index a7202e2..ee9b9e3 100644
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d pakke at installere"
 +msgstr[1] "%d pakker at installere"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Gruppen %s findes ikke"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Ingen pakker at fjerne fra grupper"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pakke(r) til fjernelse"
@@ -22362,20 +23301,20 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d pakker at fjerne"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Pakken %s er allerede installeret, springer over"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -22383,18 +23322,18 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Ingen andre %s er installeret, tilføjer til liste til mulig installation"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Indstillinger til udvidelsesmodul"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Kommandoliniefejl: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -22407,356 +23346,363 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\n%s: %s indstilling kræver et argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot skal være en komplet sti: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "vis denne hjælpemeddelse og afslut"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "vær fejltolerant"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "placering af konfigurationsfil"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maksimal ventetid på kommando"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "debug-visningsniveau"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "vis gengangere, i pakkearkiver, i list/search-kommandoer"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "fejlvisningsniveau"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "outputniveau for fejlsøgning af rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "stille operation"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "uddybende operation"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "svar ja til alle spørgsmål"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "svar nej til alle spørgsmål"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "vis Yum-version og afslut"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "sæt installationsroden"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "aktivér en eller flere pakkearkiver (wildcards er tilladt)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "deaktivér en eller flere pakkearkiver (wildcards er tilladt)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "ekskludér pakke(r) med navn eller klump"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "aktivér overflødiggørelse under behandling af opdateringer"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "deaktivér Yum-udvidelsesmoduler"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "deaktivér kontrol af gpg-signaturer"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "deaktivér udvidelsesmoduler ved navn"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "aktivér udvidelsesmoduler ved navn"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "spring pakker med afhængighedsproblemer over"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontrollér om farve er brugt"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
--"indstil værdi for $releaseever i yum-konfiguration og pakkearkivsfiler"
 +msgstr "indstil værdi for $releaseever i yum-konfiguration og pakkearkivsfiler"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
+-"indstil værdi for $releaseever i yum-konfiguration og pakkearkivsfiler"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "indstil arbitrærkonfiguration og indstillinger for pakkearkiv"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Maj"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Aug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dec"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Prøver et andet filspejl."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Navn        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arkitektur        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Version     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Udgivelse     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Størrelse        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Kilde       : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Fra pakkearkiv   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Tilføjer   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Tilføjelsestidspunkt  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Bygningstidspunkt   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Installationstid: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Installeret af: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Ændret af  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Beskrivelse     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licens     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Beskrivelse : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "j"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ja"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nej"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Er dette o.k? [j/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -22767,167 +23713,191 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\nGruppe: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Gruppeid: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Beskrivelse: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " Sprog: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Tvungne pakker:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Standardpakker:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Valgfrie pakker:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Afhængige pakker:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr "Installerede pakker:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "pakke: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Ingen afhængigheder for denne pakke"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  afhængighed: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Ufuldendt afhængighed"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Matchet af:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licens      : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Filnavn     : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Udbyder    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Andre       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Total størrelse: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Total nedhentningsstørrelse: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Installationsstørrelse: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Der opstod en fejl ved udregning af installeret størrelse"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Geninstallerer"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Nedgraderer"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Installerer til afhængigheder"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Opdaterer til afhængigheder"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Fjerner for afhængigheder"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Sprunget over (afhængighedsproblemer)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Ikke installeret"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Ikke tilgængelig"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Pakke"
 +msgid_plural "Packages"
@@ -22935,33 +23905,33 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "Pakker"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arkitektur"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Version"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Pakkearkiv"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Størrelse"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     erstatter  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -22977,7 +23947,7 @@ index a7202e2..ee9b9e3 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Installér   %5.5s pakke(r)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installér"
  
@@ -22985,7 +23955,7 @@ index a7202e2..ee9b9e3 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Opgradér   %5.5s pakke(r)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Opgradér"
  
@@ -22993,7 +23963,7 @@ index a7202e2..ee9b9e3 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Fjern    %5.5s pakke(r)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Fjern"
  
@@ -23001,7 +23971,7 @@ index a7202e2..ee9b9e3 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Geninstallér %5.5s pakke(r)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Geninstallér"
  
@@ -23009,58 +23979,58 @@ index a7202e2..ee9b9e3 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Nedgradér %5.5s pakke(r)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Nedgradér"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Afhængighedspakke"
 +msgstr[1] "Afhængighedspakker"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Fjernet"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Afhængighed fjernet"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Afhængighed installeret"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Afhængighed opdateret"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Erstattet"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Fejlede"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "to"
  
-@@ -944,577 +971,610 @@ msgstr "to"
+@@ -944,577 +1054,604 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -23073,273 +24043,273 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n Nuværende hentning afbrudt, %safbryd (ctrl-c) igen%s indenfor %s%s%s sekunder\nfor at afslutte.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "afsluttet af bruger"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Ialt"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<ikke angivet>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "System"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
 +msgstr "Overspringer sammenflettet overførsel %d til %d, eftersom den overlapper"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Ingen overførsler"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Dårlige overførsels-id'er eller pakker givet"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Kommandolinje"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Log bruger ind"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Dato og tid"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Handling(er)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Ændret"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Intet overførsels-id givet"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Dårlig overførsels-id givet"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Det angivne overførsels-id ikke fundet"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Fandt mere end ét overførsels-id!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Intet overførsels-id eller pakke givet"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Nedgraderet"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Ældre"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Nyere"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
 -msgstr "Overførsels-id:"
 +msgstr "Overførsels-id :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
 -msgstr "Starttidspunkt     :"
 +msgstr "Starttidspunkt :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Start rpmdb    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u sekunder)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u minutter)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u timer)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u dage)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Sluttidspunkt       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Slut rpmdb      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Bruger           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Returkode    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Afbrudt"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Fejl:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Fejl:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Succes"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Kommandolinje   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
 -msgstr "Overførsel udført med"
 +msgstr "Overførsel udført med:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Pakker ændret:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Pakker sprunget over:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problemer med rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptletoutput:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Fejl:"
  
@@ -23348,17 +24318,17 @@ index a7202e2..ee9b9e3 100644
 -msgstr "Installér"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Installér afhængigheder"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Forælder"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Slet"
  
@@ -23371,228 +24341,230 @@ index a7202e2..ee9b9e3 100644
 -msgstr "Nedgradér"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Opdatér"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Tid"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Sidste dag"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Sidste uge"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Seneste to uger"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Seneste tre måneder"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Seneste seks måneder"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Sidste år"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Over et år siden"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Ingen overførsel %s fundet"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Overførsels-id:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Yderligere historikinformation tilgængelig:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Pakke          :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Status         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Størrelse      :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Bygningsvært   :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Bygningstid    :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Pakker         :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Fabrikant      :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licens         :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Kilderpm       :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Tilføjelsestid :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Tilføjer       :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Grund          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Fra pakkearkiv :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Installeret af :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Ændret af      :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installeret"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "en opdatering"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "slettet"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "geninstalleret"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "en nedgradering"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "overflødigører"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "opdateret"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "overflødiggjort"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
 -msgstr ""
 +msgstr "---> Pakke %s.%s %s:%s-%s vil blive %s"
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Kører overførselskontrol"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Genstarter afhængighedssøgning med nye ændringer."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Afsluttede afhængighedssøgningen"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Behandler afhængighed: %s for pakken: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Beholder pakke: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Beholder pakke: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Ikke fundet afhængighed: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Pakke: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -23603,7 +24575,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n    Kræver: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -23614,7 +24586,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -23625,7 +24597,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -23636,38 +24608,38 @@ index a7202e2..ee9b9e3 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Opdateret af"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Nedgraderet af"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Forældet af"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Tilgængelig"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Behandler konflikt: %s konflikter med %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> Udfylder overførselssættet med valgte pakker. Vent venligst."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, 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."
@@ -23675,70 +24647,70 @@ index a7202e2..ee9b9e3 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verificerer"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Kører"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Sover"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Ikke forstyrbar"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Fundet/stoppet"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Ukendt"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Det andet program er: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Det andet program er: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Hukommelse : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Startede: %s - %s siden"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Status  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -23750,7 +24722,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\nAfslutter efter brugerens ønske"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -23762,7 +24734,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\nAfslutter på ødelagt tunnel"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -23775,53 +24747,51 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Et andet program holder i øjeblikket yum-låsen; afslutter som konfigureret "
 -"af exit_on_llock"
-+msgstr "Et andet program holder i øjeblikket yum-låsen; afslutter som konfigureret af exit_on_llock"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Fejl med PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum-fejl: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Fejl: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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"
 +msgstr " Du kunne prøve at bruge --skip-broken til at arbejde udenom problemet"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Ukendt(e) fejl: Returkode: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -23831,7 +24801,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\nAfhængigheder løst"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Afsluttet!"
  
@@ -23849,7 +24819,7 @@ index a7202e2..ee9b9e3 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1529,583 +1589,604 @@ msgid ""
+@@ -1529,583 +1666,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -23883,51 +24853,71 @@ index a7202e2..ee9b9e3 100644
  msgstr "Fejl: En liste med pakker behøves af %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Fejl: Behøver noget at matche med"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Fejl: Behøver en gruppe eller liste af grupper"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Fejl: clean behøver en indstilling: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Fejl: ugyldigt clean-argument: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Ingen argumenter til skal"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Filnavn tilpasset skal: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -23939,112 +24929,112 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Der er ingen aktiverede pakkearkiver.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKKE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Installerer en eller flere pakker på systemet"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Opsætning af installationsprocessen"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKKE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Opdaterer en eller flere pakker på systemet"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Opsætning af opdateringsprocessen"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  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:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Indstiller distributionssynkroniseringsproces"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Installerede pakker"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Tilgængelige pakker"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Ekstra pakker"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Opdaterede pakker"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Overflødiggør pakker"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Pakker som er tilføjet for nyligt"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Ingen matchende pakker til liste"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Viser en pakke eller en gruppe af pakker"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Fjern en eller flere pakker fra dit system"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Opsætning af fjerningsprocessen"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Vis, eller brug, gruppernes information"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Opsætning af gruppeprocessen"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Ingen grupper, på hvilke der køres en kommando"
  
@@ -24055,7 +25045,7 @@ index a7202e2..ee9b9e3 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Ugyldig underkommando for grupper, brug: %s."
@@ -24063,81 +25053,81 @@ index a7202e2..ee9b9e3 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Der er ingen installeret gruppe-fil."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Vis informationer om en pakkegruppe"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Du har ikke adgang til gruppe-DB'en."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Opretter mellemlager for metadata"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Opretter mellemlagerfiler til alle metadatafiler."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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"
 +msgstr "Dette kan tage et stykke tid, afhængigt af hastigheden op denne computer"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Mellemlager for metadata oprettet"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Sletter data fra cachen"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Finder pakker som leverer en given værdi"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Kontrol af tilgængelige pakkeopdateringer"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Søger efter en given streng i pakkeinformationerne"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Søger i pakkerne: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Opdaterer pakker, tager hensyn til overflødiggjorte pakker"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Opsætning af opgraderingsprocessen"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Installer en lokal RPM-fil"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Opsætning af lokalpakkeprocessen"
  
@@ -24146,150 +25136,150 @@ index a7202e2..ee9b9e3 100644
 -msgstr "Bestem hvilken pakke som leverer en bestemt afhængighed"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Søger efter afhængighed i pakkerne:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Kør en interaktiv Yum-skal"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Opsætning af Yum-skal"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Viser en pakkes afhængigheder"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Finder afhængigheder: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Viser de konfigurerede pakkearkiver"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "aktiveret"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "deaktiveret"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Pakkearkivs-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Pakkearkivnavn    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Pakkearkivstatus  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Pakkearkivsversion: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Pakkearkivflag    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Kildedistroflag: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Pakkearkiv opdateret : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Pakkearkivpakker    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Pakkearkivstørrelse    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Pakkearkivbaseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Pakkearkivsmetahenvisning: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Opdateret    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Pakkearkivspejle: "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Aldrig (senest: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Med det samme (senest: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekund(er) (senest: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Pakkearkiv udløber  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Pakkearkiv ekskluderer : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Pakkearkiv inkluderer : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Pakkearkiv ekskluderet: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Pakkearkivsfilnavn: "
@@ -24297,33 +25287,33 @@ index a7202e2..ee9b9e3 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "kildeid"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "kildenavn"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Viser hjælp om brugen af en kommando"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Ingen tilgængelig hjælp til %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -24335,7 +25325,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\naliaser: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -24347,152 +25337,186 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Opsætning af geninstallationsprocessen"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "geninstallér en pakke"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Opsætning af nedgraderingsprocessen"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "nedgradér en pakke"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum versiongrupper:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Gruppe   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Pakker:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installeret:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
 -msgstr "Gruppe-Installeret"
 +msgstr "Gruppeinstalleret:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Tilgængelige:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Gruppe-Tilgængelig:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Vis eller brug overførselshistorik"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Overførsler:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Starttid    :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Sluttid     :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Tæller      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpmdb  :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yumdb  :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Ugyldig underkommando for historik, brug: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Du har ikke adgang til historikdatabasen."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Kontrollér for problemer i rpmdb'en"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "indlæs en gemt overførsel fra filnavn"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Ingen gemt overførselsfil angivet."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "indlæser overførsel fra %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
 +msgstr "Overførsel indlæst fra %s med %s medlemmer"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
+ msgstr ""
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -24500,37 +25524,30 @@ index a7202e2..ee9b9e3 100644
  msgid " Yum checks failed: %s"
 -msgstr ""
 +msgstr " Yum-kontrol mislykkedes: %s"
-+
-+#: ../yummain.py:110
-+msgid "No read/execute access in current directory, moving to /"
-+msgstr "Ingen læse-/køre-adgang i nuværende mappe, flytter til /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Ingen getcwd()-adgang i nuværende mappe, flytter til /"
  
 -#: ../yummain.py:114
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "Kan ikke oprette låsfil; afslutter"
-+
-+#: ../yummain.py:134
- 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..."
+-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:98
++msgid "No read/execute access in current directory, moving to /"
++msgstr "Ingen læse-/køre-adgang i nuværende mappe, flytter til /"
  
 -#: ../yummain.py:120
 -msgid "Can't create lock file; exiting"
 -msgstr ""
--
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Ingen getcwd()-adgang i nuværende mappe, flytter til /"
+ 
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Løser afhængigheder"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -24540,7 +25557,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Din overførsel blev gemt, kør den igen med:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -24580,7 +25597,7 @@ index a7202e2..ee9b9e3 100644
  msgstr "Medlem: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s konverteret til installation"
@@ -24637,7 +25654,7 @@ index a7202e2..ee9b9e3 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Tilstand for pakke som leverer %s: %s"
-@@ -2113,1022 +2194,1069 @@ msgstr "Tilstand for pakke som leverer %s: %s"
+@@ -2113,1022 +2317,1140 @@ 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 :(
@@ -24649,131 +25666,140 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Prøver at opdatere %s for at løse afhængigheder"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
 +msgstr "Ingen opdateringsstier fundet for %s. Fejl!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Succes -- tom overførsel"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Genstarter løkke"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Afhængighedsproces afslutter"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Succes - afhængigheder løst"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Kontrollerer afhængigheder for %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "bedre arkitektur i po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s overflødigør %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -24784,25 +25810,25 @@ index a7202e2..ee9b9e3 100644
 +msgstr "arkitekturdistribution sammenligner %s med %s på %s\n  Vinder: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "normal kilde-RPM %s og %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "basepakke %s er installeret for %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "kræver minimalt: %d"
@@ -24810,153 +25836,163 @@ index a7202e2..ee9b9e3 100644
 +msgstr "udbyder vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Vinder: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "kræver minimalt: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Taber(med %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Bedste orden: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "udvidelsesmoduler er allerede initieret"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Læser lokal RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Opsætning af pakkelister"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "derfor kan dette pakkearkiv ikke blive nulstillet.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Bygger opdateringsobjekt"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Henter gruppemetadata"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Tilfører gruppefil fra pakkearkiv: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Ingen tilgængelige grupper i noget pakkearkiv"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Henter metadata for pakkemærker"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Tilføjer mærker fra pakkearkiv: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importerer yderligere information om filliste"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -24966,26 +26002,59 @@ index a7202e2..ee9b9e3 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Finder unødvendige afhængighedsrester"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "Beskyttede flerbiblioteksversioner: %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -24995,14 +26064,14 @@ index a7202e2..ee9b9e3 100644
 +msgstr "\nPakker sprunget over på grund af problemer med afhængigheder:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s fra %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -25011,22 +26080,22 @@ index a7202e2..ee9b9e3 100644
 +msgstr "** Fandt %d før-eksisterende rpmdb-problem(er), \"yum check\" giver følgende:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Advarsel: RPMDB er ændret udenfor yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "manglende afhængigheder"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "installeret konflikt"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -25034,18 +26103,18 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Advarsel: skriptlet eller andre ikke-fatale fejl opstod under overførslen."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Overførsel kunne ikke starte:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Kunne ikke køre overførsel."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Kunne ikke slette transaktionsfilen %s"
@@ -25053,7 +26122,7 @@ index a7202e2..ee9b9e3 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s skulle være blevet installeret, men det blev den ikke!"
@@ -25064,7 +26133,7 @@ index a7202e2..ee9b9e3 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s skulle være blevet fjernet, men det blev den ikke!"
@@ -25082,32 +26151,32 @@ index a7202e2..ee9b9e3 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Kunne ikke åbne lås %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Kunne ikke kontrollere om PID %s er aktiv"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -25118,23 +26187,23 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Pakke matcher ikke den tænkte nedhentning. Forslag: kør yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Kunne ikke udføre checksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Pakken matcher ikke checksum"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "bruger lokal kopi af %s"
@@ -25145,18 +26214,21 @@ index a7202e2..ee9b9e3 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Ikke plads nok i nedhentningskataloget %s\n"
 -"    * fri     %s\n"
 -"    * behøvet %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Headerfil er ikke komplet."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -25166,55 +26238,55 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Headerfil er ikke i lokal cache og kun-caching-tilstand er aktiveret. Kan ikke hente %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Kunne ikke åbne pakke %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Pakken %s er ikke signeret"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Kan ikke fjerne %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s fjernet"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Kan ikke slette %s filen %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s filen %s er slettet"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s filer slettet"
@@ -25224,19 +26296,19 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "%d %s-filer fjernet"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -25246,7 +26318,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "searchPackages() vil forsvinde i en fremtidig version af Yum.                      Brug searchGenerator() istedet. \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Genemsøger %d pakker"
@@ -25256,115 +26328,129 @@ index a7202e2..ee9b9e3 100644
 +msgstr[1] "Søger %d pakker"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "gennemsøger pakke %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "gennemsøger filopslag"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "søger efter afhængigheder"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "Gruppen %s findes ikke"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "pakken %s var ikke markeret i gruppen %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Springer pakke %s fra gruppe %s over"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Tilføjer pakken %s fra gruppen %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Advarsel: Gruppe %s har ingen pakker."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
+ msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
 +msgstr "Gruppe %s har ingen %u konditionelle pakker, som måske installeres."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
 -msgstr "Pakken %s kunne ikke findes i pakkeliste"
 +msgstr "Pakkepar %s kunne ikke findes i pakkeliste"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
 -msgstr ""
 +msgstr "Ugyldig versionsflag fra: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Ingen pakke fundet for %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Pakkeobjektet er ikke en pakkeobjektinstans"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Der er intet angivet til installation"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Kontrollerer for virtueludbyder eller filudbyder for %s"
@@ -25376,30 +26462,30 @@ index a7202e2..ee9b9e3 100644
 -msgstr "Ingen match for argument: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Pakken %s installeret og ikke tilgængelig"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Ingen pakke(r) er tilgængelig(e) til installation"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Pakken: %s  - allerede i overførselssættet"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -25409,19 +26495,19 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Pakke %s er forældret af %s, men forældet pakke tilbyder ikke afhængigheder"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -25430,14 +26516,14 @@ index a7202e2..ee9b9e3 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
@@ -25445,35 +26531,35 @@ index a7202e2..ee9b9e3 100644
 +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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Ingen match for argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Ingen pakke matchede til opgradering: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -25483,43 +26569,43 @@ index a7202e2..ee9b9e3 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Ingen pakker fundet til fjernelse"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Ingen pakke matchede til fjernelse: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, 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:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Fjerner %s fra overførslen"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Undersøger %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -25528,13 +26614,13 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Kan ikke tilføje pakke %s til overførsel. Ikke en kompatibel arkitektur: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, 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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -25545,7 +26631,7 @@ index a7202e2..ee9b9e3 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -25554,121 +26640,121 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Pakke %s.%s ikke installeret, kan ikke opdatere den. Kør yum install for at installere den i stedet."
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Ekskluderer %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Markerer %s til installation"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Kan ikke åbne fil: %s. Springer over."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Ingen pakke(r) er tilgængelig(e) til nedgradering"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Ingen match for tilgængelig pakke: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
 +msgstr "Kunne ikke nedgradere: %s"
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
  msgstr "Kunne ikke opgradere: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "Henter nøgle fra %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
 +msgstr "GPG-nøglesignatur ved nøgle %s matcher ikke CA-nøgle for pakkearkiv: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
 -msgstr ""
 +msgstr "GPG-nøglesignatur verificeret op mod CA-nøgle(r)"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Ugyldig GPG-nøgle fra %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -25683,7 +26769,7 @@ index a7202e2..ee9b9e3 100644
 +msgstr "Importerer %s-nøgle 0x%s:\n Brugerid    : \"%s\"\n Fingeraftryk: %s\n Pakke       : %s (%s)\n Fra         : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -25694,8 +26780,9 @@ index a7202e2..ee9b9e3 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Importerer %s-nøgle 0x%s:\n Brugerid    : \"%s\"\n Fingeraftryk: %s\n Fra         : %s"
-+
-+#: ../yum/__init__.py:5379
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -25704,32 +26791,31 @@ index a7202e2..ee9b9e3 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Fejlende pakke er: %s\n GPG-nøgler er konfigureret som: %s\n"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Nøglen blev importet med succes"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Installerede ikke nogen nøgler"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -25740,20 +26826,20 @@ index a7202e2..ee9b9e3 100644
 +msgstr "GPG-nøglen er vist for \"%s\" pakkearkivet er allerede installeret, men den er ikke korrekt for denne pakke.\nKontrollér at konfigurationen af nøgle-URL'er er korrekt for denne kilde."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nej"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ja"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -25764,7 +26850,7 @@ index a7202e2..ee9b9e3 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA-nøgle: %s\n Fejlende arkiv er: %s\n GPG-nøgler er konfigureret som: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG-nøgle på %s (0x%s) er allerede importeret"
@@ -25772,20 +26858,20 @@ index a7202e2..ee9b9e3 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Importering af nøgle mislykkedes"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Importering af nøgle %s mislykkedes"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
 -msgstr ""
 +msgstr "Installerede ikke nogen nøgler for pakkearkiv %s"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -25796,133 +26882,133 @@ index a7202e2..ee9b9e3 100644
 +msgstr "GPG-nøglen listet for pakkearkivet \"%s\" er allerede installeret, men de er ikke korrekte.\nKontrollér at de korrekte nøgle-url'er er konfigureret for dette pakkearkiv."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Kunne ikke finde et passende filspejl."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Fejl blev fundet under hentning af pakker."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Rapportér venligst denne fejl på %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Fejl i testoverførslen: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +msgstr "Afhængigheder ikke løst. Vil ikke gemme uløst overførsel."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr ""
 +msgstr "Kunne ikke gemme overførselsfil %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
 +msgstr "Kunne ikke få adgang til eller læse gemte overførsler %s : %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "rpmdb version matchede ikke gemt overførselsversion, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " ignorerer, som forespurgt."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr " afslutter."
- 
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
 -msgstr ""
 +msgstr "kan ikke finde tsflags eller tsflags ikke heltal."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
 -msgstr ""
 +msgstr "Fandt txmbr i nuværende ukendt status: %s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
 -msgstr ""
 +msgstr "Kunne ikke finde txmbr: %s i status %s"
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
 -msgstr ""
 +msgstr "Kunne ikke finde txmbr: %s fra oprindelse: %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 +msgstr "Overførselsmedlemmer, relationer mangler eller ts er blevet ændret,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
 +msgstr " ignorerer, som forespurgt. Du skal redepsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s er allerede blevet besøgt og kan ikke fjernes."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Undersøger revdeps af %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s har revdep %s, som blev brugerinstalleret."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
+ msgstr ""
+ 
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s har ingen brugerinstallerede revdeps."
- 
++
  #. Mostly copied from YumOutput._outKeyValFill()
 -#: ../yum/plugins.py:209
 +#: ../yum/plugins.py:212
@@ -26021,7 +27107,7 @@ index a7202e2..ee9b9e3 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s giver %s men kan ikke findes"
-@@ -3137,6 +3265,19 @@ msgstr "%s giver %s men kan ikke findes"
+@@ -3137,6 +3459,23 @@ msgstr "%s giver %s men kan ikke findes"
  msgid "Repackaging"
  msgstr "Genpakning"
  
@@ -26030,7 +27116,7 @@ index a7202e2..ee9b9e3 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verificér: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -26038,10 +27124,14 @@ index a7202e2..ee9b9e3 100644
 +"    * needed %s"
 +msgstr "Ikke plads nok i nedhentningskataloget %s\n    * fri     %s\n    * behøvet %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3149,8 +3290,7 @@ msgstr "RPM %s fejlede md5-kontrol"
+@@ -3149,8 +3488,7 @@ msgstr "RPM %s fejlede md5-kontrol"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -26051,17 +27141,17 @@ index a7202e2..ee9b9e3 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3166,5 +3306,3 @@ msgstr "Ødelagt headerfil %s"
+@@ -3166,5 +3504,3 @@ msgstr "Ødelagt headerfil %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Fejl ved åbning af RPM %s - fejl %s"
 -
 -
 diff --git a/po/de.po b/po/de.po
-index fa39cb0..f9c81d8 100644
+index fa39cb0..f9186ca 100644
 --- a/po/de.po
 +++ b/po/de.po
-@@ -2,947 +2,974 @@
+@@ -2,947 +2,1057 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -26085,9 +27175,9 @@ index fa39cb0..f9c81d8 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: German (http://www.transifex.net/projects/p/yum/team/de/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-12-11 20:52+0000\n"
-+"Last-Translator: Roman Spirgi <bigant at fedoraproject.org>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: German (http://www.transifex.com/projects/p/yum/language/de/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -26097,7 +27187,7 @@ index fa39cb0..f9c81d8 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Aktualisieren"
  
@@ -26108,31 +27198,31 @@ index fa39cb0..f9c81d8 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Aktualisiert"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installiert"
  
@@ -26160,7 +27250,7 @@ index fa39cb0..f9c81d8 100644
  msgstr "Gelöscht: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Entfernen"
  
@@ -26170,73 +27260,73 @@ index fa39cb0..f9c81d8 100644
  msgstr "Aufräumen"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
 -msgstr "Befehl \"%s\" ist bereits definiert"
 +msgstr "Befehl »%s« ist bereits definiert"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
 -msgstr "Repositories werden eingerichtet"
 +msgstr "Paketquellen werden eingerichtet"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
 -msgstr "Lese Repository-Metadaten aus lokalen Dateien ein"
 +msgstr "Paketquellen-Metadaten werden aus lokalen Dateien eingelesen"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Konfigurationsfehler: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Optionenfehler: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installiert: %s-%s am %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
 -msgstr "  Gebaut    : %s am %s"
 +msgstr "  Erstellt   : %s am %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Übermittelt: %s am %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Sie müssen irgendeinen Befehl eingeben"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Festplattenplatz-Anforderungen:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -26249,7 +27339,7 @@ index fa39cb0..f9c81d8 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -26257,86 +27347,108 @@ index fa39cb0..f9c81d8 100644
 -"Fehler-Zusammenfassung\n"
 -"----------------------\n"
 +msgstr "Fehler-Zusammenfassung\n----------------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Sperrdatei kann nicht angelegt werden, Abbruch"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Eine andere Anwendung hält Yum derzeit gesperrt. Abbruch wie in exit_on_lock festgelegt"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
 -msgstr "Versuche Transaktion auszuführen, aber es ist nichts zu tun. Beende."
 +msgstr "Es wird versucht, die Transaktion auszuführen, aber es ist nichts zu tun. Abbruch."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " wird ignoriert, wie gewünscht."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " wird abgebrochen."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
 -msgstr "Beende nach Befehl des Benutzers"
 +msgstr "Nach Befehl des Benutzers wird beendet"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
 -msgstr "Lade Pakete herunter:"
 +msgstr "Pakete werden heruntergeladen:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Fehler beim Herunterladen der Pakete:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Transaktionsüberprüfung wird ausgeführt"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
 -msgstr ""
 -"FEHLER Sie müssen RPM aktualisieren, damit es mit Folgendem umgehen kann:"
 +msgstr "FEHLER Sie müssen RPM aktualisieren, damit es mit Folgendem umgehen kann:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "FEHLER bei Transaktionsprüfung gegenüber Depsolve:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM muss aktualisiert werden"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Bitte melden Sie diesen Fehler unter %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
 -msgstr "Führe Verarbeitungstest durch"
 +msgstr "Transaktionstest wird durchgeführt"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
 -msgstr "Prüffehler bei Verarbeitung:\n"
 +msgstr "Fehler beim Prüfen der Transaktion:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
 -msgstr "Verarbeitungstest erfolgreich"
 +msgstr "Transaktionstest war erfolgreich"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
 -msgstr "Führe Verarbeitung durch"
 +msgstr "Transaktion wird durchgeführt"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -26346,19 +27458,19 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Automatischer Import der Schlüssel wird verweigert, wenn unbeaufsichtigt ausgeführt.\nBenutzen Sie »-y« zum Überschreiben."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
 -msgstr "  * Meinten Sie vielleicht:"
 +msgstr "  * Meinten Sie vielleicht: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Kein Paket %s%s%s verfügbar."
@@ -26366,22 +27478,27 @@ index fa39cb0..f9c81d8 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paket(e) zum Installieren"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d Paket zu installieren"
 +msgstr[1] "%d Pakete zu installieren"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nichts zu tun"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d Pakete zur Aktualisierung markiert"
@@ -26391,12 +27508,12 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete zur Aktualisierung markiert"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Keine Pakete für die Aktualisierung markiert"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -26406,13 +27523,13 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete zur Distributionsaktualisierung markiert"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
 -msgstr ""
 +msgstr "Keine Pakete zur Distributionsaktualisierung markiert"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d Pakete für die Entfernung markiert"
@@ -26422,14 +27539,14 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete zu entfernen"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -26437,13 +27554,13 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete zum Zurücksetzen markiert"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (von %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Installiertes Paket %s%s%s%s nicht verfügbar."
@@ -26451,7 +27568,7 @@ index fa39cb0..f9c81d8 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paket(e) zum Neuinstallieren"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -26459,30 +27576,30 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete neu zu installieren"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Keine Pakete bereitgestellt"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paket(e) zum Installieren"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "N/S-Übereinstimmung: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  %sonly%s-Übereinstimmungen in Name und Zusammenfassung, «Alles suchen» für vollständige Suche."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -26490,31 +27607,31 @@ index fa39cb0..f9c81d8 100644
 +msgstr "  %sonly%s-Übereinstimmungen in vollständigem Namen und Zusammenfassung, «Alles suchen» für komplette Suche."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Treffer: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  %smostly%s-Übereinstimmungen in Name und Zusammenfassung, «Alles suchen» für vollständige Suche."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Warnung: Keine Übereinstimmung gefunden für: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Keine Übereinstimmungen gefunden"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Kein Paket gefunden für %s"
@@ -26524,130 +27641,154 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Fehler: Keine Pakete gefunden für:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
 -msgstr "Räume Repos auf:"
 +msgstr "Quellen werden aufgeräumt:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
 -msgstr "Räume alles auf"
 +msgstr "Alles wird aufgeräumt"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
 -msgstr "Räume Header auf"
 +msgstr "Header werden aufgeräumt"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
 -msgstr "Räume Pakete auf"
 +msgstr "Pakete werden aufgeräumt"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
 -msgstr "Räume XML-Metadaten auf"
 +msgstr "XML-Metadaten werden aufgeräumt"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
 -msgstr "Räume Datenbank-Speicher auf"
 +msgstr "Datenbank-Speicher wird aufgeräumt"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
 -msgstr "Räume Metadaten für abgelaufene Caches auf"
 +msgstr "Metadaten für abgelaufene Caches werden aufgeräumt"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
 -msgstr ""
 +msgstr "Zwischengespeicherte rpmdb-Daten werden geleert"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
 -msgstr "Räume Plugins auf"
 +msgstr "Plugins werden aufgeräumt"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Warnung: Keine Gruppenübereinstimmung: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Installierte Gruppen:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Installierte Sprachgruppen:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Verfügbare Gruppen:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "Verfügbare Sprachgruppen:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Fertig"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Warnung: Gruppe %s existiert nicht."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"Keine Pakete in irgendeiner Gruppe verfügbar zum Installieren oder "
 -"Aktualisieren"
 +msgstr "Keine Pakete in irgendeiner Gruppe verfügbar zum Installieren oder Aktualisieren"
++
++#: ../cli.py:1885
++#, python-format
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d Paket zu installieren"
++msgstr[1] "%d Pakete zu installieren"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, 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] "%d Paket zu installieren"
-+msgstr[1] "%d Pakete zu installieren"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Es existiert keine Gruppe mit dem Namen %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Keine Pakete zum Entfernen aus dem Gruppen gefunden"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d Paket(e) zum Entfernen"
@@ -26657,13 +27798,13 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete zu entfernen"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paket %s ist bereits installiert, überspringen"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
 -msgstr "Verwerfe nicht vergleichbare Pakete %s.%s"
@@ -26671,7 +27812,7 @@ index fa39cb0..f9c81d8 100644
  
  #. we've not got any installed that match n or n+a
 -#: ../cli.py:1423
-+#: ../cli.py:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -26680,19 +27821,19 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Kein anderes %s installiert, es wird zur Liste für eine potenzielle Installation hinzugefügt"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Plugin-Optionen"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
 -msgstr "Kommandozeilen-Fehler: %s"
 +msgstr "Befehlszeilenfehler: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -26705,381 +27846,388 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\n%s: %s Option benötigt ein Argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot muss ein absoluter Pfad sein: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "Hilfeinformation anzeigen und beenden"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "fehlertolerant sein"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
 -msgstr ""
 -"laufe komplett aus dem Zwischenspeicher, aktualisiere Zwischenspeicher nicht"
 +msgstr "komplett aus dem Zwischenspeicher laufen, Zwischenspeicher nicht aktualisieren"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "Ort der Konfigurationsdatei"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maximale Befehlswartezeit"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
 -msgstr "Debugging-Ausgabe-Stufe"
 +msgstr "Debugging-Ausgabestufe"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr "Duplikate, in Repos und in Listen/Suchen-Befehlen, anzeigen"
 +msgstr "Duplikate in Paketquellen und in Listen/Suchen-Befehlen anzeigen"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
 -msgstr "Fehler-Ausgabe-Stufe"
 +msgstr "Fehler-Ausgabestufe"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "Stufe der Debugging-Ausgabe für rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "Stiller Betrieb"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "Wortreicher Betrieb"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
 -msgstr "Beantwortet alle Fragen mit 'ja'"
 +msgstr "Alle Fragen bejahen"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "Alle Fragen verneinen"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "Yum-Version anzeigen und Programm beenden"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
 -msgstr "Wurzel-Installationsverzeichnis setzen"
 +msgstr "Wurzel-Installationsordner festlegen"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr "aktiviere ein oder mehrere Repositories (Wildcards erlaubt)"
 +msgstr "eine oder mehrere Paketquellen aktivieren (Platzhalter erlaubt)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr "deaktiviere ein oder mehrere Repositories (Wildcards erlaubt)"
 +msgstr "eine oder mehrere Paketquellen deaktivieren (Platzhalter erlaubt)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
 -msgstr "schliesse Paket(e) nach Namen oder global aus"
 +msgstr "Paket(e) nach Namen oder global ausschließen"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
 -msgstr "deaktiviere Ausschluss von 'main', einem Repository oder allem"
 +msgstr "Ausschluss von »main«, einer Paketquelle oder allem deaktivieren"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
 -msgstr "aktiviere veraltetes Verarbeiten während Aktualisierung"
 +msgstr "Verarbeitung veralteter Pakete während der Aktualisierung aktivieren"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
 -msgstr "deaktiviere Yum-Plugins"
 +msgstr "Yum-Plugins deaktivieren"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
 -msgstr "deaktiviere GPG-Signatur-Prüfung"
 +msgstr "GPG-Signatur-Prüfung deaktivieren"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
 -msgstr "deaktiviere Plugins nach Namen"
 +msgstr "Plugins nach Namen deaktivieren"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
 -msgstr "aktiviere Plugins nach Namen"
 +msgstr "Plugins nach Namen aktivieren"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
 -msgstr "überspringe Pakete mit Abhängigkeitsauflösungsproblemen"
 +msgstr "Pakete mit Abhängigkeitsauflösungsproblemen überspringen"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontrolliert, ob Farbe benutzt wird"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
 +msgstr "Wert für $releasever in yum-Konfiguration und Paketquellen-Daten setzen"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
+ msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
- msgid "set arbitrary config and repo options"
--msgstr ""
-+msgstr "Benutzerdefinierte Optionen für Konfiguration und Paketquelle festlegen"
+-msgid "set arbitrary config and repo options"
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../cli.py:2351
++msgid "set arbitrary config and repo options"
++msgstr "Benutzerdefinierte Optionen für Konfiguration und Paketquelle festlegen"
++
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mär"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mai"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Aug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dez"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
 -msgstr "Versuche anderen Spiegel-Server."
 +msgstr "Anderer Spiegelserver wird versucht."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Name       : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Architektur : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
 -msgstr ""
 +msgstr "Epoche             :%s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Version    : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Ausgabe    : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Größe : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
 -msgstr "Repo        : %s"
 +msgstr "Quelle      : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
 -msgstr "Aus repo    : %s"
 +msgstr "Aus Quelle  : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Übermittler  : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Übermittlungszeit  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
 -msgstr "Build-Zeit  : %s"
 +msgstr "Erstellungszeit: %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Installationszeit: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Installiert von: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Verändert von  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
 -msgstr "Zusammenfassung     : "
 +msgstr "Zusammenfassung: "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL        : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
 -msgstr "Lizenz     : "
 +msgstr "Lizenz      : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr "Beschreibung : "
 +msgstr "Beschreibung: "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "j"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ja"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nein"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Ist dies in Ordnung? [j/N] :"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -27090,169 +28238,193 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\nGruppe: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
 -msgstr " Gruppen-ID: %s"
 +msgstr " Gruppenkennung: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Beschreibung: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr "Sprache: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Obligatorische Pakete:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Standard-Pakete:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Optionale Pakete:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Zwangsbedingte Pakete:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Installierte Pakete:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "Paket: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Keine Abhängigkeiten für dieses Paket"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  Abhängigkeit: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Nicht erfüllte Abhängigkeit"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Übereinstimmung von:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
 -msgstr "Lizenz     : %s"
 +msgstr "Lizenz      : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Dateiname     : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Stellt bereit: "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Andere     : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Fehler beim Berechnen der Gesamtgröße der Downloads"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Gesamtgröße: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Gesamte Downloadgröße: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Installationsgröße: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Fehler beim Berechnen der Installationsgröße"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Neuinstallieren"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Downgrading"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Als Abhängigkeiten installiert"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Aktualisiert für Abhängigkeiten"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Entfernt für Abhängigkeiten"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Übersprungen (Abhängigkeitsprobleme)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Nicht installiert"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Nicht verfügbar"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paket"
 +msgid_plural "Packages"
@@ -27260,34 +28432,34 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "Pakete"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arch"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Version"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
 -msgstr "Repository"
 +msgstr "Paketquelle"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Größe"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     ersetzt  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -27303,7 +28475,7 @@ index fa39cb0..f9c81d8 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "%5.5s Paket(e) installieren\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installieren"
  
@@ -27311,7 +28483,7 @@ index fa39cb0..f9c81d8 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "%5.5s Paket(e) aktualisieren\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Aktualisieren"
  
@@ -27319,7 +28491,7 @@ index fa39cb0..f9c81d8 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "%5.5s Paket(e) entfernen\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Entfernen"
  
@@ -27327,7 +28499,7 @@ index fa39cb0..f9c81d8 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "%5.5s Paket(e) reinstallieren\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Neu installieren"
  
@@ -27335,59 +28507,59 @@ index fa39cb0..f9c81d8 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Zurücksetzen"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Abhängiges Paket"
 +msgstr[1] "Abhängige Pakete"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Entfernt"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
 -msgstr "Abhängigkeiten entfernt"
 +msgstr "Abhängigkeit entfernt"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Abhängigkeit installiert"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Abhängigkeit aktualisiert"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Ersetzt       "
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Fehlgeschlagen"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "zwei"
  
-@@ -950,574 +977,610 @@ msgstr "zwei"
+@@ -950,574 +1060,604 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -27400,244 +28572,244 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n Aktueller Download abgebrochen, %sunterbrechen Sie (Ctrl-c) erneut%s innerhalb %s%s%s Sekunden\nzum Beenden.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "Benutzer-Unterbrechung"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Gesamt"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
 -msgstr ""
 +msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
 -msgstr ""
 +msgstr "<nicht gesetzt>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "System"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
 +msgstr "Zusammengeführte Transaktion %d nach %d überspringen, da es Überschneidungen gibt"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Keine Transaktionen"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Schlechte Transaktions-IDs oder Paket(e) angegeben"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Befehlszeile"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Angemeldeter Benutzer"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Datum und Zeit"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Aktion(en)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Verändert"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Keine Transaktions-ID angegeben"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Schlechte Transaktions-ID angegeben"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Angebene Transaktions-ID nicht gefunden"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Mehr als eine Transaktions-ID gefunden!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Keine Transaktions-ID oder Paket angegeben"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
 -msgstr ""
 +msgstr "Zurückgesetzt"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Älter"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Neuer"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Transaktions-ID :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Anfangszeit :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Anfang rpmdb    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u Sekunden)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u Minuten)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u Stunden)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u Tage)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Endzeit :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Ende rpmdb      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Benutzer :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Rückgabe-Code    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
 -msgstr ""
 +msgstr "Abgebrochen"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Fehlschläge:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
 -msgstr ""
 +msgstr "Fehlschlag:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Erfolg"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
 -msgstr ""
 +msgstr "Befehlszeile   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
 -msgstr ""
@@ -27645,35 +28817,35 @@ index fa39cb0..f9c81d8 100644
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
 -msgstr ""
 +msgstr "Transaktion ausgeführt mit:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Veränderte Pakete:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Übersprungene Pakete:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
 -msgstr ""
 +msgstr "Rpmdb-Probleme:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
 -msgstr ""
 +msgstr "Ausgabe des Skriptlets:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Fehler:"
  
@@ -27682,19 +28854,19 @@ index fa39cb0..f9c81d8 100644
 -msgstr "Installieren"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
 -msgstr ""
 +msgstr "Abhängigkeiteninstallation"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
 -msgstr ""
 +msgstr "Veraltet"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Löschen"
  
@@ -27707,232 +28879,233 @@ index fa39cb0..f9c81d8 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
 -msgstr ""
 +msgstr "Aktualisieren"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Zeit"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Gestern"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Letzte Woche"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "In den letzten 2 Wochen"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "In den letzten 3 Monaten"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "In den letzten 6 Monaten"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Letztes Jahr"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Vor über einem Jahr"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Keine Transaktion %s gefunden"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Transaktions-ID"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Verfügbare zusätzliche Verlaufsinformationen"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paket          :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Status         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Größe          :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Build Host         :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Erstellungszeit:"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Paketierer     :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Hersteller                 :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Lizenz         :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "Adresse        :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Quellpaket     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Übermittlungszeit       :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Übermittler           :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Grund          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Aus Quelle     :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Installiert von:"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Geändert von   :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installiert"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "eine Aktualisierung"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "gelöscht"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "reinstalliert"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "ein Downgrade"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "Aufräumen"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "aktualisiert"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "veraltet"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
 -msgstr "--> Führe Transaktionsprüfung aus"
 +msgstr "--> Transaktionsprüfung wird ausgeführt"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr "--> Starte Abhängigkeitsauflösung mit den neuen Änderungen neu."
 +msgstr "--> Abhängigkeitsauflösung wird mit den neuen Änderungen neu gestartet."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Abhängigkeitsauflösung beendet"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
 -msgstr "--> Verarbeite Abhängigkeiten: %s für Paket: %s"
 +msgstr "--> Abhängigkeit %s wird für Paket %s verarbeitet"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
 -msgstr "---> Behalte Paket: %s"
-+msgstr "---> Paket wird behalten: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Nicht aufgelöste Abhängigkeit: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paket: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -27943,7 +29116,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n    Benötigt: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -27954,7 +29127,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -27965,7 +29138,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -27976,114 +29149,114 @@ index fa39cb0..f9c81d8 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Aktualisiert durch"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
 -msgstr ""
 +msgstr "Zurückgesetzt von"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Überholt durch"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Verfügbar"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
 -msgstr "--> Verarbeite Konflikt: %s kollidiert mit %s"
 +msgstr "--> Konflikt wird verarbeitet: %s kollidiert mit %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr "--> Fülle Verarbeitungsset mit ausgewählten Paketen. Bitte warten."
 +msgstr "--> Transaktionssatz wird mit ausgewählten Paketen gefüllt. Bitte warten."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr "---> Lade Header für %s herunter, um ins Verarbeitungsset zu packen."
 +msgstr "---> Header für %s werden heruntergeladen, um sie in den Transaktionssatz zu packen."
- 
--#: ../utils.py:99
++
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Überprüfung läuft"
-+
-+#: ../utils.py:129
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
  msgid "Running"
  msgstr "Läuft"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Schläft"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Nicht unterbrechbar"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Verfolgt/Gestoppt"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Unbekannt"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Die andere Anwendung ist: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Die andere Anwendung ist: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Speicher : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
 -msgstr "  Gestartet: %s - vor %s"
 +msgstr "    Gestartet: %s - vor %s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Status  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -28095,7 +29268,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\nWird nach Abbruch durch den Benutzer beendet"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -28107,7 +29280,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\nWegen defekter Pipe wird abgebrochen"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -28120,54 +29293,52 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
-+msgstr "Eine andere Anwendung hält Yum derzeit gesperrt. Abbruch wie in exit_on_lock festgelegt"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
 -msgstr "PluginExit Fehler: %s"
 +msgstr "PluginExit-Fehler: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
 -msgstr "Yum Fehler: %s"
 +msgstr "Yum-Fehler: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Fehler: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
 -msgstr " Sie können versuchen mit --skip-broken das Problem zu umgehen."
 +msgstr " Sie können versuchen, mit --skip-broken das Problem zu umgehen."
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
  msgid " You could try running: rpm -Va --nofiles --nodigest"
 -msgstr ""
 +msgstr " Sie könnten Folgendes versuchen: rpm -Va --nofiles --nodigest"
  
 -#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
 -msgstr "Unbekannte(r) Fehler: Exit Code: %d:"
 +msgstr "Unbekannte(r) Fehler: Exit-Code: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -28177,7 +29348,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\nAbhängigkeiten aufgelöst"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Komplett!"
  
@@ -28195,7 +29366,7 @@ index fa39cb0..f9c81d8 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1532,589 +1595,604 @@ msgid ""
+@@ -1532,589 +1672,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -28228,55 +29399,75 @@ index fa39cb0..f9c81d8 100644
  msgid "Error: Need to pass a list of pkgs to %s"
 -msgstr "Fehler: Muss eine Liste von Paketen an %s übergeben"
 +msgstr "Fehler: Eine Liste von Paketen muss an %s übergeben werden"
++
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
 -msgstr "Fehler: Brauche einen Begriff, der passt"
 +msgstr "Fehler: Ein passender Begriff wird benötigt"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
 -msgstr "Fehler: Brauche eine Gruppe oder eine Liste von Gruppen"
 +msgstr "Fehler: Eine Gruppe oder eine Gruppenliste wird benötigt"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Fehler: Aufräumen benötigt eine Option: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Fehler: Ungültiges Argument für Aufräumen: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Kein Argument für Shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Dateinamen an Shell übergeben: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -28288,126 +29479,126 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Es gibt keine aktivierten Paketquellen.\nFühren sie »yum repolist all« aus, um zu sehen, welche Quellen eingerichtet sind.\nSie können Quellen mit yum-config-manager --enable <Quelle> aktivieren"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
 -msgstr "PAKET..."
 +msgstr "PAKET …"
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
 -msgstr "Installiere ein Paket oder Pakete auf Ihrem System"
 +msgstr "Ein Paket oder Pakete auf Ihrem System installieren"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
 -msgstr "Einrichten des Installationsprozess"
 +msgstr "Installationsprozess wird eingerichtet"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
 -msgstr "[PAKET...]"
 +msgstr "[PAKET …]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
 -msgstr "Aktualisiere ein Paket oder Pakete auf Ihrem System"
 +msgstr "Ein Paket oder Pakete auf Ihrem System aktualisieren"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
 -msgstr "Einrichten des Aktualisierungsprozess"
 +msgstr "Aktualisierungsprozess wird eingerichtet"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Installierte Pakete auf die neuesten verfügbaren Versionen synchronisieren"
 +msgstr "Installierte Pakete mit den neuesten verfügbaren Versionen abgleichen"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
 -msgstr ""
 +msgstr "Prozess der Distributionsaktualisierung wird eingerichtet"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
 -msgstr "Zeige Details über ein Paket oder einer Gruppe von Pakete an"
 +msgstr "Details zu einem Paket oder einer Gruppe von Pakete anzeigen"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Installierte Pakete"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Verfügbare Pakete"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Extra-Pakete"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Aktualisierte Pakete"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Veraltete Pakete"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Kürzlich hinzugefügte Pakete"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Keine übereinstimmenden Pakete zum Auflisten"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
 -msgstr "Liste von Paketen oder Gruppen von Paketen"
 +msgstr "Pakete oder Paketgruppen auflisten"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
 -msgstr "Entferne ein Paket oder Pakete auf Ihrem System"
 +msgstr "Ein Paket oder Pakete auf Ihrem System entfernen"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
 -msgstr "Einrichten des Entfernungsprozess"
 +msgstr "Entfernungsprozess wird eingerichtet"
-+
-+#: ../yumcommands.py:786
-+msgid "Display, or use, the groups information"
-+msgstr "Gruppeninformation anzeigen oder verwenden"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:906
++msgid "Display, or use, the groups information"
++msgstr "Gruppeninformation anzeigen oder verwenden"
++
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
 -msgstr "Einrichten des Gruppenprozess"
 +msgstr "Gruppenprozess wird eingerichtet"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Keine Gruppe, auf welcher der Befehl ausgeführt werden kann"
  
@@ -28418,7 +29609,7 @@ index fa39cb0..f9c81d8 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Ungültiger groups-Unterbefehl, verwenden Sie: %s."
@@ -28426,31 +29617,31 @@ index fa39cb0..f9c81d8 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Es ist keine Gruppendatei installiert."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Zeigt Details über eine Paket-Gruppe an"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Sie haben keinen Zugriff auf die Gruppendatenbank."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
 -msgstr "Generiere den Metadaten-Zwischenspeicher"
 +msgstr "Den Metadaten-Zwischenspeicher erzeugen"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
 -msgstr "Erstelle Zwischenspeicherungsdatei für alle Metadaten-Dateien."
 +msgstr "Zwischenspeicherungsdateien für alle Metadaten-Dateien werden erstellt"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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 "
@@ -28458,60 +29649,60 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Dies kann eine Weile dauern, abhängig von der Geschwindigkeit dieses Rechners"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metadaten-Zwischenspeicher erstellt"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
 -msgstr "Entferne gespeicherte Daten"
 +msgstr "Gespeicherte Daten entfernen"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
 -msgstr "Suche ein Paket, das den gegebenen Wert bereitstellt"
 +msgstr "Ein Paket suchen, das den gegebenen Wert bereitstellt"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
 -msgstr "Überprüfe auf verfügbare Paket-Aktualisierungen"
 +msgstr "Auf verfügbare Paket-Aktualisierungen überprüfen"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
 -msgstr "Suche nach Paket-Details für die gegebene Zeichenkette"
 +msgstr "Nach Paket-Details für die gegebene Zeichenkette suchen"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
 -msgstr "Suche Pakete:"
 +msgstr "Pakete suchen:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
 -msgstr "Aktualisiere Pakete, berücksichtige veraltete"
 +msgstr "Pakete aktualisieren, veraltetete berücksichtigen"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
 -msgstr "Einrichten des Upgradeprozesses"
 +msgstr "Distributionsaktualisierungsprozess wird eingerichtet"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
 -msgstr "Installiere ein lokales RPM"
 +msgstr "Ein lokales RPM installieren"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
 -msgstr "Einrichten der lokalen Paketverarbeitung"
 -
@@ -28521,158 +29712,158 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Lokale Paketverarbeitung wird eingerichtet"
  
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
 -msgstr "Suche Pakete für Abhängigkeit:"
 +msgstr "Pakete für Abhängigkeit suchen:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
 -msgstr "Führe eine interaktive Yum-Shell aus"
 +msgstr "Eine interaktive Yum-Shell ausführen"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
 -msgstr "Einrichten der Yum-Shell"
 +msgstr "Yum-Shell wird eingerichtet"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
 -msgstr "Liste von Paket-Abhängigkeiten"
 +msgstr "Paket-Abhängigkeiten auflisten"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
 -msgstr "Suche Abhängigkeiten:"
 +msgstr "Abhängigkeiten werden gesucht:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
 -msgstr "Zeige die konfigurierten Software-Repositories an"
 +msgstr "Die eingerichteten Paketquellen anzeigen"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "aktiviert"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "deaktiviert"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Repo-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Repo-name    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Repo-status  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-Revision: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tags    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-Distro-Tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo aktualisiert : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Repo-pkgs    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Repo-Größe    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-Metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Aktualisiert    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-Spiegel : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Nie (zuletzt: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
 -msgstr ""
 +msgstr "Aktuell (Vorher: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s Sekunde(n) (zuletzt: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
 -msgstr ""
 +msgstr "Repo-Verfall  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-ausgeschlossen : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-eingeschlossen : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repo-ausgeschlossen: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Paketquellen-Dateiname: "
@@ -28680,34 +29871,34 @@ index fa39cb0..f9c81d8 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "Repo-ID"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "Status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "Repo-Name:"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
 -msgstr "Zeigt eine kurze Verwendungsinformation"
 +msgstr "Eine kurze Verwendungsinformation anzeigen"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Keine Hilfe für %s vorhanden"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -28719,7 +29910,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\nAliase: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -28731,161 +29922,195 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\n\nAlias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
 -msgstr "Einrichten des Neuinstallationsprozess"
 +msgstr "Neuinstallationsprozess wird eingerichtet"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
 -msgstr "Installiere Paket neu"
 +msgstr "Paket neu installieren"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
 -msgstr "Einrichten des Downgrade-Prozesses"
 +msgstr "Zurücksetzungsprozess wird eingerichtet"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
 -msgstr "Downgrade eines Pakets"
 +msgstr "Ein Paket zurücksetzen"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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."
 +msgstr "Eine Version für das System und/oder die verfügbaren Paketquellen anzeigen."
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
 -msgstr ""
 +msgstr " Yum Gruppenversion:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Gruppe   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Pakete:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installiert:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Gruppe-installiert:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Verfügbar:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Gruppe-verfügbar:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Übertragungsverlauf anzeigen oder verwenden"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transaktionen:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Beginn      :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Ende        :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Anzahl      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  RPM-Datenbank:"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  Yum-Datenbank:"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
 -msgstr ""
 +msgstr "Ungültiges history Subkommando, benutze: %s"
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
 -msgstr ""
 +msgstr "Sie haben keinen Zugriff auf die Verlaufsdatenbank."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
 -msgstr ""
 +msgstr "RPM-Datenbank auf Probleme überprüfen"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "Eine gespeicherte Transaktion aus einem Dateinamen laden"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Keine Datei mit gespeicherten Transaktionen angegeben."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "Transaktion wird aus %s geladen"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
 +msgstr "Transaktion von %s geladen mit %s-Elementen"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
+ msgstr ""
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -28900,34 +30125,26 @@ index fa39cb0..f9c81d8 100644
 -msgstr ""
 -"Eine andere Anwendung blockiert momentan yum. Warte, dass sie beendet wird "
 -"..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Kein lesender/ausführender Zugriff im aktuellen Ordner, zu / wird gewechselt"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Kein Getcwd()-Zugriff auf aktuelles Verzeichnis, Wechseln zu /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
 -msgstr ""
-+msgstr "Sperrdatei kann nicht angelegt werden, Abbruch"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Eine andere Anwendung blockiert momentan yum. Warten, dass sie beendet wird …"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Kein Getcwd()-Zugriff auf aktuelles Verzeichnis, Wechseln zu /"
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
 -msgstr "Löse Abhängigkeiten auf"
 +msgstr "Abhängigkeiten werden aufgelöst"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -28937,7 +30154,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Ihre Transaktion wurde gespeichert, erneuter Aufruf mit:\nyum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -28980,7 +30197,7 @@ index fa39cb0..f9c81d8 100644
  msgstr "Mitglied: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s konvertiert zum Installieren"
@@ -29041,7 +30258,7 @@ index fa39cb0..f9c81d8 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Modus für pkg-Bereitstellung %s: %s"
-@@ -2122,1045 +2200,1094 @@ msgstr "Modus für pkg-Bereitstellung %s: %s"
+@@ -2122,1045 +2323,1169 @@ 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 :(
@@ -29053,48 +30270,57 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Es wird versucht, %s zu aktualisieren, um die Abhängigkeiten aufzulösen"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
 +msgstr "Kein Upgradepfadgefunden für %s. Fehlschlag!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr "TSINFO: Ersetze %s durch %s zum Auflösen der Abhängigkeit."
 +msgstr "TSINFO: %s wird durch %s zum Auflösen der Abhängigkeit ersetzt."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
 -msgstr "TSINFO: Aktualisiere %s zum Auflösen der Abhängigkeit."
 +msgstr "TSINFO: %s wird zum Auflösen der Abhängigkeit aktualisiert."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr "Kann keinen Aktualisierungspfad finden für Abhängigkeit für: %s"
 +msgstr "Aktualisierungspfad kann nicht gefunden werden für Abhängigkeit für: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -29102,96 +30328,96 @@ index fa39cb0..f9c81d8 100644
 +msgstr "%s ist in einem bereitgestellten Paket, aber bereits installiert, wird entfernt."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr "Potentielles aufgelöstes Paket %s hat eine neuere Instanz in ts."
 +msgstr "Potenzielles aufgelöstes Paket %s hat eine neuere Instanz in ts."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr "Potentielles aufgelöste Paket %s hat eine neuere Instanz installiert."
 +msgstr "Potenzielles aufgelöstes Paket %s hat eine neuere Instanz installiert."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
 -msgstr "%s bereits in ts, überspringe dieses"
 +msgstr "%s bereits in ts, dieses wird übersprungen"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
 -msgstr "TSINFO: Markiere %s als Aktualisierung für %s"
 +msgstr "TSINFO: %s wird als Aktualisierung für %s markiert"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
 -msgstr "TSINFO: Markiere %s als Installation für %s"
 +msgstr "TSINFO: %s wird als Installation für %s markiert"
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Erfolg - Leere Transaktion"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
 -msgstr "Starte Schleife neu"
 +msgstr "Schleife wird neu gestartet"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Abhängigkeitsverarbeitung beendet"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Erfolg - Abhängigkeiten aufgelöst"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
 -msgstr "Prüfe Abhängigkeiten für %s"
 +msgstr "Abhängigkeiten für %s werden überprüft"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
 -msgstr "Suche nach %s als eine Anforderung von %s"
 +msgstr "Nach %s als eine Anforderung von %s wird gesucht"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
 -msgstr "Führe compare_providers() aus für %s"
 +msgstr "compare_providers() wird für %s ausgeführt"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "bessere Architektur in po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s ersetzt %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -29202,27 +30428,27 @@ index fa39cb0..f9c81d8 100644
 +msgstr "archdist verglichen %s zu %s auf %s\n  Gewinner: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "Gemeinsames Quellen-RPM %s und %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
 -msgstr ""
 +msgstr "Basispaket %s ist für %s installiert"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
 -msgstr "Gemeinsamer Prefix von %s zwischen %s und %s"
 +msgstr "Gemeinsamer Präfix von %s zwischen %s und %s"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr ""
@@ -29230,173 +30456,183 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Vercmp-Unterstützung: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
 -msgstr ""
 +msgstr " Gewinner: %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "benötigt mindestens: %d"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
 -msgstr ""
 +msgstr " Verlierer(mit %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Beste Bestellung: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
  #, python-format
- msgid "Repository %r: Error parsing config: %s"
--msgstr ""
-+msgstr "Paketquelle %r: Fehler beim Einlesen der Konfiguration: %s"
+-msgid "Repository %r: Error parsing config: %s"
++msgid "Skipping unreadable repository %s"
+ msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:572
++#, python-format
++msgid "Repository %r: Error parsing config: %s"
++msgstr "Paketquelle %r: Fehler beim Einlesen der Konfiguration: %s"
++
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr "Bei Repository %r fehlt der Name in der Konfiguration, benutze id"
 +msgstr "In Paketquelle %r fehlt der Name in der Konfiguration, id wird benutzt"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "Plugins bereits initialisiert"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
 -msgstr "Lese lokale RPMDB"
 +msgstr "Lokale RPMDB wird gelesen"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
 -msgstr "doSackSetup() wird in zukünftigen Versionen von Yum verschwinden \n"
 +msgstr "doSackSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
 -msgstr "Einrichten des Paket-Behälters"
 +msgstr "Paket-Behälter wird eingerichtet"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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"
 +msgstr "Im Paketquellenobjekt für Quelle %s fehlt eine _resetSack-Methode\n"
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
 -msgstr "deshalb kann dieses Repository nicht zurückgesetzt werden.\n"
 +msgstr "deshalb kann diese Paketquelle nicht zurückgesetzt werden.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
 -msgstr "Baue Aktualisierungsobjekt"
 +msgstr "Aktualisierungsobjekt wird erstellt"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
 -msgstr "doGroupSetup() wird in zukünftigen Versionen von Yum verschwinden .\n"
 +msgstr "doGroupSetup() wird in zukünftigen Versionen von Yum verschwinden.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
 -msgstr "Beziehe Gruppen-Metadaten"
 +msgstr "Gruppen-Metadaten werden geholt"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
 -msgstr "Füge Gruppen-Datei von Repository hinzu: %s"
 +msgstr "Gruppendatei wird aus der Paketquelle hinzugefügt: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
 -msgstr "Hinzufügen von Gruppen-Datei für Repository fehlgeschlagen: %s - %s"
 +msgstr "Hinzufügen von Gruppen-Datei für Paketquelle fehlgeschlagen: %s - %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
 -msgstr "Keine Gruppen in irgendeinem Repository verfügbar"
 +msgstr "Keine Gruppen in irgendeiner Paketquelle verfügbar"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
 -msgstr ""
 +msgstr "pkgtags-Metadaten werden geholt"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
 -msgstr "Füge Tags aus dem Repository hinzug: %s"
 +msgstr "Tags werden aus der Paketquelle hinzugefügt: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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"
 +msgstr "Pkg-Tags für die Paketquelle konnten nicht hinzugefügt werden: %s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
 -msgstr "Importiere zusätzlichen Dateilisten-Informationen"
 +msgstr "Zusätzliche Dateilisten-Informationen werden importiert"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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."
 +msgstr "Das Programm %s%s%s wurde im yum-utils-Paket gefunden."
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -29407,27 +30643,60 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Es gibt noch nicht abgeschlossene Transaktionen. Sie sollten in Betracht ziehen, zuerst yum-complete-transaction auszuführen, um diese abzuschließen."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Finde nicht mehr benötigte Abhängigkeiten"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "Geschützte Multilib-Versionen: %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
 -msgstr "Versuche \"%s\" zu entfernen, welches geschützt ist"
 +msgstr "Es wird versucht, »%s« zu entfernen, welches geschützt ist"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -29437,14 +30706,14 @@ index fa39cb0..f9c81d8 100644
 +msgstr "\nPakete übersprungen wegen Abhängigkeitsproblemen:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s von %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -29453,23 +30722,23 @@ index fa39cb0..f9c81d8 100644
 +msgstr "** %d bereits bestehende(s) rpmdb Problem(e) gefunden, »yum check« gibt Folgendes aus: "
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Warnung: RPMDB wurde außerhalb von yum verändert."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "Benötigtes fehlt"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
 -msgstr "installierter Konflikt"
 +msgstr "Installierter Konflikt"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -29478,19 +30747,19 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Warnung: Es sind Scriptlet- oder andere nicht schwerwiegende Fehler bei der Verarbeitung aufgetreten."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transaktion konnte nicht starten:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
 -msgstr "Konnte Transaktion nicht durchführen."
 +msgstr "Transaktion konnte nicht durchgeführt werden."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Entfernen der Verarbeitungsdatei %s fehlgeschlagen"
@@ -29498,7 +30767,7 @@ index fa39cb0..f9c81d8 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s hätte installiert werden sollen, wurde aber nicht!"
@@ -29509,14 +30778,14 @@ index fa39cb0..f9c81d8 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, 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
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr "Konnte Sperrung %s nicht aufheben: %s"
@@ -29525,7 +30794,7 @@ index fa39cb0..f9c81d8 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "Unfähig zu prüfen, ob PID %s ist aktiv"
@@ -29534,7 +30803,7 @@ index fa39cb0..f9c81d8 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, 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."
@@ -29544,7 +30813,7 @@ index fa39cb0..f9c81d8 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr "Konnte keine Sperrung bei %s erstellen: %s "
@@ -29552,7 +30821,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Es kann nicht geprüft werden, ob PID %s aktiv ist"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -29563,18 +30832,18 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket stimmt nicht mit dem beabsichtigten Download überein. Vorschlag: starten sie yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
 -msgstr "Konnte Prüfsumme nicht bilden"
 +msgstr "Prüfsumme konnte nicht gebildet werden"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paket stimmt nicht mit der Prüfsumme überein"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -29583,30 +30852,33 @@ index fa39cb0..f9c81d8 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
 -msgstr "benutze lokale Kopie von %s"
--
++msgstr "Lokale Kopie von %s wird verwendet"
+ 
 -#: ../yum/__init__.py:1991
 -#, python-format
 -msgid ""
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Nicht genügend Platz im Download-Verzeichnis %s vorhanden\n"
 -"    * frei     %s\n"
 -"    * benötigt %s"
-+msgstr "Lokale Kopie von %s wird verwendet"
  
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Header ist nicht vollständig."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -29616,57 +30888,57 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Header ist nicht im lokalen Zwischenspeicher und Nur-Zwischenspeicher-Modus aktiviert. %s kann nicht heruntergeladen werden"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problem beim Öffnen des Paketes %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Paket %s ist nicht unterschrieben"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
 -msgstr "Kann %s nicht entfernen"
 +msgstr "%s kann nicht entfernt werden"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s entfernt"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
 -msgstr "Kann %s Datei nicht entfernen %s"
 +msgstr "%s Datei %s kann nicht entfernt werden"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s Datei %s entfernt"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s Dateien entfernt"
@@ -29676,20 +30948,20 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d %s Dateien entfernt"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
 -msgstr "Keine Übereinstimmungen mit  %s.%s %s:%s-%s bei der Aktualisierung"
 +msgstr "Keine Übereinstimmungen mit %s.%s %s:%s-%s bei der Aktualisierung"
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -29699,7 +30971,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "searchPackages() wird in zukünftigen Versionen von Yum verschwinden.                      Benutze stattdessen searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Suche %d Pakete"
@@ -29709,158 +30981,172 @@ index fa39cb0..f9c81d8 100644
 +msgstr[1] "%d Pakete werden gesucht"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
 -msgstr "Suche Paket %s"
 +msgstr "Paket %s wird gesucht"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
 -msgstr "Suche in Datei-Einträgen"
 +msgstr "In Dateieinträgen wird gesucht"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
 -msgstr "suche in bereitgestellten Einträgen"
 +msgstr "In bereitgestellten Einträgen wird gesucht"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
 -msgstr "Kein Gruppe mit dem Namen %s vorhanden"
 +msgstr "Keine Gruppe mit dem Namen %s vorhanden"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "Paket %s war nicht markiert in Gruppe %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Paket %s aus Gruppe %s wird übersprungen"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
 -msgstr "Füge Paket %s aus Gruppe %s hinzu"
 +msgstr "Paket %s aus Gruppe %s wird hinzugefügt"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Warnung: Gruppe %s enthält keine Pakete."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
+ msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
 +msgstr "Gruppe %s besitzt %u optionale Pakete, welche installiert werden können"
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
 -msgstr ""
 +msgstr "Paket-Tupel %s konnte nicht in rpmdb gefunden werden"
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
 -msgstr ""
 +msgstr "Ungültige Versionsmarkierung von: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Kein Paket gefunden für %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Paketobjekt war keine Paketobjektinstanz"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nichts angegeben zum Installieren"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
 -msgstr ""
 -"Überprüfe nach virtueller Bereitstellung oder Datei-Bereitstellung für %s"
--
++msgstr "Auf virtuelle Bereitstellung oder Datei-Bereitstellung für %s wird überprüft"
+ 
 -#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
 -#: ../yum/__init__.py:4289
 -#, python-format
 -msgid "No Match for argument: %s"
 -msgstr "Kein Übereinstimmung für Argument: %s"
-+msgstr "Auf virtuelle Bereitstellung oder Datei-Bereitstellung für %s wird überprüft"
- 
+-
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Paket %s installiert und nicht verfügbar"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Kein(e) Paket(e) zum Installieren verfügbar."
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
 -msgstr "Paket: %s - bereits im Transaktionsset"
 +msgstr "Paket: %s - bereits im Transaktionssatz"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -29869,7 +31155,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Packet %s wurde ersetzt durch %s, aber das ersetzende Paket erfüllt nicht die Anforderungen"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -29877,14 +31163,14 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket %s wurde ersetzt durch %s, stattdessen wird versucht, %s zu installieren"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
 -msgstr "Paket %s ist bereits in der neusten Version installiert."
 +msgstr "Paket %s ist bereits in der neuesten Version installiert."
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -29894,51 +31180,51 @@ index fa39cb0..f9c81d8 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
 -msgstr "Aktualisiere alles"
 +msgstr "Alles wird aktualisiert"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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"
 +msgstr "Paket wird nicht aktualisiert, da es bereits veraltet ist: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Kein Übereinstimmung für Argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Kein Paket zum Aktualisieren gefunden: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
 -msgstr "Aktualisiere Paket nicht, da es bereits veraltet ist: %s"
 +msgstr "Paket wird nicht aktualisiert, da es bereits veraltet ist: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -29948,48 +31234,48 @@ index fa39cb0..f9c81d8 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Kein Paket stimmt zum Entfernen überein"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Kein Paket zum Entfernen gefunden: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
 -msgstr "Überspringe den laufenden Kernel: %s"
 +msgstr "Laufender Kernel wird übersprungen: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
 -msgstr "Entferne %s aus der Transaktion."
 +msgstr "%s wird aus der Transaktion entfernt."
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
 -msgstr "Konnte nicht öffnen: %s. Überspringe."
 +msgstr "Konnte nicht geöffnet werden: %s. Wird übersprungen."
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
 -msgstr "Untersuche %s: %s"
 +msgstr "%s wird untersucht: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
 -msgstr "Konnte deltarpm nicht lokal installieren: %s. Überspringe."
 +msgstr "deltarpm konnte nicht lokal installiert werden: %s. Wird übersprungen."
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -29999,7 +31285,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket %s kann nicht zur Transaktion hinzugefügt werden. Keine kompatible Architektur: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -30008,7 +31294,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket %s konnte nicht installiert werden. Es ist vom installierten Paket %s überholt"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -30019,7 +31305,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket %s nicht installiert, es kann nicht aktualisiert werden. Führen Sie stattdessen yum install aus, um es zu installieren."
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -30028,48 +31314,48 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Paket %s.%s ist nicht installiert, kann es nicht aktualisieren. Führe stattdessen yum install aus, um es zu installieren."
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
 -msgstr "Schliesse %s aus"
 +msgstr "%s wird ausgeschlossen"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
 -msgstr "Markiere %s zum Installieren"
 +msgstr "%s wird zum Installieren markiert"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
 -msgstr "Markiere %s als eine Aktualisierung für %s"
 +msgstr "%s wird als eine Aktualisierung für %s markiert"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
 -msgstr "Kann Datei nicht öffnen: %s. Überspringe."
 +msgstr "Datei kann nicht geöffnet werden: %s. Wird übersprungen."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Probleme beim Neuinstallieren: kein Paket stimmt zum Entfernen überein"
 +msgstr "Probleme beim Neuinstallieren: kein Paket stimmt zum Entfernen überein"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -30077,85 +31363,85 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Probleme beim Neuinstallieren: kein Paket %s stimmt zum Installieren überein"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
 -msgstr "Kein(e) Paket(e) zum Downgrade verfügbar"
 +msgstr "Kein(e) Paket(e) zum Zurücksetzen verfügbar"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
 -msgstr "Paket %s darf mehrfach installiert sein, überspringe"
 +msgstr "Paket %s darf mehrfach installiert sein, wird übersprungen"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
 -msgstr "Keine Übereinstimmung der verfügbare Pakete: %s"
 +msgstr "Keine Übereinstimmung der verfügbaren Pakete: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
 -msgstr ""
 +msgstr "Zurücksetzen ist gescheitert: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Aktualisieren ist gescheitert: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "Schlüssel wird von %s geholt"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
 +msgstr "GPG Schlüsselsignatur vom Schlüssel %s passt nicht zu CA Schlüssel für Repo: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
 -msgstr ""
 +msgstr "GPG Schlüsselsignatur gegen CA Schlüssel verifiziert"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, 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:5325
++#: ../yum/__init__.py:5785
  #, 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"
 +msgstr "GPG-Schlüsselanalyse fehlgeschlagen: Schlüssel hat keinen Wert %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -30170,7 +31456,7 @@ index fa39cb0..f9c81d8 100644
 +msgstr "%s-Schlüssel 0x%s importieren:\n Benutzerkennung     : \"%s\"\n Fingerabdruck: %s\n Paket    : %s (%s)\n Von       : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -30181,9 +31467,8 @@ index fa39cb0..f9c81d8 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "%s-Schlüssel 0x%s importieren:\n Benutzerkennung     : \"%s\"\n Fingerabdruck: %s\n Von       : %s"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -30192,31 +31477,32 @@ index fa39cb0..f9c81d8 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Fehlgeschlagenes Paket: %s\n GPG-Schlüssel sind konfiguriert als: %s\n"
-+
-+#: ../yum/__init__.py:5393
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Schlüssel erfolgreich importiert"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Es wurden keine Schlüssel installiert"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -30227,20 +31513,20 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Die aufgelisteten GPG-Schlüssel für die »%s«-Paketquelle sind bereits installiert, aber sie sind nicht korrekt für dieses Paket.\nStellen Sie sicher, dass die korrekten Schlüssel-URLs für diese Paketquelle konfiguriert sind."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nein"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ja"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -30251,7 +31537,7 @@ index fa39cb0..f9c81d8 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA-Schlüssel: %s\n Fehlgeschlagene Datenquelle: %s\n GPG-Schlüssel sind konfiguriert als: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG-Schlüssel unter %s (0x%s) ist bereits importiert"
@@ -30259,20 +31545,20 @@ index fa39cb0..f9c81d8 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Schlüssel-Import fehlgeschlagen"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Import des Schlüssels %s ist fehlgeschlagen"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
 -msgstr ""
 +msgstr "Es wurden keine Schlüssel für Paketquelle %s installiert"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -30284,135 +31570,135 @@ index fa39cb0..f9c81d8 100644
 +msgstr "Die aufgelisteten GPG-Schlüssel für die »%s«-Paketquelle sind bereits installiert, aber nicht korrekt. Überprüfen sie, ob die korrekten Schlüssel-URLs für diese Paketquelle konfiguriert sind."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
 -msgstr "Es kann kein geeigneten Spiegelserver gefunden werden."
 +msgstr "Es kann kein geeigneter Spiegelserver gefunden werden."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Beim Herunterladen der Pakete sind Fehler aufgetreten."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Bitte melden Sie diesen Fehler unter %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Test-Transaktionsfehler: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
 -msgstr "Konnte Verzeichnis für Zwischenspeicher nicht festlegen: %s"
 +msgstr "Ordner für Zwischenspeicher konnte nicht festgelegt werden: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +msgstr "Abhängigkeiten wurden nicht aufgelöst. Eine Transaktion mit ungelösten Abhängigkeiten wird nicht gespeichert."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr ""
 +msgstr "Transaktionsdatei %s kann nicht gespeichert werden: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
-+msgstr "Kann nicht lesen/zugreifen auf gespeicherte Transaktion %s : %s "
- 
+-
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
 -msgstr ""
-+msgstr "«Rpmdb ver» stimmt nicht mit der gespeicherten Version der Transaktion überein, "
++msgstr "Kann nicht lesen/zugreifen auf gespeicherte Transaktion %s : %s "
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " wird ignoriert, wie gewünscht."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
--msgstr ""
-+msgstr " wird abgebrochen."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
 -msgstr ""
 +msgstr "tsflags nicht gefunden oder tsflags ist kein Integer-Wert."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
 -msgstr ""
 +msgstr "txmbr im unbekannten aktuellen Zustand gefunden: %s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
 -msgstr ""
 +msgstr "txmbr konnte nicht gefunden werden: %s im Zustand %s"
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
 -msgstr ""
 +msgstr "Txmbr nicht gefunden: %s from origin: %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 +msgstr "Fehlende Transaktionselemente, Beziehungen oder ts wurde verändert, "
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
 +msgstr " Ignorieren, wie gewünscht. Sie müssen redepsolve anwenden!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s wurde bereits benutzt und kann nicht entfernt werden."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Revdeps von %s überprüfen"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s besitzt Revdep %s, welches Benutzer-installiert ist."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
+ msgstr ""
+ 
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s besitzt keine Benutzer-installierte Revdeps."
- 
++
  #. Mostly copied from YumOutput._outKeyValFill()
 -#: ../yum/plugins.py:209
 +#: ../yum/plugins.py:212
@@ -30529,13 +31815,17 @@ index fa39cb0..f9c81d8 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Überprüfen: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
 +"    * free   %s\n"
 +"    * needed %s"
 +msgstr "Nicht genügend Platz im Download-Ordner %s vorhanden\n    * frei     %s\n    * benötigt %s"
++
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
  
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
@@ -30546,7 +31836,7 @@ index fa39cb0..f9c81d8 100644
  
  #: ../rpmUtils/oldUtils.py:53
  #, python-format
-@@ -3169,11 +3296,11 @@ msgstr "RPM %s besteht md5-Prüfung nicht"
+@@ -3169,11 +3494,11 @@ msgstr "RPM %s besteht md5-Prüfung nicht"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -30560,7 +31850,7 @@ index fa39cb0..f9c81d8 100644
  
  #: ../rpmUtils/oldUtils.py:253 ../rpmUtils/oldUtils.py:260
  #: ../rpmUtils/oldUtils.py:263 ../rpmUtils/oldUtils.py:266
-@@ -3184,6 +3311,4 @@ msgstr "Defekter Header %s"
+@@ -3184,6 +3509,4 @@ msgstr "Defekter Header %s"
  #: ../rpmUtils/oldUtils.py:281
  #, python-format
  msgid "Error opening rpm %s - error %s"
@@ -30569,10 +31859,10 @@ index fa39cb0..f9c81d8 100644
 -
 +msgstr "Fehler beim Öffnen des RPM %s - Fehler %s"
 diff --git a/po/el.po b/po/el.po
-index 8df34e7..6ef8da2 100644
+index 8df34e7..e0af061 100644
 --- a/po/el.po
 +++ b/po/el.po
-@@ -2,428 +2,457 @@
+@@ -2,428 +2,508 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -30589,8 +31879,8 @@ index 8df34e7..6ef8da2 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Greek (http://www.transifex.net/projects/p/yum/team/el/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Greek (http://www.transifex.com/projects/p/yum/language/el/)\n"
  "MIME-Version: 1.0\n"
@@ -30601,7 +31891,7 @@ index 8df34e7..6ef8da2 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Ενημέρωση"
  
@@ -30612,31 +31902,31 @@ index 8df34e7..6ef8da2 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Ενημερώθηκε"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Εγκαταστάθηκε"
  
@@ -30663,7 +31953,7 @@ index 8df34e7..6ef8da2 100644
  msgstr "Διαγράφηκε:%s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Γίνεται αφαίρεση"
  
@@ -30673,69 +31963,69 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -30746,121 +32036,147 @@ index 8df34e7..6ef8da2 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -30870,12 +32186,12 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -30885,12 +32201,12 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -30900,14 +32216,14 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -30915,14 +32231,14 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
 -msgstr ""
 +msgstr "(από %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
 -msgstr ""
@@ -30931,7 +32247,7 @@ index 8df34e7..6ef8da2 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -30939,58 +32255,58 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Πακέτο(α) για εγκατάσταση"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -30999,117 +32315,142 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
- msgid "Installed Groups:"
--msgstr ""
-+msgstr "Εγκατεστημένες ομάδες:"
+-msgid "Installed Groups:"
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1735
++msgid "Installed Groups:"
++msgstr "Εγκατεστημένες ομάδες:"
++
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
 -msgstr ""
 +msgstr "Διαθέσιμες ομάδες:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr ""
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -31119,400 +32460,408 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -431,438 +460,452 @@ msgid ""
+@@ -431,438 +511,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
 -msgstr ""
 +msgstr "ανώτατος χρόνος αναμονής για εντολή"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
 -msgstr ""
 +msgstr "Όνομα        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
 -msgstr ""
 +msgstr "Μέγεθος        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
 -msgstr ""
 +msgstr "Εγκαταστάθηκε από: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
 -msgstr ""
 +msgstr "Τροποποιήθηκε από : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr ""
 +msgstr " Περιγραφή: "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
 -msgstr ""
 +msgstr "ναι"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
 -msgstr ""
 +msgstr "όχι "
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -31521,170 +32870,194 @@ index 8df34e7..6ef8da2 100644
 +msgstr "\nΟμάδα: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
 -msgstr ""
 +msgstr " Περιγραφή: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
 -msgstr ""
 +msgstr " Υποχρεωτικά Πακέτα:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
 -msgstr ""
 +msgstr " Προεπιλεγμένα Πακέτα:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
 -msgstr ""
 +msgstr " Προαιρετικά Πακέτα:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
  #, python-format
- msgid "package: %s"
--msgstr ""
-+msgstr "πακέτο: %s"
+-msgid "package: %s"
++msgid ""
++"\n"
++"Environment Group: %s"
+ msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
++#, python-format
++msgid "package: %s"
++msgstr "πακέτο: %s"
++
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
 +msgstr "Όνομα αρχείου   : %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -31692,391 +33065,391 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
 -msgstr ""
 +msgstr "Μέγεθος"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -870,57 +913,58 @@ msgid ""
+@@ -870,57 +996,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -928,7 +972,7 @@ msgstr ""
+@@ -928,7 +1055,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -936,532 +980,590 @@ msgid ""
+@@ -936,532 +1063,584 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
 -msgstr ""
 +msgstr "Σύστημα"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
 -msgstr ""
 +msgstr "Ημερομηνία και ώρα"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
 -msgstr ""
 +msgstr "Χρήστης           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -32085,17 +33458,17 @@ index 8df34e7..6ef8da2 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -32108,230 +33481,231 @@ index 8df34e7..6ef8da2 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
 -msgstr ""
 +msgstr "Τελευταία εβδομάδα"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
 -msgstr ""
 +msgstr "Τελευταίες 2 εβδομάδες"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
 -msgstr ""
 +msgstr "Τελευταίοι 3 μήνες"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
 -msgstr ""
 +msgstr "Τελευταίοι 6 μήνες"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
 -msgstr ""
 +msgstr "Τελευταίος χρόνος"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
 -msgstr ""
 +msgstr "Πακέτο: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -32339,7 +33713,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -32347,7 +33721,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -32355,7 +33729,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -32363,39 +33737,39 @@ index 8df34e7..6ef8da2 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
 -msgstr ""
 +msgstr "Ενημερώθηκε από"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -32403,70 +33777,70 @@ index 8df34e7..6ef8da2 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -32474,7 +33848,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -32482,69 +33856,68 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
  "\n"
  "%s"
 -msgstr ""
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1473,7 +1575,7 @@ msgstr ""
+@@ -1473,7 +1652,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -32553,7 +33926,7 @@ index 8df34e7..6ef8da2 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1490,451 +1592,488 @@ msgid ""
+@@ -1490,555 +1669,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -32570,51 +33943,71 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -32622,204 +34015,204 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
 -msgstr ""
 +msgstr "ΠΑΚΕΤΟ..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
 -msgstr ""
 +msgstr "Εγκατεστημένα Πακέτα"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
 -msgstr ""
 +msgstr "Διαθέσιμα Πακέτα"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
 -msgstr ""
 +msgstr "Ενημερωμένα Πακέτα"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -32828,184 +34221,184 @@ index 8df34e7..6ef8da2 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
 -msgstr ""
 +msgstr "κατάσταση"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -33013,7 +34406,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -33021,181 +34414,211 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
 -msgstr ""
 +msgstr " Ομάδα   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1945,100 +2084,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -33204,7 +34627,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -33241,7 +34664,7 @@ index 8df34e7..6ef8da2 100644
 +msgstr "Μέλος: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -33298,7 +34721,7 @@ index 8df34e7..6ef8da2 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2046,991 +2195,1069 @@ msgstr ""
+@@ -2046,991 +2318,1140 @@ 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 :(
@@ -33309,130 +34732,140 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -33440,254 +34873,298 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -33695,7 +35172,7 @@ index 8df34e7..6ef8da2 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -33706,14 +35183,14 @@ index 8df34e7..6ef8da2 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -33721,7 +35198,7 @@ index 8df34e7..6ef8da2 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -33729,7 +35206,7 @@ index 8df34e7..6ef8da2 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -33738,14 +35215,14 @@ index 8df34e7..6ef8da2 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -33753,23 +35230,23 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -33780,70 +35257,73 @@ index 8df34e7..6ef8da2 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -33853,26 +35333,26 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -33882,111 +35362,127 @@ index 8df34e7..6ef8da2 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -33998,30 +35494,30 @@ index 8df34e7..6ef8da2 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -34029,123 +35525,123 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -34153,7 +35649,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -34161,118 +35657,118 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -34286,7 +35782,7 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -34295,9 +35791,10 @@ index 8df34e7..6ef8da2 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -34305,32 +35802,31 @@ index 8df34e7..6ef8da2 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -34338,20 +35834,20 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -34362,26 +35858,26 @@ index 8df34e7..6ef8da2 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -34389,117 +35885,121 @@ index 8df34e7..6ef8da2 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -34599,7 +36099,7 @@ index 8df34e7..6ef8da2 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3039,6 +3266,19 @@ msgstr ""
+@@ -3039,6 +3460,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -34608,7 +36108,7 @@ index 8df34e7..6ef8da2 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -34616,20 +36116,24 @@ index 8df34e7..6ef8da2 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3067,5 +3307,3 @@ msgstr ""
+@@ -3067,5 +3505,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/en_GB.po b/po/en_GB.po
-index 0f3c750..93ce2a2 100644
+index 0f3c750..3f37033 100644
 --- a/po/en_GB.po
 +++ b/po/en_GB.po
-@@ -2,938 +2,969 @@
+@@ -2,938 +2,1052 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -34646,9 +36150,9 @@ index 0f3c750..93ce2a2 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: English (United Kingdom) (http://www.transifex.net/projects/p/yum/team/en_GB/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-09-02 21:56+0000\n"
-+"Last-Translator: Chris Leonard <cjlhomeaddress at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/yum/language/en_GB/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -34658,7 +36162,7 @@ index 0f3c750..93ce2a2 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Updating"
  
@@ -34669,31 +36173,31 @@ index 0f3c750..93ce2a2 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Updated"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installed"
  
@@ -34720,7 +36224,7 @@ index 0f3c750..93ce2a2 100644
  msgstr "Erased: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Removing"
  
@@ -34730,69 +36234,69 @@ index 0f3c750..93ce2a2 100644
  msgstr "Cleanup"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Command \"%s\" already defined"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Setting up repositories"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Reading repository metadata in from local files"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Config Error: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Options Error: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installed: %s-%s at %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Built    : %s at %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Committed: %s at %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "You need to give some command"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Disk Requirements:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -34803,7 +36307,7 @@ index 0f3c750..93ce2a2 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -34811,75 +36315,97 @@ index 0f3c750..93ce2a2 100644
 -"Error Summary\n"
 -"-------------\n"
 +msgstr "Error Summary\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Can't create lock file; exiting"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Another app is currently holding the yum lock; exiting as configured by exit_on_lock"
++
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignoring, as requested."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " aborting."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Exiting on user Command"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Downloading Packages:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Error Downloading Packages:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Running Transaction Check"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "ERROR with transaction check vs depsolve:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM needs to be updated"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Please report this error in %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Running Transaction Test"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Transaction Check Error:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Transaction Test Succeeded"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Running Transaction"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -34889,18 +36415,18 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Refusing to automatically import keys when running unattended.\nUse \"-y\" to override."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Maybe you meant: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "No package %s%s%s available."
@@ -34908,22 +36434,27 @@ index 0f3c750..93ce2a2 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Package(s) to install"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d package to install"
 +msgstr[1] "%d packages to install"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nothing to do"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d packages marked for Update"
@@ -34933,12 +36464,12 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages marked for Update"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "No Packages marked for Update"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d packages marked for Distribution Synchronisation"
@@ -34948,12 +36479,12 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages marked for Distribution Synchronisation"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "No Packages marked for Distribution Synchronisation"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d packages marked for removal"
@@ -34963,14 +36494,14 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages marked for removal"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -34978,13 +36509,13 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages to downgrade"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (from %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Installed package %s%s%s%s not available."
@@ -34992,7 +36523,7 @@ index 0f3c750..93ce2a2 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Package(s) to reinstall"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -35000,28 +36531,28 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages to reinstall"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "No Packages Provided"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Package(s) to install"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "N/S Matched: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, 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:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -35030,30 +36561,30 @@ index 0f3c750..93ce2a2 100644
 +msgstr "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Matched: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, 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:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Warning: No matches found for: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "No Matches found"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "No Package Found for %s"
@@ -35063,94 +36594,115 @@ index 0f3c750..93ce2a2 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Cleaning repos: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Cleaning up Everything"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Cleaning up Headers"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Cleaning up Packages"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Cleaning up xml metadata"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Cleaning up database cache"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Cleaning up expire-cache metadata"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Cleaning up cached rpmdb data"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Cleaning up plugins"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Installed Groups:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Installed Language Groups:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Available Groups:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Available Language Groups:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Done"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Warning: Group %s does not exist."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d Package(s) to Install"
@@ -35160,18 +36712,24 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages to Install"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "No group named %s exists"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "No packages to remove from groups"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d Package(s) to remove"
@@ -35181,37 +36739,37 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d packages to remove"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Package %s is already installed, skipping"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, 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:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Plugin Options"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Command line error: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -35224,353 +36782,361 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\n%s: %s option requires an argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--installroot must be an absolute path: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "show this help message and exit"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "be tolerant of errors"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "config file location"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maximum command wait time"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "debugging output level"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "show duplicates, in repos, in list/search commands"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "error output level"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "debugging output level for rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "quiet operation"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "verbose operation"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "answer yes for all questions"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "answer no for all questions"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "show Yum version and exit"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "set install root"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "enable one or more repositories (wildcards allowed)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "disable one or more repositories (wildcards allowed)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "exclude package(s) by name or glob"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "enable obsoletes processing during updates"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "disable Yum plugins"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "disable gpg signature checking"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "disable plugins by name"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "enable plugins by name"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "skip packages with depsolving problems"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "control whether colour is used"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "set arbitrary config and repo options"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "May"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Aug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Oct"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dec"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Trying other mirror."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Name        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arch        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Version     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Release     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Size        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repo        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "From repo   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Committer   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Committime  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Buildtime   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Install time: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Installed by: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Changed by  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Summary     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licence     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Description : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "yes"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Is this ok [y/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -35581,166 +37147,190 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\nGroup: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Group-Id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Description: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Language: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Mandatory Packages:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Default Packages:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Optional Packages:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Conditional Packages:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr "Installed Packages:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "package: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  No dependencies for this package"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  dependency: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Unsatisfied dependency"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Matched from:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licence     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Filename    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Other       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "There was an error calculating total download size"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Total size: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Total download size: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Installed size: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "There was an error calculating installed size"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Reinstalling"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Downgrading"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Installing for dependencies"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Updating for dependencies"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Removing for dependencies"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Skipped (dependency problems)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Not installed"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Not available"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Package"
 +msgid_plural "Packages"
@@ -35748,33 +37338,33 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "Package"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arch"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Version"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repository"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Size"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     replacing  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -35790,7 +37380,7 @@ index 0f3c750..93ce2a2 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Install"
  
@@ -35798,7 +37388,7 @@ index 0f3c750..93ce2a2 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
  
@@ -35806,7 +37396,7 @@ index 0f3c750..93ce2a2 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Remove"
  
@@ -35814,7 +37404,7 @@ index 0f3c750..93ce2a2 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Reinstall"
  
@@ -35822,58 +37412,58 @@ index 0f3c750..93ce2a2 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
-+
-+#: ../output.py:1544
+ 
+-#: ../output.py:1165
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Dependent package"
 +msgstr[1] "Dependent packages"
- 
--#: ../output.py:1165
-+#: ../output.py:1604
++
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Removed"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dependency Removed"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dependency Installed"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dependency Updated"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Replaced"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Failed"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "two"
  
-@@ -941,564 +972,598 @@ msgstr "two"
+@@ -941,564 +1055,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -35886,262 +37476,262 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n Current download cancelled, %sinterrupt (ctrl-c) again%s within %s%s%s seconds\nto exit.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "user interrupt"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<unset>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "System"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "No transactions"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Bad transaction IDs, or package(s), given"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Command line"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Login user"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Date and time"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Action(s)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Altered"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "No transaction ID given"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Bad transaction ID given"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Not found given transaction ID"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Found more than one transaction ID!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "No transaction ID, or package, given"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Downgraded"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Older"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Newer"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Transaction ID :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Begin time     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Begin rpmdb    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u seconds)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minutes)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u hours)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u days)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "End time       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "End rpmdb      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "User           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Return-Code    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Aborted"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Failures:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Failure:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Success"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Command Line   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transaction performed with:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Packages Altered:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Packages Skipped:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb Problems:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptlet output:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Errors:"
  
@@ -36150,17 +37740,17 @@ index 0f3c750..93ce2a2 100644
 -msgstr "Install"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Dep-Install"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Obsoleting"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Erase"
  
@@ -36173,224 +37763,226 @@ index 0f3c750..93ce2a2 100644
 -msgstr "Downgrade"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Update"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Time"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Last day"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Last week"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Last 2 weeks"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Last 3 months"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Last 6 months"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Last year"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Over a year ago"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "No Transaction %s found"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Transaction ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Available additional history information:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installed"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "an update"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "erased"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "reinstalled"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "a downgrade"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "obsoleting"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "updated"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "obsoleted"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Running transaction check"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Restarting Dependency Resolution with new changes."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Finished Dependency Resolution"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Processing Dependency: %s for package: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Unresolved Dependency: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Package: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -36401,7 +37993,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n    Requires: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -36412,7 +38004,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -36423,7 +38015,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -36434,38 +38026,38 @@ index 0f3c750..93ce2a2 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Updated By"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Downgraded By"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Obsoleted By"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Available"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Processing Conflict: %s conflicts %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> Populating transaction set with selected packages. Please wait."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Downloading header for %s to pack into transaction set."
@@ -36473,70 +38065,70 @@ index 0f3c750..93ce2a2 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verifying"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Running"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Sleeping"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Uninterruptible"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Traced/Stopped"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Unknown"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  The other application is: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  The other application is: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memory : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Started: %s - %s ago"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    State  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -36548,7 +38140,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\nExiting on user cancel"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -36560,7 +38152,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\nExiting on Broken Pipe"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -36573,51 +38165,49 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Another app is currently holding the yum lock; exiting as configured by "
 -"exit_on_lock"
-+msgstr "Another app is currently holding the yum lock; exiting as configured by exit_on_lock"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit Error: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum Error: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Error: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Unknown Error(s): Exit Code: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -36627,11 +38217,11 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\nDependencies Resolved"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Complete!"
  
-@@ -1510,7 +1575,7 @@ msgstr " Mini usage:\n"
+@@ -1510,7 +1652,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."
  
@@ -36640,7 +38230,7 @@ index 0f3c750..93ce2a2 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1525,475 +1590,490 @@ msgid ""
+@@ -1525,583 +1667,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -36674,51 +38264,71 @@ index 0f3c750..93ce2a2 100644
  msgstr "Error: Need to pass a list of pkgs to %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Error: Need an item to match"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Error: Need a group or list of groups"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Error: clean requires an option: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Error: invalid clean argument: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "No argument to shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Filename passed to shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -36730,112 +38340,112 @@ index 0f3c750..93ce2a2 100644
 +msgstr "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>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PACKAGE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Install a package or packages on your system"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Setting up Install Process"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PACKAGE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Update a package or packages on your system"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Setting up Update Process"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Synchronise installed packages to the latest available versions"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Setting up Distribution Synchronisation Process"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Installed Packages"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Available Packages"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Extra Packages"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Updated Packages"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Obsoleting Packages"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Recently Added Packages"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "No matching Packages to list"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "List a package or groups of packages"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Remove a package or packages from your system"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Setting up Remove Process"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Display, or use, the groups information"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Setting up Group Process"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "No Groups on which to run command"
  
@@ -36846,7 +38456,7 @@ index 0f3c750..93ce2a2 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Invalid groups sub-command, use: %s."
@@ -36854,79 +38464,79 @@ index 0f3c750..93ce2a2 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "There is no installed groups file."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "You don't have access to the groups DB."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Generate the metadata cache"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Making cache files for all metadata files."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metadata Cache Created"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Remove cached data"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Find what package provides the given value"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Check for available package updates"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Search package details for the given string"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Searching Packages: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Update packages taking obsoletes into account"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Setting up Upgrade Process"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Install a local RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Setting up Local Package Process"
  
@@ -36935,150 +38545,150 @@ index 0f3c750..93ce2a2 100644
 -msgstr "Determine which package provides the given dependency"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Searching Packages for Dependency:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Run an interactive yum shell"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Setting up Yum Shell"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "List a package's dependencies"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Finding dependencies: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Display the configured software repositories"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "enabled"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "disabled"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Repo-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Repo-name    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Repo-status  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-revision: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tags    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo-updated : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Repo-pkgs    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Repo-size    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Updated    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-mirrors : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Never (last: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Instant (last: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s second(s) (last: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Repo-expire  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-exclude : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-include : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repo-excluded: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Repo-filename: "
@@ -37086,33 +38696,33 @@ index 0f3c750..93ce2a2 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "repo id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "repo name"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Display a helpful usage message"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "No help available for %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -37124,7 +38734,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\naliases: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -37136,148 +38746,186 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Setting up Reinstall Process"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "reinstall a package"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Setting up Downgrade Process"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "downgrade a package"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum version groups:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Group   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Packages:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installed:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Group-Installed:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Available:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Group-Available:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Display, or use, the transaction history"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transactions:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr " rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr " yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Invalid history sub-command, use: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Check for problems in the rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "load a saved transaction from filename"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "No saved transaction file specified."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "loading transaction from %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Transaction loaded from %s with %s members"
-@@ -2004,104 +2084,110 @@ msgstr "Transaction loaded from %s with %s members"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Yum checks failed: %s"
  
@@ -37286,32 +38934,25 @@ index 0f3c750..93ce2a2 100644
 -"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..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "No read/execute access in current directory, moving to /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "No getcwd() access in current directory, moving to /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Can't create lock file; exiting"
  
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Resolving Dependencies"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, 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"
@@ -37325,7 +38966,7 @@ index 0f3c750..93ce2a2 100644
 +" yum load-transaction %s"
  msgstr ""
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
  "\n"
  "\n"
@@ -37361,7 +39002,7 @@ index 0f3c750..93ce2a2 100644
  msgstr "Member: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s converted to install"
@@ -37418,7 +39059,7 @@ index 0f3c750..93ce2a2 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Mode for pkg providing %s: %s"
-@@ -2109,1025 +2195,1069 @@ msgstr "Mode for pkg providing %s: %s"
+@@ -2109,1025 +2318,1140 @@ 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 :(
@@ -37429,130 +39070,140 @@ index 0f3c750..93ce2a2 100644
  msgstr "Trying to update %s to resolve dep"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: Updating %s to resolve dep."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Success - empty transaction"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Restarting Loop"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Dependency Process ending"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Success - deps resolved"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Checking deps for %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "better arch in po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s obsoletes %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -37563,25 +39214,25 @@ index 0f3c750..93ce2a2 100644
 +msgstr "archdist compared %s to %s on %s\n  Winner: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "common sourcerpm %s and %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "requires minimal: %d"
@@ -37589,153 +39240,163 @@ index 0f3c750..93ce2a2 100644
 +msgstr "provides vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Winner: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "requires minimal: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Loser(with %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Best Order: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "Repository %r: Error parsing config: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "plugins already initialised"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Reading Local RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Setting up Package Sacks"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "therefore this repo cannot be reset.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Building updates object"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Getting group metadata"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Adding group file from repository: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "No Groups Available in any repository"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Getting pkgtags metadata"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Adding tags from repository: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importing additional filelist information"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -37745,24 +39406,58 @@ index 0f3c750..93ce2a2 100644
 +msgstr "There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Finding unneeded leftover dependencies"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Protected multilib versions: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -37772,14 +39467,14 @@ index 0f3c750..93ce2a2 100644
 +msgstr "\nPackages skipped because of dependency problems:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s from %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -37787,22 +39482,22 @@ index 0f3c750..93ce2a2 100644
 +msgstr "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Warning: RPMDB altered outside of yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "missing requires"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "installed conflict"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -37810,18 +39505,18 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Warning: scriptlet or other non-fatal errors occurred during transaction."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transaction couldn't start:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Could not run transaction."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Failed to remove transaction file %s"
@@ -37829,7 +39524,7 @@ index 0f3c750..93ce2a2 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s was supposed to be installed but is not!"
@@ -37840,7 +39535,7 @@ index 0f3c750..93ce2a2 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s was supposed to be removed but is not!"
@@ -37858,32 +39553,32 @@ index 0f3c750..93ce2a2 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Could not open lock %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Unable to check if PID %s is active"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -37894,23 +39589,23 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Package does not match intended download. Suggestion: run yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Could not perform checksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Package does not match checksum"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "using local copy of %s"
@@ -37921,18 +39616,21 @@ index 0f3c750..93ce2a2 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Header is not complete."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -37941,55 +39639,55 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Header not in local cache and caching-only mode enabled. Cannot download %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problem opening package %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Package %s is not signed"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Cannot remove %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s removed"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Cannot remove %s file %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s file %s removed"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s files removed"
@@ -37999,19 +39697,19 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "%d %s files removed"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -38021,7 +39719,7 @@ index 0f3c750..93ce2a2 100644
 +msgstr "searchPackages() will go away in a future version of Yum.                      Use searchGenerator() instead. \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Searching %d packages"
@@ -38031,111 +39729,128 @@ index 0f3c750..93ce2a2 100644
 +msgstr[1] "Searching %d packages"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "searching package %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "searching in file entries"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "searching in provides entries"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "package %s was not marked in group %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Skipping package %s from group %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Adding package %s from group %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "No Package found for %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nothing specified to install"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Checking for virtual provide or file-provide for %s"
@@ -38147,30 +39862,30 @@ index 0f3c750..93ce2a2 100644
 -msgstr "No Match for argument: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Package %s installed and not available"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "No package(s) available to install"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Package: %s  - already in transaction set"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -38181,67 +39896,67 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Package %s is obsoleted by %s, but obsoleting package does not provide for requirements"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "No Match for argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "No package matched to upgrade: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -38249,43 +39964,43 @@ index 0f3c750..93ce2a2 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "No package matched to remove"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "No package matched to remove: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Skipping the running kernel: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Removing %s from the transaction"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Examining %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -38294,13 +40009,13 @@ index 0f3c750..93ce2a2 100644
 +msgstr "Cannot add package %s to transaction. Not a compatible architecture: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, 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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -38311,7 +40026,7 @@ index 0f3c750..93ce2a2 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -38322,118 +40037,118 @@ index 0f3c750..93ce2a2 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Excluding %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Marking %s to be installed"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Cannot open file: %s. Skipping."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "No package(s) available to downgrade"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "No Match for available package: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Failed to downgrade: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Retrieving key from %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Invalid GPG Key from %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -38451,7 +40166,7 @@ index 0f3c750..93ce2a2 100644
 -"From   : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -38460,13 +40175,9 @@ index 0f3c750..93ce2a2 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
- msgstr ""
--"Importing %s key 0x%s:\n"
--"Userid : \"%s\"\n"
--"From  : %s"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++msgstr ""
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -38474,31 +40185,35 @@ index 0f3c750..93ce2a2 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5393
+ msgstr ""
+-"Importing %s key 0x%s:\n"
+-"Userid : \"%s\"\n"
+-"From  : %s"
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Key imported successfully"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Didn't install any keys"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -38509,20 +40224,20 @@ index 0f3c750..93ce2a2 100644
 +msgstr "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\nCheck that the correct key URLs are configured for this repository."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "No"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Yes"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -38533,7 +40248,7 @@ index 0f3c750..93ce2a2 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG key at %s (0x%s) is already imported"
@@ -38541,19 +40256,19 @@ index 0f3c750..93ce2a2 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Key %s import failed"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -38564,117 +40279,122 @@ index 0f3c750..93ce2a2 100644
 +msgstr "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\nCheck that the correct key URLs are configured for this repository."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Unable to find a suitable mirror."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Errors were encountered while downloading packages."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Please report this error at %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Test Transaction Errors: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "rpmdb ver mismatched saved transaction version, "
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr "rpmdb ver mismatched saved transaction version, "
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " ignoring, as requested."
- 
+-msgid " ignoring, as requested."
+-msgstr " ignoring, as requested."
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " aborting."
+-msgid " aborting."
+-msgstr " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr "cannot find tsflags or tsflags not integer."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " ignoring, as requested. You must redepsolve!"
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s has been visited already and cannot be removed."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Examining revdeps of %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s has revdep %s which was user-installed."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s has no user-installed revdeps."
@@ -38774,7 +40494,7 @@ index 0f3c750..93ce2a2 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s provides %s but it cannot be found"
-@@ -3136,6 +3266,19 @@ msgstr "%s provides %s but it cannot be found"
+@@ -3136,6 +3460,23 @@ msgstr "%s provides %s but it cannot be found"
  msgid "Repackaging"
  msgstr "Repackaging"
  
@@ -38783,7 +40503,7 @@ index 0f3c750..93ce2a2 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verify: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -38791,10 +40511,14 @@ index 0f3c750..93ce2a2 100644
 +"    * needed %s"
 +msgstr "Insufficient space in download directory %s\n    * free   %s\n    * needed %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3148,8 +3291,7 @@ msgstr "RPM %s fails md5 check"
+@@ -3148,8 +3489,7 @@ msgstr "RPM %s fails md5 check"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -38804,17 +40528,17 @@ index 0f3c750..93ce2a2 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3165,5 +3307,3 @@ msgstr "Damaged Header %s"
+@@ -3165,5 +3505,3 @@ msgstr "Damaged Header %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Error opening rpm %s - error %s"
 -
 -
 diff --git a/po/es.po b/po/es.po
-index 2b1397d..f4e3019 100644
+index 2b1397d..4f98332 100644
 --- a/po/es.po
 +++ b/po/es.po
-@@ -2,957 +2,972 @@
+@@ -2,957 +2,1056 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -38826,6 +40550,7 @@ index 2b1397d..f4e3019 100644
 +# Claudio Rodrigo Pereyra Diaz <elsupergomez at gmail.com>, 2011.
 +# Dennis Tobar <dennis.tobar at gmail.com>, 2011.
 +#   <domingobecker at gmail.com>, 2011-2012.
++#  <ehespinosa at ya.com>, 2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -38835,9 +40560,9 @@ index 2b1397d..f4e3019 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Spanish (Castilian) <trans-es at lists.fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2013-01-06 19:59+0000\n"
-+"Last-Translator: Adolfo Jayme Barrientos <fitoschido at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-15 07:51+0000\n"
++"Last-Translator: vareli <ehespinosa at ya.com>\n"
 +"Language-Team: Spanish <trans-es at lists.fedoraproject.org>\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -38847,7 +40572,7 @@ index 2b1397d..f4e3019 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Actualizando"
  
@@ -38858,31 +40583,31 @@ index 2b1397d..f4e3019 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Actualizado"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Instalado"
  
@@ -38909,7 +40634,7 @@ index 2b1397d..f4e3019 100644
  msgstr "Eliminado: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Eliminando"
  
@@ -38919,71 +40644,71 @@ index 2b1397d..f4e3019 100644
  msgstr "Limpieza"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
 -msgstr "El comando \"%s\" ya ha sido definido"
 +msgstr "Ya se ha definido el comando «%s»"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Configurando los repositorios"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Error de configuración: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Error de opciones: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Instalado: %s-%s en %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
 -msgstr "  Construido: %s en %s"
 +msgstr "  Compilado    : %s en %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Enviado: %s en %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Necesita ingresar algún comando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Requerimientos de disco:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -38994,7 +40719,7 @@ index 2b1397d..f4e3019 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -39004,77 +40729,99 @@ index 2b1397d..f4e3019 100644
 +msgstr "Resumen de errores\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "No se puede crear archivo de bloqueo, ya existe uno"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Otra aplicación tiene retenido el bloqueo de Yum; finalizando de acuerdo a la configuración de exit_on_lock"
++
++#: ../cli.py:532
  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."
 +msgstr "Se intentó ejecutar la transacción pero no hay nada para hacer. Saliendo."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "futura versión rpmdb no coincide con la versión de transacción guardada."
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorando, como fue requerido."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " abortando."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Saliendo de acuerdo al comando del usuario"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Descargando paquetes:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Error al descargar los paquetes:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Ejecutando verificación de transacción"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  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:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
 -msgstr "El RPM necesita ser actualizado"
 +msgstr "El RPM necesita actualizarse"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
 -msgstr "Por favor, reporte este error en %s"
 +msgstr "Informe de este error en %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Ejecutando prueba de transacción"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Error en la verificación de la transacción:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "La prueba de transacción ha sido exitosa"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Ejecutando transacción"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -39084,12 +40831,12 @@ index 2b1397d..f4e3019 100644
 +msgstr "Se rechaza la importación automática de claves cuando se ejecuta desatendida.\nUtilice \"-y\" para forzar."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Tal vez quería decir: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
 -msgstr ""
@@ -39098,7 +40845,7 @@ index 2b1397d..f4e3019 100644
 +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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "No existe disponible ningún paquete %s%s%s."
@@ -39106,22 +40853,27 @@ index 2b1397d..f4e3019 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paquete(s) a instalarse"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Mal %s argumento %s."
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nada para hacer"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paquetes han sido seleccionados para ser actualizados"
@@ -39131,12 +40883,12 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes marcados para ser actualizados"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "No se han seleccionando paquetes para ser actualizados"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -39147,12 +40899,12 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes marcados para la Sincronización de Distribución"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "No se han seleccionado paquetes para Sincronización de distribución"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paquetes han sido seleccionados para ser eliminados"
@@ -39162,14 +40914,14 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes marcados para ser eliminados"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -39177,13 +40929,13 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes a rebajar versión"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (desde %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "El paquete instalado %s%s%s%s no se encuentra disponible."
@@ -39191,7 +40943,7 @@ index 2b1397d..f4e3019 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paquete(s) a reinstalar"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -39199,22 +40951,22 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes a reinstalar"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "No se ha ofrecido ningún paquete"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paquete(s) a instalarse"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "Nombre/Resumen que coinciden con: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -39223,7 +40975,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "  Nombre y resumen que coinciden con %s y sólo %s, use \"buscar todo\" para todo."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -39233,13 +40985,13 @@ index 2b1397d..f4e3019 100644
 +msgstr "  Nombre completo y resumen que coinciden con %s y sólo %s, use \"buscar todo\" para todo."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Concordante: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -39248,18 +41000,18 @@ index 2b1397d..f4e3019 100644
 +msgstr "  Nombre y resumen que coinciden con %s y en general con %s, use \"buscar todo\" para todo."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, 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:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "No se ha encontrado ningún resultado"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "No se ha encontrado ningún paquete para %s"
@@ -39269,90 +41021,111 @@ index 2b1397d..f4e3019 100644
 +msgstr "Error: No han sido encontrados paquetes para:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
 -msgstr "Limpiando repositorios:"
 +msgstr "Limpiando repositorios: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Limpiando todo"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Limpiando encabezados"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Limpiando paquetes"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Limpiando metadatos xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Limpiando el caché de la base de datos"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Limpiando metadatos expirados del caché"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Limpiando datos de rpmdb en el caché"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Limpiando complementos"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Advertencia: No hay grupos coincidentes con: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Advertencia: No hay grupos coincidentes con: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Grupos de Entorno Instalados:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Grupos de Entorno Disponibles:"
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Grupos instalados:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Grupos de idioma instalados:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Grupos disponibles:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Grupos de idioma disponibles:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Advertencia: No hay coincidencia Entornos/Grupos: %s"
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Listo"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Advertencia: Grupo/Entorno %s no existe."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Advertencia: Entorno %s no existe."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Aviso: el grupo %s no existe."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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 "
@@ -39360,7 +41133,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "En los grupos solicitados no existe disponible ningún paquete para ser instalado o actualizado"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d paquete(s) a instalar"
@@ -39370,18 +41143,24 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes a instalar"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr "No existe Entorno llamado %s"
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "No existe ningún grupo denominado %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "No existen paquetes a eliminarse de los grupos"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d paquete(s) a eliminar"
@@ -39391,20 +41170,20 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d paquetes a eliminar"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Ya se encuentra instalado el paquete %s, ignorando"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -39412,18 +41191,18 @@ index 2b1397d..f4e3019 100644
 +msgstr "No existe instalado otro %s, agregando a la lista para instalación posible"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opciones de complementos"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Error en la línea de comando: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -39436,49 +41215,49 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n\n%s: la opción %s necesita un argumento"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--insallroot debe ser una ruta absoluta: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "muestra este mensaje de ayuda y cierra"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "sea tolerante con los errores"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "configurar ubicación de archivo"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "tiempo máximo de espera del comando"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nivel de depuración de la salida"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr ""
 -"muestra duplicados en los repositorios, y en los comandos para "
@@ -39486,62 +41265,62 @@ index 2b1397d..f4e3019 100644
 +msgstr "muestra duplicados en los repositorios, y en los comandos para mostrar/buscar"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "nivel de error de la salida"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "nivel de depuración de salida para rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "operación discreta"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "operación detallada"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
 -msgstr "responde \"si\" a todas las preguntas"
 +msgstr "responde \"sí\" a todas las preguntas"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "responder no para todas las preguntas"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "muestra la versión de Yum y finaliza"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "define la raíz de instalación"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "activa uno o más repositorios (los comodines son permitidos)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "desactiva uno o más repositorios (los comodines son permitidos)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "excluya paquete(s) de acuerdo a su nombre o glob "
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
 -msgstr ""
 -"deshabilita la posibilidad de exclusión desde main, para un repositorio o "
@@ -39549,251 +41328,259 @@ index 2b1397d..f4e3019 100644
 +msgstr "deshabilita la posibilidad de exclusión desde main, para un repositorio o para todos"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "habilita el proceso de paquetes obsoletos durante las actualizaciones"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "deshabilita los complementos de Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "deshabilita la verificación de firmas GPG"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "deshabilita complementos de acuerdo a su nombre"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "habilita complementos de acuerdo a su nombre"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "ignora paquetes con problemas de resolución de dependencias"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "controla la utilización de colores"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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"
 +msgstr "defina el valor de $releasever en los archivos de configuración de yum y de los repositorios"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "no actualizar, sólo descargar"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "especifique un directorio alternativo para almacenar paquetes"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "define una configuración arbitraria y opciones de los repositorios"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Ene"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Abr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "May"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Ago"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Oct"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dic"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Intentando con otro espejo."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nombre        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arquitectura        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Período       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versión     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Lanzamiento     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Tamaño        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repositorio        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Desde el repositorio   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Enviado por   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Horario del envío  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Horario de la construcción   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Horario de la instalación: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Instalado por: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Modificado por  : %s "
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Resumen     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licencia     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Descripción :"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "s"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
 -msgstr "si"
 +msgstr "sí"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Está de acuerdo [s/N]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -39804,166 +41591,190 @@ index 2b1397d..f4e3019 100644
 +msgstr "\nGrupo: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Group-Id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Descripción: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Idioma: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Paquetes obligatorios:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Paquetes predeterminados:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Paquetes opcionales:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Paquetes condicionales:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Paquetes instalados:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nGrupo de Entorno: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "Id de Entorno: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Grupos Obligatorios:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Grupos Opcionales:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Grupos Instalados:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paquete: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr " No existen dependencias para este paquete"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr " dependencia: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr " Dependencia no satisfecha"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Resultado obtenido desde:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licencia     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Nombre del archivo    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Ofrece    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Otro       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Tamaño total: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Tamaño total de la descarga: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Tamaño instalado: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Hubo un error mientras se calculaba el tamaño instalado"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Reinstalando"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Desactualizando"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Instalando para las dependencias"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Actualizando para las dependencias"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Eliminando para las dependencias"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Ignorando (problemas de dependencias)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "No instalado"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "No disponible"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paquete"
 +msgid_plural "Packages"
@@ -39971,33 +41782,33 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "Paquetes"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arquitectura"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versión"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repositorio"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Tamaño"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     reemplazando  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -40013,7 +41824,7 @@ index 2b1397d..f4e3019 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Instalar   %5.5s Paquete(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalar"
  
@@ -40021,7 +41832,7 @@ index 2b1397d..f4e3019 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Actualizar   %5.5s Paquete(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Actualizar"
  
@@ -40029,7 +41840,7 @@ index 2b1397d..f4e3019 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Eliminar   %5.5s Paquete(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Eliminar"
  
@@ -40037,7 +41848,7 @@ index 2b1397d..f4e3019 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Reinstalar %5.5s Paquete(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Reinstalar"
  
@@ -40045,58 +41856,58 @@ index 2b1397d..f4e3019 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Desactualizar %5.5s Paquete(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Desactualizar"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Paquete dependiente"
 +msgstr[1] "Paquetes dependientes"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Eliminado(s)"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dependencia(s) eliminada(s)"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dependencia(s) instalada(s)"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dependencia(s) actualizada(s)"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Sustituido(s)"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Falló"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dos"
  
-@@ -960,571 +975,598 @@ msgstr "dos"
+@@ -960,571 +1059,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -40109,262 +41920,262 @@ index 2b1397d..f4e3019 100644
 +msgstr "\nSe ha cancelado la descarga actual, %sinterrumpa con (ctrl-c) nuevamente%s dentro de %s%s%s segundos\npara finalizar.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "interrupción solicitada por el usuario"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<no definido>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistema"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Sin transacciones"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  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:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Linea de comandos"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Registro de usuario"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Día y hora"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Acción(es)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Modificado"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "No se ha indicado un ID de transacción"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Se ha indicado un ID de transacción no válido "
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "No se ha encontrado el ID de transacción indicado"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  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:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  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:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Desactualizado"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Antiguos"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Nuevos"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ID de transacción :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Hora inicial     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Rpmdb inicial    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u segundos)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minutos)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u horas)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u dias)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Hora final       : "
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Rpmdb final      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Usuario           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Codigo-obtenido    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Abortado"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Fallas:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Falla:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Exito"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Línea de comando   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transacción realizada con:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Paquetes modificados:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Paquetes ignorados:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problemas en la base de datos RPM: "
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Información del scriptlet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Errores:"
  
@@ -40373,17 +42184,17 @@ index 2b1397d..f4e3019 100644
 -msgstr "Instalar"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Instalación de dependencias"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Convirtiendo en obsoleto"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Eliminar"
  
@@ -40396,190 +42207,190 @@ index 2b1397d..f4e3019 100644
 -msgstr "Desactualizar"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Actualizar"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Hora"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Ultimo día"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Ultima semana"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Ultimas 2 semanas"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Ultimos 3 meses"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Ultimos 6 meses"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Ultimo año"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Hace más de un año"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "No se ha encontrado una transacción %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "ID de transacción :"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Información de historial adicional disponible:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paquete       :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Estado         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Tamaño         :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Equipo de construcción:"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Fecha de construcción:"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Empaquetador   :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Vendedor       :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licencia       :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "RPM Fuente     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Fecha de publicación:"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Publicador     :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Razón          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Repositorio    :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Instalado por  :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Modificado por :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "instalado"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "una actualización"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "eliminado"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "reinstalado"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "una desactualización"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "obsoleto"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "actualizado"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "obsoleto"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Ejecutando prueba de transacción"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Reiniciando la resolución de las dependencias con las nuevas "
@@ -40587,36 +42398,38 @@ index 2b1397d..f4e3019 100644
 +msgstr "--> Reiniciando la resolución de las dependencias con las nuevas modificaciones."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Resolución de dependencias finalizada"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Procesando dependencias: %s para el paquete: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Manteniendo el paquete: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Manteniendo el paquete: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "--> Manteniendo paquete: %s debido a %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Dependencia no resuelta: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paquete: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -40627,7 +42440,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n    Necesita: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -40638,7 +42451,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -40649,7 +42462,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -40660,33 +42473,33 @@ index 2b1397d..f4e3019 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Actualizado por"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Desactualizado por"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Obsoleto por"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Disponible"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Procesando conflictos: %s choca con %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Construyendo el conjunto de las transacciones con los paquetes "
@@ -40694,7 +42507,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "--> Construyendo el conjunto de las transacciones con los paquetes seleccionados. Por favor aguarde."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
@@ -40704,71 +42517,71 @@ index 2b1397d..f4e3019 100644
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Comprobando"
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Ejecutando"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Durmiendo"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Ininterrumplible"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Rastreado/Detenido"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Desconocido"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  La otra aplicación es: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  La otra aplicación es: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memoria : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Iniciado: %s - %s atrás"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Estado  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -40780,7 +42593,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n\nSaliendo por cancelación del usuario"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -40792,7 +42605,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n\nSaliendo por tubería rota"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -40802,56 +42615,54 @@ index 2b1397d..f4e3019 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Otra aplicación tiene retenido el bloqueo de Yum; finalizando de acuerdo a "
 -"la configuración de exit_on_lock"
-+msgstr "Otra aplicación tiene retenido el bloqueo de Yum; finalizando de acuerdo a la configuración de exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Error de PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Error de yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Error: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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"
 +msgstr " Podría intentar utilizar el comando --skip-broken para sortear el problema"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -40861,11 +42672,11 @@ index 2b1397d..f4e3019 100644
 +msgstr "\nDependencias resueltas"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "¡Listo!"
  
-@@ -1536,7 +1578,7 @@ msgstr " Minu uso:\n"
+@@ -1536,7 +1656,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."
  
@@ -40874,7 +42685,7 @@ index 2b1397d..f4e3019 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1551,477 +1593,490 @@ msgid ""
+@@ -1551,589 +1671,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -40908,51 +42719,71 @@ index 2b1397d..f4e3019 100644
  msgstr "Error: Necesita pasar una lista de paquetes a %s "
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Error: Necesita al menos dos paquetes para %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Error: Necesita pasar una id de repositorio y comando a %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Error: Necesita pasar una única id de repositorio válida a %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Error: Repositorio %s no está habilitado"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Error: Es necesario un ítem con el cual corresponderse"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  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:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Error: la limpieza necesita una opción: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Error: argumento de limpieza no válido: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "No hay argumento para el shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Nombre de archivo pasado al shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -40964,114 +42795,114 @@ index 2b1397d..f4e3019 100644
 +msgstr "No existen repositorios habilitados.\n Ejecute \"yum repolist all\" para conocer los repositorios existentes.\n Puede habilitarlos con yum-config-manager --enable <repositorio>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAQUETE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Instala uno o varios paquetes en su sistema"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Configurando el proceso de instalación"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAQUETE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Actualiza uno o varios paquetes en su sistema"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Configurando el proceso de actualización"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Sincroniza los paquetes instalados a las últimas versiones disponibles"
 +msgstr "Sincroniza los paquetes instalados a las últimas versiones disponibles"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Definiendo el proceso de Sincronización de la distribución"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Paquetes instalados"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Paquetes disponibles"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Paquetes extra"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Paquetes actualizados"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Convirtiendo paquetes en obsoletos"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Paquetes añadidos recientemente"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "No hay paquetes que se correspondan con la lista"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Muestra un paquete o grupos de paquete"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Elimina uno o varios paquetes de su sistema"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Configurando el proceso de eliminación"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Muestra, o usa, la información de grupos"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Configurando el proceso de grupo"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "No existen grupos sobre los cuales ejecutar el comando"
  
@@ -41082,7 +42913,7 @@ index 2b1397d..f4e3019 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Sub-comando groups invalido, use: %s."
@@ -41090,81 +42921,81 @@ index 2b1397d..f4e3019 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "No existe un archivo de grupos instalados."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Muestra detalles acerca de un grupo de paquetes"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Usted no tiene acceso a la base de datos de grupos."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Genera el caché de metadatos"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  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:1094
++#: ../yumcommands.py:1283
  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"
 +msgstr "Esto podría demorar algún tiempo, dependiendo de la velocidad de su equipo"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Se ha creado el caché de metadatos"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Elimina los datos del caché"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Localiza el paquete que ofrezca el valor indicado"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Verifica la existencia de actualizaciones de paquetes"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Busca detalles en los paquetes para la cadena indicada"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Buscando paquetes:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Actualiza los paquetes tomando en cuenta los obsoletos"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Configurando el proceso de actualización"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instala un RPM local"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Configurando el proceso de instalación local de paquetes"
  
@@ -41173,150 +43004,150 @@ index 2b1397d..f4e3019 100644
 -msgstr "Determina qué paquetes ofrecen la dependencia indicada"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Buscando paquetes para la dependencia:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Ejecuta una shell de Yum interactiva "
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Configurando la shell de Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Muestra las dependencias que necesita un paquete"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Buscando dependencias:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Muestra los repositorios de software configurados"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "habilitado"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "deshabilitado"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Repo-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Repo-name    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Repo-status  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-revision: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tags    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo-updated : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Repo-pkgs    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Repo-size    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Actualizados    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-mirrors : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Nunca (último: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Instante (último: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s segundo(s) (último: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Repo-expire  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-exclude : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-include : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repositorio excluído:"
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Nombre de archivo del repositorio: "
@@ -41324,33 +43155,33 @@ index 2b1397d..f4e3019 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "id del repositorio"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "estado"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nombre del repositorio"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Muestra un mensaje de ayuda del uso"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "No existe asistencia disponible para %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -41362,7 +43193,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n\napodos: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -41374,148 +43205,186 @@ index 2b1397d..f4e3019 100644
 +msgstr "\n\napodo: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Configurando el proceso de reinstalación"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "reinstalar un paquete"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Configurando el proceso de desactualización"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "desactualizar un paquete a una versión anterior"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Grupos de la versión de Yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grupo   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Paquetes:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Instalado:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Grupo-Instalado:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Disponible:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Grupo-Disponible:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Mostrar, o utilizar, el historial de la transacción"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transacciones:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Hora de inicio :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Hora de fin    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Conteo         :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Sub-comando de historia no válido, utilice: %s"
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Verifica si hay problemas en la base de datos (rpmdb)"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "carga una transacción guardada desde un archivo"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "No se especificó un archivo de transacción guardada."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "cargando transacción desde %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Transacción cargada desde %s con %s miembros."
-@@ -2032,108 +2087,110 @@ msgstr "Transacción cargada desde %s con %s miembros."
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Manera simple de intercambiar paquetes, en lugar de utilizar shell"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Tratar un repositorio como un grupo de paquetes, de este modo instala/borra todos ellos"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d paquete a actualizar"
++msgstr[1] "%d paquetes a actualizar"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d paquete a borrar/instalar"
++msgstr[1] "%d paquetes a borrar/instalar"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d paquete a borrar/sincronizar"
++msgstr[1] "%d paquetes a borrar/sincronizar"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "No hay un subcomando válido de %s"
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Yum falló verificando: %s"
  
@@ -41524,32 +43393,25 @@ index 2b1397d..f4e3019 100644
 -"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... "
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Sin permiso de lectura/ejecución en el directorio actual, moviendo a /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "No existe accedo getcwd() en el directorio actual, trasladándose a /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "No se puede crear archivo de bloqueo, ya existe uno"
+-msgid "Can't create lock file; exiting"
+-msgstr "No se puede crear archivo de bloqueo, ya existe uno"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "No existe accedo getcwd() en el directorio actual, trasladándose a /"
  
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Resolviendo dependencias"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -41561,7 +43423,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "Su transacción fue guardada, vuelva a ejecutarla con:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -41604,7 +43466,7 @@ index 2b1397d..f4e3019 100644
  msgstr "Miembro: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s convertido para instalar"
@@ -41661,7 +43523,7 @@ index 2b1397d..f4e3019 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Modo para el paquete que ofrece %s: %s"
-@@ -2141,1067 +2198,1069 @@ msgstr "Modo para el paquete que ofrece %s: %s"
+@@ -2141,1067 +2322,1140 @@ 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 :(
@@ -41672,19 +43534,29 @@ index 2b1397d..f4e3019 100644
  msgstr "Intentando actualizar %s para resolver dependencia"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "No se encuentran senderos de actualización para %s. Fallo debido a requisito: %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Actualización para %s. No corregir requisito: %s!"
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -41693,13 +43565,13 @@ index 2b1397d..f4e3019 100644
 +msgstr "TSINFO: Transformando a %s en obsoleto utilizando %s para resolver la dependencia."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: Actualizando %s para resolver la dependencia."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
@@ -41708,14 +43580,14 @@ index 2b1397d..f4e3019 100644
 +msgstr "No es posible encontrar una ruta de actualización para la dependencia de: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -41724,13 +43596,13 @@ index 2b1397d..f4e3019 100644
 +msgstr "%s se encuentra entre los paquetes provistos, pero ya está instalado, eliminando. "
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -41738,76 +43610,76 @@ index 2b1397d..f4e3019 100644
 +msgstr "El paquete de solución posible %s posee una nueva instancia ya instalada."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
 -msgstr "TSINFO: Seleccionado %s como actualización de %s"
 +msgstr "TSINFO: Seleccionando %s como actualización de %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Exito - transacción vacía"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Reiniciando el bucle"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Finalizando el proceso de dependencias"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Exito - dependencias resueltas"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Verificando dependencias para %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "mejor arquitectura en po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s hace obsoleto a %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -41818,25 +43690,25 @@ index 2b1397d..f4e3019 100644
 +msgstr "archdist comparó %s con %s en %s\n  Vencedor: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "sourcerpm común %s y %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "requires el mínimo: %d"
@@ -41844,41 +43716,46 @@ index 2b1397d..f4e3019 100644
 +msgstr "ofrece vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Ganador: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "requires el mínimo: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Perdedor(con %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Mejor orden: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Saltando repositorio no legible %s"
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -41886,37 +43763,37 @@ index 2b1397d..f4e3019 100644
 +msgstr "Al repositorio %r le falta un nombre en su configuración, utilizando el id"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "los complementos ya se encuentran inicializados"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Leyendo RPDMDB local"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Configurando sacos de paquetes"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
 -msgstr ""
@@ -41925,77 +43802,82 @@ index 2b1397d..f4e3019 100644
 +msgstr "el objeto del repositorio para el repositorio %s necesita de un método a _resetSack\n"
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Construyendo objeto de actualizaciones"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Obteniendo metadatos de grupo"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Fallo al recuperar fichero de grupo para repositorio: %s"
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "No hay grupos disponibles en ningún repositorio"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Obteniendo metadatos de etiquetas de paquete (pkgtags)"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Agregando etiquetas del repositorio: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importando información adicional de listas de archivo"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -42005,24 +43887,58 @@ index 2b1397d..f4e3019 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Buscando dependencias sobrantes innecesarias"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Versiónes multilib protegidas: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr "Encontrados problemas de versión Multilib. Esto con frecuencia indica que la causa raíz es algo más y la comprobación de la versión multilib sólo indica que hay un problema. Esto es: 1. Usted tiene una actualización para %(name)s que hace desaparecer alguna dependencia que otro paquete requiere. Yum está intentando resolver estos instalando una versión más antigua de %(name)s de la arquitectura diferente. Si usted excliye la arquitectura mala yum le dirá que la causa raíz es (cual paquete requiere que). Usted puede intentar rehacer la actualización con --exclude %(name)s.otherarch ... esto le daría un mensaje de error mostrándole la causa raíz del problema. 2. Usted tiene múltiples arquitecturas de %(name)s instaladas, pero yum sólo puede ver una actualización para una de esas arquitecturas. Si usted no desea/necesita ambas arquitecturas más usted puede borrar la que tiene la actualización desaparecida y todo funcionará. 3. Usted tiene versione
 s duplicadas de %(name)s instaladas ya. Usted puede usar \"yum check\" para obtener que yum muestre esos errores. ...usted puede usar también --setopt=protected_multilib=false para borrar esta comprobación, sin embargo esto no es lo más correcto de hacer puesto que puede ocasionar que algo vaya mal (causando con frecuencia muchos más problemas). \n"
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "Intentando eliminar \"%s\", que está protegido"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -42032,14 +43948,14 @@ index 2b1397d..f4e3019 100644
 +msgstr "\nPaquetes ignorados por problemas de dependencias:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s de %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -42048,7 +43964,7 @@ index 2b1397d..f4e3019 100644
 +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:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
 -msgstr ""
 -"Advertencia: Las bases de datos (RPMDB) han sido modificadas por un elemento"
@@ -42056,17 +43972,17 @@ index 2b1397d..f4e3019 100644
 +msgstr "Advertencia: Las bases de datos (RPMDB) han sido modificadas por un elemento ajeno a yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "no se encuentra necesita"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "conflicto instalado"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -42075,18 +43991,18 @@ index 2b1397d..f4e3019 100644
 +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:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "La transacción no pudo iniciarse:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "No se pudo ejecutar la transacción"
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Falló al eliminar archivo de transacción %s"
@@ -42094,7 +44010,7 @@ index 2b1397d..f4e3019 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "¡se suponía que %s estuviera instalado, pero no lo está! "
@@ -42105,14 +44021,14 @@ index 2b1397d..f4e3019 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, 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
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr "No se pudo abrir el bloqueo %s: %s"
@@ -42121,7 +44037,7 @@ index 2b1397d..f4e3019 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "No es posible verificar si se encuentra activo el PID %s"
@@ -42130,7 +44046,7 @@ index 2b1397d..f4e3019 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 -msgstr ""
@@ -42141,7 +44057,7 @@ index 2b1397d..f4e3019 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr "No se ha podido crear el bloqueo en %s: %s"
@@ -42149,7 +44065,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "No es posible verificar si se encuentra activo el PID %s"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -42160,17 +44076,17 @@ index 2b1397d..f4e3019 100644
 +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:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "No se pudo realizar una suma de verificación"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  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:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -42179,7 +44095,7 @@ index 2b1397d..f4e3019 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "utilizando una copia local de %s"
@@ -42194,14 +44110,18 @@ index 2b1397d..f4e3019 100644
 -"Espacio insuficiente en el directorio de descarga %s\n"
 -"    * libre   %s\n"
 -"    * necesario %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "saliendo porque –se ha especificado sólo descarga"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "El encabezado no está completo."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -42211,55 +44131,55 @@ index 2b1397d..f4e3019 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problemas abriendo el paquete %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "El paquete %s no está firmado"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "No es posible eliminar %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s eliminado"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "No es posible eliminar %s archivo %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s archivo %s eliminado"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s archivos eliminados"
@@ -42269,19 +44189,19 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "%d %s archivos eliminados"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -42291,7 +44211,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "searchPackages() desaparecerá en alguna versión próxima de Yum. En su lugar utilice searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Buscando %d paquetes"
@@ -42301,23 +44221,23 @@ index 2b1397d..f4e3019 100644
 +msgstr[1] "Buscando paquetes %d"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "buscando paquete %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "buscando en las entradas de archivo"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "buscando en las entradas \"provee\""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  msgid "No group data available for configured repositories"
 -msgstr ""
 -"No existen datos de grupo disponibles en los repositorios configurados"
@@ -42326,88 +44246,105 @@ index 2b1397d..f4e3019 100644
 -#: ../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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Ignorando paquete %s del grupo %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Agregando paquete %s del grupo %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Advertencia: Grupo %s no tiene ningun paquete."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Advertencia: Grupo %s no tiene ningun paquete."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Advertencia: Grupo %s no tiene ningún paquete que instalar."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Saltando grupo %s desde entorno %s"
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, 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:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Advertencia: Grupo de Entorno %s no existe."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Paquete: %s – no se puede instalar con %s"
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "No se ha indicado nada para instalar"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Verificando la provision virtual o provision de archivo de %s"
@@ -42419,30 +44356,30 @@ index 2b1397d..f4e3019 100644
 -msgstr "No hay nada concordante con el argumento: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "No existe(n) paquete(s) disponible(s) para instalar"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -42453,7 +44390,7 @@ index 2b1397d..f4e3019 100644
 +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:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -42462,13 +44399,13 @@ index 2b1397d..f4e3019 100644
 +msgstr "El paquete %s se hace obsoleto con %s, en su lugar se está intentando instalar %s"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -42478,48 +44415,48 @@ index 2b1397d..f4e3019 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "No hay nada concordante con el argumento: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Ningún paquete encontrado para actualizar: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -42530,37 +44467,37 @@ index 2b1397d..f4e3019 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "No hay paquete correspondiente para ser eliminado"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Ningún paquete encontrado para eliminar: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Salteando el kernel en ejecución: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Eliminando %s de la transacción"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Examinando %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
 -msgstr ""
@@ -42568,7 +44505,7 @@ index 2b1397d..f4e3019 100644
 +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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -42578,7 +44515,7 @@ index 2b1397d..f4e3019 100644
 +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:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -42587,7 +44524,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "No es posible instalar el paquete %s. Se encuentra obsoleto debido al paquete instalado %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -42598,7 +44535,7 @@ index 2b1397d..f4e3019 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -42609,44 +44546,44 @@ index 2b1397d..f4e3019 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Excluyendo %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Marcando %s para ser instalado"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "No es posible abrir el archivo: %s. Ignorando."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Problema al reinstalar: no existe ningún paquete concordante para eliminar"
 +msgstr "Problema al reinstalar: no existe ningún paquete concordante para eliminar"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -42655,54 +44592,54 @@ index 2b1397d..f4e3019 100644
 +msgstr "Problema al reinstalar: no existe ningún paquete concordante con %s para instalar"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "No existe(n) paquete(s) disponible(s) para desactualizar"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Ninguna correspondencia disponible para el paquete: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Falló al desactualizar: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Falla al actualizar: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Obteniendo clave desde %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
@@ -42711,24 +44648,24 @@ index 2b1397d..f4e3019 100644
 +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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, 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:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -42747,7 +44684,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "Importando llave %s 0x%s:\n Usuarioid  : \"%s\"\n Huella       : %s\n Paquete    : %s (%s)\n Desde      : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -42763,7 +44700,7 @@ index 2b1397d..f4e3019 100644
 +msgstr "Importando llave %s 0x%s:\n Usuarioid  : \"%s\"\n Huella       : %s\n Desde      : %s"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -42773,29 +44710,29 @@ index 2b1397d..f4e3019 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n El paquete erróneo es: %s\n Las llaves GPG están configuradas como: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "La llave ha sido importada exitosamente"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "No instalar ninguna clave"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -42806,22 +44743,21 @@ index 2b1397d..f4e3019 100644
 +msgstr "Las llaves GPG listadas para el repositorio \"%s\" ya se encuentran instaladas, pero con este paquete no son correctas.\nVerifique que las URLs de la llave para este repositorio estén correctamente configuradas."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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)?"
 +msgstr "La importación de la(s) llave(s) no funcionó, ¿llave(s) equivocada(s)?"
- 
--#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "No"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Si"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -42831,8 +44767,9 @@ index 2b1397d..f4e3019 100644
 +" Failing repo is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Llave CA: %s\n El repositorio erróneo es: %s\n Las llaves GPG están configuradas como: %s\n"
-+
-+#: ../yum/__init__.py:5488
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "La llave GPG de %s (0x%s) ya ha sido importada"
@@ -42840,19 +44777,19 @@ index 2b1397d..f4e3019 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Falló la importación de la llave"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Falló la importación de la llave %s"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -42863,91 +44800,91 @@ index 2b1397d..f4e3019 100644
 +msgstr "Las llaves GPG listadas para el repositorio \"%s\" ya se encuentran instaladas, pero no son correctas.\nVerifique que se encuentren correctamente configuradas las URLs de la llave para este repositorio."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "No es posible encontrar un espejo que funcione."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Fueron encontrados errores mientras los paquetes eran descargados."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Por favor, informe este error en %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Errores de la prueba de transacción:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Dependencias no resueltas. No se guardarán las transacciónes no resuletas."
 +msgstr "Dependencias no resueltas. No se guardarán las transacciónes no resuletas."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "versión de rpmdb no coincide con versión de transacción guardada, "
- 
+-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:6040
- msgid " ignoring, as requested."
- msgstr " ignorando, como fue requerido."
- 
+-msgid " ignoring, as requested."
+-msgstr " ignorando, como fue requerido."
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " abortando."
+-msgid " aborting."
+-msgstr " abortando."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "versión rpmdb no coincide con versión de transacción guardada."
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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 "
@@ -42955,30 +44892,35 @@ index 2b1397d..f4e3019 100644
 +msgstr "Están faltando los miembros de la transacción y sus relaciones, o ts fue modificada,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " ignorando, a pedido. ¡Debe resolver dependencias nuevamente!"
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s ya ha sido visitado y no puede ser removido."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Examinando revdeps de %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s tiene como revdep a %s que fue instalado por el usuario."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s necesita ser instalado por un paquete."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s no tiene revdeps instaladas por el usuario."
@@ -43085,7 +45027,7 @@ index 2b1397d..f4e3019 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s ofrece %s, pero no puede ser encontrado"
-@@ -3210,6 +3269,19 @@ msgstr "%s ofrece %s, pero no puede ser encontrado"
+@@ -3210,6 +3464,23 @@ msgstr "%s ofrece %s, pero no puede ser encontrado"
  msgid "Repackaging"
  msgstr "Reempaquetando"
  
@@ -43094,7 +45036,7 @@ index 2b1397d..f4e3019 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Comprobar: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -43102,10 +45044,14 @@ index 2b1397d..f4e3019 100644
 +"    * needed %s"
 +msgstr "Espacio insuficiente en el directorio de descarga %s\n    * libre   %s\n    * necesario %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Paquete no coincide con descarga pretendida."
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3222,9 +3294,7 @@ msgstr "El RPM %s ha fallado la verificación md5"
+@@ -3222,9 +3493,7 @@ msgstr "El RPM %s ha fallado la verificación md5"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -43116,17 +45062,17 @@ index 2b1397d..f4e3019 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3240,5 +3310,3 @@ msgstr "Encabezado %s dañado"
+@@ -3240,5 +3509,3 @@ msgstr "Encabezado %s dañado"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Error al abrir el rpm %s - error %s"
 -
 -
 diff --git a/po/eu.po b/po/eu.po
-index f92862c..42be1f8 100644
+index f92862c..99871fe 100644
 --- a/po/eu.po
 +++ b/po/eu.po
-@@ -2,947 +2,969 @@
+@@ -2,947 +2,1052 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -43143,9 +45089,9 @@ index f92862c..42be1f8 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Basque (http://www.transifex.net/projects/p/yum/team/eu/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-09-28 23:24+0000\n"
-+"Last-Translator: assar <asiersar at yahoo.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Basque (http://www.transifex.com/projects/p/yum/language/eu/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -43155,7 +45101,7 @@ index f92862c..42be1f8 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Eguneratzen"
  
@@ -43166,31 +45112,31 @@ index f92862c..42be1f8 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Eguneratua"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Instalatua"
  
@@ -43217,7 +45163,7 @@ index f92862c..42be1f8 100644
  msgstr "Ezabatua: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Kentzen"
  
@@ -43227,69 +45173,69 @@ index f92862c..42be1f8 100644
  msgstr "Garbitzen"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "\"%s\" komandoa jadanik definitua"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Biltegiak konfiguratzen"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Biltegien metadatuak irakurtzen fitxategi lokaletatik"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Konfigurazio-errorea: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Aukeren errorea: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Instalatua: %s-%s %s-(e)n"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Eraikia    : %s %s-(e)n"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Egikaritua: %s %s-(e)n"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Komandoren bat eman behar duzu"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Disko-eskakizunak:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -43300,7 +45246,7 @@ index f92862c..42be1f8 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -43310,75 +45256,96 @@ index f92862c..42be1f8 100644
 +msgstr "Erroreen laburpena\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Ezin izan da fitxategia blokeatu; irteten"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Beste aplikazio batek yum blokeatuta dauka; irteten exit_on_lock-en konfiguratuta dagoenari kasu eginez"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
--"Transakzioaren exekuzioa saiatzen baina ez dago egiteko ezer. Irteten."
 +msgstr "Transakzioaren exekuzioa saiatzen baina ez dago egiteko ezer. Irteten."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
+-"Transakzioaren exekuzioa saiatzen baina ez dago egiteko ezer. Irteten."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ezikusten, eskatu den bezala."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " abortatzen."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Irteten erabiltzaile-komandoaren ondoren"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Paketeak deskargatzen:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Errorea paketeak deskargatzean:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Transakzio-egiaztapena exekutatzen"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "ERROREA transakzio-egiaztapena eta depsolve artean:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM eguneratu egin behar da"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Jakinarazi errore hau %s-(e)n"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Transakzio-testa exekutatzen"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Transakzioaren egiaztapen-errorea:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Transakzio-testak arrakasta izan du"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Transakzioa exekutatzen"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -43388,18 +45355,18 @@ index f92862c..42be1f8 100644
 +msgstr "Baztertzen gakoak automatikoki inportatzea arretarik gabe exekutatzen ari denean.\nErabili \"-y\" gainidazteko."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Agian hau esan nahi zenuen: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "%s%s%s paketea ez dago eskuragarri."
@@ -43407,7 +45374,12 @@ index f92862c..42be1f8 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Instalatzeko paketea(k)"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -43416,13 +45388,13 @@ index f92862c..42be1f8 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Ez dago egiteko ezer"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pakete markatu dira eguneratuak izateko"
@@ -43432,12 +45404,12 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete markatu dira eguneratuak izateko"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Ez da paketerik markatu eguneratua izateko"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pakete markatu dira banaketa sinkronizatzeko"
@@ -43447,12 +45419,12 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete markatu dira banaketa sinkronizatzeko"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Ez da paketerik markatu banaketa sinkronizatzeko"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pakete markatu dira kenduak izateko"
@@ -43462,14 +45434,14 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete markatu dira kenduak izateko"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -43477,13 +45449,13 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete bertsio zaharragoa instalatzeko"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (%s-(e)tik)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "%s%s%s%s pakete instalatua ez dago eskuragarri."
@@ -43491,7 +45463,7 @@ index f92862c..42be1f8 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Berrinstalatzeko paketea(k)"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -43499,22 +45471,22 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete berrinstalatzeko"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Ez da paketerik adierazi"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Instalatzeko paketea(k)"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "N/S bat etortze: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -43523,7 +45495,7 @@ index f92862c..42be1f8 100644
 +msgstr "  Izen eta laburpenen bat etortzeak %ssoilik%s, erabili \"bilatu dena\" denean bilaketa egiteko."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -43533,13 +45505,13 @@ index f92862c..42be1f8 100644
 +msgstr "  Izen osoen eta laburpenen bat etortzeak %ssoilik%s, erabili \"bilatu dena\" denean bilaketa egiteko."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Bat dator: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -43548,18 +45520,18 @@ index f92862c..42be1f8 100644
 +msgstr "  Izen eta laburpenen bat etortzeak %sgehien bat%s, erabili \"bilatu dena\" denean bilaketa egiteko."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Abisua: Ez da bat datorrenik aurkitu honentzako: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Ez da parekatzerik aurkitu"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Ez da paketerik aurkitu %s-(e)rako"
@@ -43569,94 +45541,115 @@ index f92862c..42be1f8 100644
 +msgstr "Errorea: Ez da paketerik aurkitu honetarako:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Biltegiak garbitzen: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Dena garbitzen"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Goiburuak garbitzen"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Paketeak garbitzen"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "XML metadatuak garbitzen"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Datu-basearen katxea garbitzen"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Metadatuen expire-cache garbitzen"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Katxetutako rpmdb datuak garbitzen"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "pluginak garbitzen"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Abisua: Ez dago taldeen bat etortzerik: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Abisua: Ez dago taldeen bat etortzerik: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Talde instalatuak:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Instalatutako hizkuntza-taldeak:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Talde eskuragarriak:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Eskuragarri dauden hizkuntza-taldeak:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Egina"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Abisua: %s taldea ez da existitzen."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d pakete instalatzeko"
@@ -43666,18 +45659,24 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete instalatzeko"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Ez da existitzen %s izena duen talderik"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Ez dago paketerik taldeetatik kentzeko"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pakete kentzeko"
@@ -43687,20 +45686,20 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete kentzeko"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "%s paketea instalatuta dago, saltatzen"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -43709,18 +45708,18 @@ index f92862c..42be1f8 100644
 +msgstr "Ez dago beste %s-(e)rik instalatuta, zerrendara gehitzen balizko instalazio baterako"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Plugin aukerak"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Komando-lerroko errorea: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -43733,355 +45732,362 @@ index f92862c..42be1f8 100644
 +msgstr "\n\n%s: %s aukerak argumentua behar du"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, 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:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "erakutsi laguntza-mezu hau eta irten"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "erroreekiko tolerantea izan"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "exekutatu osorik sistemaren katxetik, ez eguneratu katxea"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "konfigurazio-fitxategiaren kokapena"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "komandoen itxarote-denbora maximoa"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "arazketa-irteeraren maila"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "erakutsi bikoiztuak, biltegietan, zerrenda/bilaketa komandoetan"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "errore-irteeraren maila"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "arazketa-irteeraren maila rpm-rako"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "eragiketa lasaia"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "eragiketa berritsua"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "erantzun bai galdera guztiei"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "erantzun ez galdera guztiei"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "erakutsi Yum bertsioa eta irten"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "ezarri instalazio-erroa"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "gaitu biltegi bat edo gehiago (komodinak onartzen dira)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "desgaitu biltegi bat edo gehiago (komodinak onartzen dira)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "baztertu paketea(k) izenaren edo glob-aren arabera"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "gaitu zaharkituen prozesatzea eguneraketetan"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "desagitu Yum-en pluginak"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "desgaitu gpg sinaduren egiaztatzea"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "desgaitu pluginak izenaren arabera"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "gaitu pluginak izenaren arabera"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "saltatu mendekotasun-arazoak dituzten paketeak"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontrolatu kolorea erabiliko den"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
--"ezarri $releasever balioa yum-en konfigurazioan eta biltegi-fitxategietan"
 +msgstr "ezarri $releasever balioa yum-en konfigurazioan eta biltegi-fitxategietan"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
+-"ezarri $releasever balioa yum-en konfigurazioan eta biltegi-fitxategietan"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "ezarri konfigurazio- eta biltegi-aukera arbitrarioak"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "urt."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "ots."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "mar."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "api."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "mai."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "eka."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "uzt."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "abu."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "ira."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "urr."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "aza."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "abe."
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Beste ispilu bat probatzen."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Izena        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arkitektura        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Garaia       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Bertsioa     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Argitalpena     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Tamaina        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Biltegia        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Biltegitik   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Bidaltzailea   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Bidaltze-data  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Eraikitze-data   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Instalazio-ordua: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Instalatzailea: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Aldatzailea: %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Laburpena    : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URLa        : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Lizentzia     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Deskribapena: "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "b"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "bai"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "e"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ez"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Ados? [b/E]:  "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -44092,166 +46098,190 @@ index f92862c..42be1f8 100644
 +msgstr "\nTaldea: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Talde-IDa: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Deskribapena: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Hizkuntza: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Derrigorrezko paketeak:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Pakete lehenetsiak:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Hautazko paketeak:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Baldintzapeko paketeak:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Instalatutako paketeak:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paketea: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Ez dago mendekotasunik pakete honetarako"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  mendekotasuna: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Bete gabeko mendekotasuna"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Bat-egitea hemendik:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Lizentzia     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Fitxategi-izena    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Hornitzen du    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Besterik       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Errorea gertatu da deskarga-tamaina osoa kalkulatzean"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Tamaina osoa: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Deskargaren tamaina osoa: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Tamaina instalatu ondoren: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Errorea gertatu da instalatu ondoren duen tamaina kalkulatzean"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Berrinstalatzen"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Bertsio zaharra instalatzen"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Mendekotasunengatik instalatzen"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Mendekotasunengatik eguneratzen"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Mendekotasunengatik kentzen"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Saltatu egin da (mendekotasun-arazoak)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Ez instalatua"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Ez dago eskuragarri"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paketea"
 +msgid_plural "Packages"
@@ -44259,33 +46289,33 @@ index f92862c..42be1f8 100644
 +msgstr[1] "Pakete"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arkitektura"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Bertsioa"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Biltegia"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Tamaina"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     %s%s%s.%s %s ordezten\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -44301,7 +46331,7 @@ index f92862c..42be1f8 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Instalatu   %5.5s pakete\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalatu"
  
@@ -44309,7 +46339,7 @@ index f92862c..42be1f8 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Eguneratu   %5.5s pakete\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Bertsio-berritu"
  
@@ -44317,7 +46347,7 @@ index f92862c..42be1f8 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Kendu    %5.5s pakete\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Kendu"
  
@@ -44325,7 +46355,7 @@ index f92862c..42be1f8 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Berrinstalatu   %5.5s pakete\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Berrinstalatu"
  
@@ -44333,58 +46363,58 @@ index f92862c..42be1f8 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Instalatu   %5.5s paketeren bertsio zaharragoa\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Bertsio zaharra instalatu"
-+
-+#: ../output.py:1544
+ 
+-#: ../output.py:1165
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Mendeko pakete"
 +msgstr[1] "Mendeko pakete"
- 
--#: ../output.py:1165
-+#: ../output.py:1604
++
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Kendua"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Mendekotasuna kendu da"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Mendekotasuna instalatu da"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Mendekotasuna eguneratu da"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Ordezkatua"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Huts egin du"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "bi"
  
-@@ -950,566 +972,598 @@ msgstr "bi"
+@@ -950,566 +1055,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -44396,262 +46426,262 @@ index f92862c..42be1f8 100644
 +msgstr "\n Uneko deskarga bertan behera utzi da, %sinterrupt (ktrl-c) berriro%s  %s%s%s segundotan\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "erabiltzaileak utzia"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Guztira"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<ezarri gabea>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistema"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Ez dago transakziorik"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Transakzio-ID, edo pakete, okerra(k) eman dira"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Komando-lerroa"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Saioa hasteko erabiltzailea"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "IDa"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Data eta ordua"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Ekintza(k)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Aldatua"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Ez da transakzio-IDrik eman"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Transakzio-ID okerra eman da"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Ez da aurkitu emandako transakzio-IDarekin"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Transakzio-ID bat baino gehiago aurkitu da!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Ez da transakzio-IDrik, edo paketerik, eman"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Bertsio zaharra instalatua"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Zaharragoa"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Berriagoa"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Transakzio-IDa :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Hasiera-ordua     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Hasierako rpmdb-a    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u segundo)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minutu)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u ordu)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u egun)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Amaiera-ordua       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Amaierako rpmdb-a      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Erabiltzailea           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Itzulera-kodea    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Abortatua"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Hutsegiteak:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Hutsegitea:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Arrakasta"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Komando-lerroa   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transakzioa honekin burutu da:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Aldatutako paketeak:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Saltatutako paketeak:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb-arazoak:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptlet-irteera:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Erroreak:"
  
@@ -44660,17 +46690,17 @@ index f92862c..42be1f8 100644
 -msgstr "Instalatu"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Mendekotasunak instalatu"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Zaharkitutzat hartzen"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Ezabatu"
  
@@ -44683,229 +46713,231 @@ index f92862c..42be1f8 100644
 -msgstr "Bertsio zaharra instalatu"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Eguneratu"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Noiz"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Azken eguna"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Azken astea"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Azken 2 asteak"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Azken 3 hilabeteak"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Azken 6 hilabeteak"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Azken urtea"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Duela urtebete inguru"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Ez da %s transakziorik aurkitu"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Transakzioaren IDa:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Historia-informazio gehigarria eskuragarri:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paketea        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Egoera          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Tamaina        :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Eraikitze-ostalaria :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Eraikitze-ordua :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Paketatzailea  :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Hornitzailea   :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Lizentzia      :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URLa           :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Jatorrizko RPMa :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Egikaritze-ordua :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Bidaltzailea   :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Arrazoia       :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Biltegi honetatik :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Instalatzailea  :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Aldatzailea    :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
 -msgstr "instalatua"
 +msgstr "instalatu"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "eguneraketa bat"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
 -msgstr "ezabatua"
 +msgstr "ezabatu"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
 -msgstr "berrinstalatua"
 +msgstr "berrinstalatu"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr "bertsio-zahartze bat"
 +msgstr "bertsio-zahartu"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "zaharkitzen"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "eguneratua"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
 -msgstr "zaharkitua"
 +msgstr "zaharkitu"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Transakzio-egiaztapena exekutatzen"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Mendekotasun-ebazpena berrabiarazten aldaketa berriekin."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Amaitu da mendekotasunen ebazpena"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Mendekotasuna prozesatzen: %s %s paketerako"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Paketea mantentzen: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Paketea mantentzen: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Ebatzi gabeko mendekotasuna: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paketea: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -44916,7 +46948,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n    Behar du: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -44927,7 +46959,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -44938,7 +46970,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -44949,114 +46981,114 @@ index f92862c..42be1f8 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Eguneratu duena"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Bertsio zaharra hobetsi duena"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Zaharkitutzat hartu duena"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Eskuragarri"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Gatazka prozesatzen: %s-(e)k gatazka du %s-(e)kin"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Transakzio-multzoa sortzen hautatutako paketeekin. Itxaron mesedez."
 +msgstr "--> Transakzio-multzoa sortzen hautatutako paketeekin. Itxaron mesedez."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
 -"---> Goiburua deskargatzen %s-(e)rako, transakzio-multzoan sartua izan "
 -"dadin."
 +msgstr "---> Goiburua deskargatzen %s-(e)rako, transakzio-multzoan sartua izan dadin."
- 
--#: ../utils.py:99
++
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Egiaztatzen"
-+
-+#: ../utils.py:129
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
  msgid "Running"
  msgstr "Exekutatzen"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Lotan"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Ezin da eten"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zonbia"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Aztarnatua/Gelditua"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Ezezaguna"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Beste aplikazioa PackageKit da"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Beste aplikazioa %s da"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memoria: %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Hasiera: %s - duela %s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Egoera  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -45068,7 +47100,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n\nIrteten erabiltzaileak bertan behera utzi duelako"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -45080,7 +47112,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n\nIrteten kanalizazio hautsiagatik"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -45093,51 +47125,49 @@ index f92862c..42be1f8 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Beste aplikazio batek yum blokeatuta dauka; irteten exit_on_lock-en "
 -"konfiguratuta dagoenari kasu eginez"
-+msgstr "Beste aplikazio batek yum blokeatuta dauka; irteten exit_on_lock-en konfiguratuta dagoenari kasu eginez"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit errorea: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum errorea: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Errorea: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Errore ezezaguna(k): Irteera-kodea: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -45147,11 +47177,11 @@ index f92862c..42be1f8 100644
 +msgstr "\nMendekotasunak ebatzi dira"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Osatua!"
  
-@@ -1521,7 +1575,7 @@ msgstr " Mini erabilera:\n"
+@@ -1521,7 +1652,7 @@ msgstr " Mini erabilera:\n"
  msgid "You need to be root to perform this command."
  msgstr "Erroa izan behar duzu komando hau exekutatzeko."
  
@@ -45160,7 +47190,7 @@ index f92862c..42be1f8 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1536,475 +1590,490 @@ msgid ""
+@@ -1536,585 +1667,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -45192,53 +47222,73 @@ index f92862c..42be1f8 100644
  msgstr "Errorea: Pkgs-en zerrenda bat pasatu behar zaio %s-(e)ri"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Errorea: Bat datorren elementu bat behar da"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Errorea: Talde bat edo taldeen zerrenda bat behar da"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Errorea: Garbiketak aukera bat behar du: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Errorea: baliogabeko garbiketa-argumentua: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Ez dago argumenturik shell-arentzako "
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Shell-ari pasatutako fitxategi-izena: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
 -msgstr ""
 -"Errorea: fitxategi bat baino gehiago eman zaio shell-ari argumentu gisa."
 +msgstr "Errorea: fitxategi bat baino gehiago eman zaio shell-ari argumentu gisa."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -45250,114 +47300,114 @@ index f92862c..42be1f8 100644
 +msgstr "Ez dago biltegirik gaituta.\n Exekutatu \"yum repolist all\" dauzkazun biltegiak ikusteko.\n Biltegiak gaitzeko, yum-config-manager --enable <biltegia> erabil dezakezu"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKETEA..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Instalatu pakete bat edo gehiago zure sisteman"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Instalazio-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKETEA...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Eguneratu zure sistemako pakete bat edo gehiago"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Eguneraketa-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Sinkronizatu instalatutako paketeak eskuragarri dauden azken bertsioetara"
 +msgstr "Sinkronizatu instalatutako paketeak eskuragarri dauden azken bertsioetara"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Banaketaren sinkronizazio-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Instalatutako paketeak"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Pakete eskuragarriak"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Pakete gehigarriak"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Eguneratutako paketeak"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Paketeak zaharkitutzat hartzen"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Berriki gehitutako paketeak"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Ez dago bat datorren paketerik zerrendatzeko"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Zerrendatu pakete bat edo pakete-multzo bat"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Kendu pakete bat edo gehiago zure sistematik"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Kentze-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Erakutsi, edo erabili, taldeen informazioa"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Talde-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Ez dago talderik komandoa exekutatu ahal izateko"
  
@@ -45368,7 +47418,7 @@ index f92862c..42be1f8 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Instalatu talde bateko paketeak zure sisteman"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Baliogabeko talde-azpikomandoa, erabili: %s."
@@ -45376,79 +47426,79 @@ index f92862c..42be1f8 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Kendu talde bateko paketeak zure sistematik"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Ez dago instalatutako taldeen fitxategirik."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Erakutsi pakete-talde bati buruzko xehetasunak"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Ez duzu baimenik taldeen DBa ikusteko."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Sortu metadatuen katxea"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Katxe-fitxategiak egiten metadatu-fitxategi guztietarako"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metadatuen katxea sortu da"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "kendu katxeatutako datuak"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Aurkitu zein paketek hornitzen duen emandako balioaz"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Egiaztatu pakete-eguneraketarik dagoen eskuragarri"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Bilatu pakete-xehetasunak emandako katetik abiatuz"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Paketeak bilatzen: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Eguneratu paketeak zaharkituak kontuan hartuz"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Bertsio-berritzearen prozesua konfiguratzen"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instalatu RPM lokala"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Pakete lokalen prozesua konfiguratzen"
  
@@ -45457,150 +47507,150 @@ index f92862c..42be1f8 100644
 -msgstr "Zehaztu zein paketek hornitzen duen emandako mendekotasunaz"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Mendekotasunetarako paketeak bilatzen:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Exekutatu yum shell interaktiboa"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Yum shell konfiguratzen"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Zerrendatu pakete baten mendekotasunak"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Mendekotasunak aurkitzen: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Erakutsi konfiguratutako software-biltegiak"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "gaitua"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "desgaitua"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Biltegi-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Biltegi-izena      : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Biltegi-egoera  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Biltegi-berrikuspena: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Biltegi-etiketak    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Banaketa-biltegi-etiketak: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Biltegi-eguneratua: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Biltegi-pkgs: "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Biltegi-tamaina: "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Biltegi-baseurl: "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Biltegi-metaesteka: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Eguneratua    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Biltegi-ispiluak: "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Inoiz ez (azkena: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Berehala (azkena: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s segundo (azkena: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Biltegi-iraungipena: "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Biltegi-baztertu: "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Biltegi-barneratu: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Biltegi-baztertua: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Biltegi-izena: "
@@ -45608,33 +47658,33 @@ index f92862c..42be1f8 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "biltegi id-a"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "egoera"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "biltegi-izena"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Erakutsi erabilera-mezu laguntzailea"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Ez dago laguntzarik %s-(e)rako"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -45646,7 +47696,7 @@ index f92862c..42be1f8 100644
 +msgstr "\n\naliasak: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -45658,148 +47708,186 @@ index f92862c..42be1f8 100644
 +msgstr "\n\naliasa: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Berrinstalazio-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "Berrinstalatu pakete bat"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Bertsio zaharragoaren instalazio-prozesua konfiguratzen"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "Pakete baten bertsio zaharragoa instalatu"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum bertsio-taldeak:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Taldea   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Paketeak:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Instalatua:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Talde-instalatua:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Eskuragarri:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Talde-eskuragarri:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Erakutsi, edo erabili, transakzio-historia"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transakzioak:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Hasiera-ordua     :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Amaiera-ordua       :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Zenbaketa   :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Baliogabeko historia-azpikomandoa, erabili: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Ez daukazu historiaren DBra sartzeko baimenik."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Begiratu arazorik dagoen rpmdb-an"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "kargatu gordetako transakzio bat fitxategi-izen batetik"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Ez da gordetako transakzioaren fitxategia adierazi."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "transakzioa kargatzen %s fitxategitik"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Transakzioa kargatua %s-(e)tik, %s kide"
-@@ -2015,106 +2084,110 @@ msgstr "Transakzioa kargatua %s-(e)tik, %s kide"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Yum egiaztapenak huts egin du: %s"
  
@@ -45807,32 +47895,25 @@ index f92862c..42be1f8 100644
 -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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Ez dago irakurtzeko/exekutatzeko baimenik uneko direktorioan, errora mugitzen"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Ezin izan da fitxategia blokeatu; irteten"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Ez dago getcwd() atzipenik uneko direktorioan, errora mugitzen"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Ezin izan da fitxategia blokeatu; irteten"
  
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Mendekotasunak ebazten"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -45844,7 +47925,7 @@ index f92862c..42be1f8 100644
 +msgstr "Zure transakzioa gorde egin da, berrexekutatzeko erabili hau:\n yum load-transacion %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -45886,7 +47967,7 @@ index f92862c..42be1f8 100644
  msgstr "Kidea: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s bihurtu instalatzeko"
@@ -45943,7 +48024,7 @@ index f92862c..42be1f8 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "pkg-rako moduak %s-(e)az hornitzen: %s"
-@@ -2122,1044 +2195,1069 @@ msgstr "pkg-rako moduak %s-(e)az hornitzen: %s"
+@@ -2122,1044 +2318,1140 @@ 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 :(
@@ -45954,44 +48035,54 @@ index f92862c..42be1f8 100644
  msgstr "%s eguneratzen saiatzen dep konpontzeko"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: %s eguneratzen mendekotasuna konpontzeko."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -45999,13 +48090,13 @@ index f92862c..42be1f8 100644
 +msgstr "%s hornitutako paketeetan dago baina jadanik instalatuta dago, kentzen."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -46013,75 +48104,75 @@ index f92862c..42be1f8 100644
 +msgstr "Konponketak ekar ditzakeen %s paketeak instantzia berria du instalatuta."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s jadanik tx-en, saltatzen hau"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Arrakasta - transakzio hutsa"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Berrabiarazten begizta"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Amaitzen mendekotasun-prozesatzea"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Arrakasta - mendekotasunak konpondu dira"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "%s-(r)en mendekotasunak egiaztatzen"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "Arkitektura hobea %s po-an"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s-(e)k %s zaharkitu bihurtzen du"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -46092,25 +48183,25 @@ index f92862c..42be1f8 100644
 +msgstr "%s eta %s alderatu dira %s-(e)n\n  Irabazlea: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "%s eta %s sourcerpm komuna"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "minimoa behar du: %d"
@@ -46118,161 +48209,170 @@ index f92862c..42be1f8 100644
 +msgstr "vercmp hornitzen du: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Irabazlea: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "minimoa behar du: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Galtzailea (%d-(r)ekin): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Ordenarik onena: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
--msgstr ""
--"doConfigSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
 +msgstr "doConfigSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
++
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
+ msgstr ""
+-"doConfigSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "%r biltegia: Errorea konfigurazioa analizatzean: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "pluginak jadanik hasieratu dira"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 -"doRpmDBSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
 +msgstr "doRpmDBSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "RPMDB lokala irakurtzen"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Pakete-multzoak konfiguratzen"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "beraz, biltegi hau ezin da berrezarri.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 -"doUpdateSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
 +msgstr "doUpdateSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Eguneraketa-objektua eraikitzen"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 -"doGroupSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
 +msgstr "doGroupSetup() desagertu egingo da yum-en etorkizuneko bertsio batean.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Taldeen metadatuak eskuratzen"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Biltegiko talde-fitxategia gehitzen: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Ez dago talderik eskuragarri biltegietan"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "pkgtags metadatuak eskuratzen"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Etiketak gehitzen biltegitik: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Fitxategi-zerrendaren informazio gehigarria inportatzen"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -46282,24 +48382,58 @@ index f92862c..42be1f8 100644
 +msgstr "Amaitu gabeko transakzioak geratu dira. Lehenengo yum-complete-transaction exekutatu beharko zenuke haiek amaitzeko."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Behar ez diren gainerako mendekotasunak aurkitzen"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Babestutako multilib bertsioak: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "Babestuta dagoen \"%s\" kentzen saiatzen"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -46309,14 +48443,14 @@ index f92862c..42be1f8 100644
 +msgstr "\nMendekotasun-arazoengatik saltatutako paketeak:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s %s-(e)tik"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -46325,22 +48459,22 @@ index f92862c..42be1f8 100644
 +msgstr "** Aurretiaz existitzen ziren %d rpmdb arazo aurkitu dira, 'yum check' aginduak hurrengoa ematen du:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Abisua: RPMDB yum-etik kanpo aldatu da."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "galdutako betebeharrak"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "gatazka instalazioan"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -46349,18 +48483,18 @@ index f92862c..42be1f8 100644
 +msgstr "Abisua: transakzioan zehar erroreak scriptlet-ekin edo beste errore ez-larri batzuk gertatu dira"
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transakzioa ezin izan da abiarazi:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Ezin izan da transakzioa exekutatu."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "%s transakzio-fitxategia kentzeak huts egin du"
@@ -46368,7 +48502,7 @@ index f92862c..42be1f8 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s instalatuko zela uste zen baina ez dago instalatuta!"
@@ -46379,14 +48513,14 @@ index f92862c..42be1f8 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, 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
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr "Ezin da %s blokeoa ireki: %s"
@@ -46395,7 +48529,7 @@ index f92862c..42be1f8 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "Ezin izan da egiaztatu %s PIDa aktibo dagoen ala ez"
@@ -46404,7 +48538,7 @@ index f92862c..42be1f8 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 -msgstr ""
@@ -46415,7 +48549,7 @@ index f92862c..42be1f8 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr "Ezin izan da blokeoa sortu %s-(e)n: %s "
@@ -46423,7 +48557,7 @@ index f92862c..42be1f8 100644
 +msgstr "Ezin izan da egiaztatu %s PIDa aktibo dagoen ala ez"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -46434,17 +48568,17 @@ index f92862c..42be1f8 100644
 +msgstr "Paketea ez dator bat esandako deskargarekin. Iradokizuna: exekutatu yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Ezin izan da checksum-a egin"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paketea ez dator bat checksum-arekin"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -46452,7 +48586,7 @@ index f92862c..42be1f8 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "%s-(r)en kopia lokala erabiltzen"
@@ -46463,18 +48597,21 @@ index f92862c..42be1f8 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Ez dago aski espaziorik %s deskarga-direktorioan\n"
 -"    *lekua %s\n"
 -"    * behar da %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Goiburua ez dago osorik."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -46484,55 +48621,55 @@ index f92862c..42be1f8 100644
 +msgstr "Goiburua ez dago katxe lokalean eta katxea-bakarrik modua dago gaituta. Ezin da %s deskargatu"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Arazoa %s paketea irekitzen"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "%s paketea ez dago sinatuta"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Ezin da %s kendu"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s kendu da"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Ezin da %s fitxategi %s kendu"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s fitxategi %s kendu da"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s fitxategi kendu dira"
@@ -46542,19 +48679,19 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d %s fitxategi kendu dira"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -46564,7 +48701,7 @@ index f92862c..42be1f8 100644
 +msgstr "searchPackages() desagertu egingo da yum-en etorkizuneko bertsio batean.                      Erabili searchGenerator() haren ordez. \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "%d pakete bilatzen"
@@ -46574,111 +48711,128 @@ index f92862c..42be1f8 100644
 +msgstr[1] "%d pakete bilatzen"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "Pakete %s bilatzen"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "fitxategi-sarreretan bilatzen"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "hornitze-sarreretan bilatzen"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "%s paketea ez da markatua izan %s taldean"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "%s paketea (%s taldekoa) saltatzen"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "%s taldeko %s paketea gehitzen"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Abisua: %s taldeak ez du paketerik."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Abisua: %s taldeak ez du paketerik."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr "%s taldeak %u baldintza-pakete ditu, instalatuak izan daitezkeenak."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr "Baliogabeko bertsio-bandera: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Ez da paketerik aurkitu %s-(e)rako"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Ez da instalatzeko ezer zehaztu"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Hornitze birtualen edo fitxategi-hornitzeen bila %s-(e)rako"
@@ -46690,24 +48844,24 @@ index f92862c..42be1f8 100644
 -msgstr "Ez dago bat etortzerik argumenturako: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Ez dago paketerik eskuragarri instalatua izateko"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Paketea: %s - jadanik transakzio-multzoan"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
 -msgstr ""
@@ -46715,7 +48869,7 @@ index f92862c..42be1f8 100644
 +msgstr "%s paketea zaharkitua dago, bere ordezkoa den %s paketea instalatuta dago"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -46726,7 +48880,7 @@ index f92862c..42be1f8 100644
 +msgstr "%s paketea zaharkitua dago, eta bere ordezkoa den %s paketeak ez ditu eskakizunak betetzen"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -46734,13 +48888,13 @@ index f92862c..42be1f8 100644
 +msgstr "%s paketea zaharkitua dago, bere ordezkoa %s da, %s instalatzen saiatzen"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -46749,48 +48903,48 @@ index f92862c..42be1f8 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Ez dago bat etortzerik argumenturako: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Ez dago bertsio-berritzeko bat datorren paketerik: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -46798,43 +48952,43 @@ index f92862c..42be1f8 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Ez dago kentzeko bat datorren paketerik"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Ez dago kentzeko bat datorren paketerik: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Exekutatzen ari den kernela saltatzen: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "%s kentzen transakziotik"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "%s aztertzen: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -46843,7 +48997,7 @@ index f92862c..42be1f8 100644
 +msgstr "Ezin da %s paketea gehitu transakzioari. Arkitektura ez da bateragarri: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -46851,7 +49005,7 @@ index f92862c..42be1f8 100644
 +msgstr "Ezin da %s paketea instalatu. Instalatutako %s paketeak zaharkitu egin du"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -46862,7 +49016,7 @@ index f92862c..42be1f8 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -46873,95 +49027,95 @@ index f92862c..42be1f8 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "%s baztertzen"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s markatzen instalatua izateko"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Ezin da fitxategia ireki: %s. Saltatzen."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "Arazoa berrinstalatzean: kentzeko paketeak ez datoz bat"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Ez dago paketerik eskuragarri bertsio zaharragoa instalatzeko"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Bertsio zaharragoa instalatzeak huts egin du: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Bertsio-berritzeak huts egin du: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Gakoa atzitzen %s-(e)tik"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
@@ -46969,24 +49123,24 @@ index f92862c..42be1f8 100644
 +msgstr "%s gakoaren GPG gako-sinadura ez dator bat biltegiaren CA gakoarekin: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "GPG gako baliogabea %s-(e)tik: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -47005,7 +49159,7 @@ index f92862c..42be1f8 100644
 +msgstr "%s gakoa inportatzen 0x%s:\n Erabiltzaile-IDa: \"%s\"\n Hatz-marka: %s\n Paketea    : %s (%s)\n Nondik    : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -47021,7 +49175,7 @@ index f92862c..42be1f8 100644
 +msgstr "%s gakoa inportatzen 0x%s:\n Erabiltzaile-IDa: \"%s\"\n Hatz-marka: %s\n Nondik    : %s"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -47031,29 +49185,29 @@ index f92862c..42be1f8 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Huts egin duen paketea: %s\n GPG gakoak honela daude konfiguratuta: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Gakoa ongi inportatu da"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Ez da gakorik instalatu"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -47064,20 +49218,20 @@ index f92862c..42be1f8 100644
 +msgstr "\"%s\" biltegirako zerrendatu diren GPG gakoak jadanik instalatuta daude, baina ez dira zuzenak pakete honetarako.\nEgiaztatu gako URL zuzena konfiguratuta dagoela biltegi honetarako."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Ez"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Bai"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -47088,7 +49242,7 @@ index f92862c..42be1f8 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA gakoa: %s\n Huts egin duen biltegia hau da: %s\n GPG gakoak honela daude konfiguratuta: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "%s (0x%s)-(e)ko GPG gakoa jadanik inportatuta dago"
@@ -47096,19 +49250,19 @@ index f92862c..42be1f8 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Gakoaren inportazioak huts egin du"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "%s gakoa inportatzeak huts egin du"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -47119,120 +49273,123 @@ index f92862c..42be1f8 100644
 +msgstr "\"%s\" biltegirako zerrendatu diren GPG gakoak jadanik instalatuta daude, baina ez dira zuzenak.\nEgiaztatu gako URL zuzena konfiguratuta dagoela biltegi honetarako."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Ezin izan da ispilu egokia aurkitu."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Erroreak aurkitu dira paketeak deskargatzean."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Jakinarazi errore hau %s-(e)n"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Probatu transakzio-erroreak: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Mendekotasunak ez dira konpondu. Ez da gordeko konpondu gabeko transakzioa."
 +msgstr "Mendekotasunak ez dira konpondu. Ez da gordeko konpondu gabeko transakzioa."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " ezikusten, eskatu den bezala."
- 
+-msgid " ignoring, as requested."
+-msgstr " ezikusten, eskatu den bezala."
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " abortatzen."
- 
+-msgid " aborting."
+-msgstr " abortatzen."
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " ezikusten, eskatu den bezala. Redepsolve erabili behar duzu!"
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, 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:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "%s paketearen revdep-ak aztertzen"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s paketeak %s revdep-a du, jadanik erabiltzaileak instalatutakoa."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s paketeak ez dauka erabiltzaileak instalatutako revdep-ik."
@@ -47335,7 +49492,7 @@ index f92862c..42be1f8 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s-(e)k %s hornitzen du baina ezin da aurkitu"
-@@ -3168,6 +3266,19 @@ msgstr "%s-(e)k %s hornitzen du baina ezin da aurkitu"
+@@ -3168,6 +3460,23 @@ msgstr "%s-(e)k %s hornitzen du baina ezin da aurkitu"
  msgid "Repackaging"
  msgstr "Birpaketatzen"
  
@@ -47344,7 +49501,7 @@ index f92862c..42be1f8 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Egiaztatu: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -47352,10 +49509,14 @@ index f92862c..42be1f8 100644
 +"    * needed %s"
 +msgstr "Ez dago aski espaziorik %s deskarga-direktorioan\n    *lekua %s\n    * behar da %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3180,9 +3291,7 @@ msgstr "%s RPMak ez du md5 egiaztapena gainditu"
+@@ -3180,9 +3489,7 @@ msgstr "%s RPMak ez du md5 egiaztapena gainditu"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -47366,17 +49527,17 @@ index f92862c..42be1f8 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3198,5 +3307,3 @@ msgstr "%s goiburua hondatuta dago"
+@@ -3198,5 +3505,3 @@ msgstr "%s goiburua hondatuta dago"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Errorea %s rpm irekitzean - %s errorea"
 -
 -
 diff --git a/po/fi.po b/po/fi.po
-index 269bf15..d6adf6a 100644
+index 269bf15..e4dfb5e 100644
 --- a/po/fi.po
 +++ b/po/fi.po
-@@ -2,949 +2,968 @@
+@@ -2,949 +2,1051 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -47391,8 +49552,8 @@ index 269bf15..d6adf6a 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -47403,7 +49564,7 @@ index 269bf15..d6adf6a 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Päivitetään"
  
@@ -47414,31 +49575,31 @@ index 269bf15..d6adf6a 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Päivitetty"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Asennettu"
  
@@ -47465,7 +49626,7 @@ index 269bf15..d6adf6a 100644
  msgstr "Poistettiin: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Poistetaan"
  
@@ -47475,69 +49636,69 @@ index 269bf15..d6adf6a 100644
  msgstr "Siivotaan"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Komento ”%s” on jo määritelty"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Tehdään asennuslähdeasetuksia"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Luetaan asennuslähteiden metadataa paikallisista tiedostoista"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Asetusvirhe: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Valitsinvirhe: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Asennettiin : %s-%s ajassa %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Käännettiin : %s ajassa %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Suoritettiin: %s ajassa %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Jokin komento on annettava"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Vaadittu levytila:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -47548,85 +49709,105 @@ index 269bf15..d6adf6a 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "Yhteenveto virheistä\n--------------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
+ msgstr ""
 -"Yhteenveto virheistä\n"
 -"--------------------\n"
-+msgstr "Yhteenveto virheistä\n--------------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Toinen ohjelma pitää tällä hetkellä yumin lukkoa. Lopetetaan, kuten exit_on_lock määrää"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
--"Yritettiin suorittaa transaktio, mutta ei ole mitään tehtävää. Lopetetaan."
 +msgstr "Yritettiin suorittaa transaktio, mutta ei ole mitään tehtävää. Lopetetaan."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
+-"Yritettiin suorittaa transaktio, mutta ei ole mitään tehtävää. Lopetetaan."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Lopetetaan, käyttäjä antoi lopetuskomennon"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Ladataan paketteja:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Virhe pakettien latauksessa:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM on päivitettävä"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Ilmoita tästä ongelmasta osoitteeseen %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Suoritetaan transaktiotestiä"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Transaktiotarkistuksen virhe:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Transaktiotesti onnistui"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Suoritetaan transaktiota"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -47636,12 +49817,12 @@ index 269bf15..d6adf6a 100644
 +msgstr "Avaimia ei tuoda automaattisesti, kun yumia suoritetaan ilman valvontaa.\nKäytä valitsinta ”-y” tämän muuttamiseksi."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Tarkoititko: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
 -msgstr ""
@@ -47649,7 +49830,7 @@ index 269bf15..d6adf6a 100644
 +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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Pakettia %s%s%s ei ole saatavilla."
@@ -47657,7 +49838,12 @@ index 269bf15..d6adf6a 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Asennettavat paketit"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -47666,13 +49852,13 @@ index 269bf15..d6adf6a 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Ei mitään tehtävää"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pakettia merkitty päivitettäväksi"
@@ -47682,12 +49868,12 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Yhtään pakettia ei ole merkitty päivitettäväksi"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pakettia merkitty jakelusynkronointia varten"
@@ -47697,12 +49883,12 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Yhtään pakettia ei ole merkitty jakelusynkronointia varten"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pakettia merkitty poistettavaksi"
@@ -47712,14 +49898,14 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -47727,13 +49913,13 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (asennuslähteestä %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Asennettua pakettia %s%s%s%s ei ole saatavilla."
@@ -47741,7 +49927,7 @@ index 269bf15..d6adf6a 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Uudelleenasennettavat paketit"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -47749,58 +49935,58 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Yhtään pakettia ei annettu"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Asennettavat paketit"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Löytyi: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Varoitus: hakutuloksia ei löytynyt hakusanalle %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Hakutuloksia ei löytynyt"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Hakusanalla %s ei löytynyt pakettia"
@@ -47810,89 +49996,109 @@ index 269bf15..d6adf6a 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Siivotaan asennuslähteitä:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Siivotaan kaikki"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Siivotaan otsakkeet"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Siivotaan paketit"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Siivotaan XML-metadata"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Siivotaan tiedokannan välimuisti"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Siivotaan välimuistin vanhentumiseen liittyvä metadata"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Siivotaan välimuistissa oleva rpm-tietokannan data"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Siivotaan liitännäiset"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Asennetut ryhmät:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Saatavilla olevat ryhmät:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Valmis"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Varoitus: Ryhmää %s ei ole olemassa."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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ää "
@@ -47900,7 +50106,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "Missään pyydetyssä ryhmässä ei ole yhtään asennettavaa tai päivitettävää pakettia"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d pakettia asennettavana"
@@ -47908,20 +50114,26 @@ index 269bf15..d6adf6a 100644
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Ryhmää nimeltä %s ei ole olemassa"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Ei yhtään poistettavaa pakettia ryhmien perusteella"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d poistettavaa pakettia"
@@ -47931,20 +50143,20 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paketti %s on jo asennettu, ohitetaan"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -47953,18 +50165,18 @@ index 269bf15..d6adf6a 100644
 +msgstr "Toista pakettia nimeltä %s ei ole asennettuna, lisätään mahdollisesti asennettavien luetteloon"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Liitännäisten valitsimet"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Komentorivivirhe: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -47977,112 +50189,112 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\n%s: valitsin %s vaatii argumentin"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "näytä tämä ohjeviesti ja lopeta"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "hyväksy virheet"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "toimi kokonaan välimuistista, älä päivitä sitä"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "asetustiedoston sijainti"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "komennon suurin odotusaika"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "virheenjäljitystulosteiden taso"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "näytä duplikaatit asennuslähteissä ja list/search-komennoissa"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "virhetulostustaso"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "rpm:n virheenjäljitystulosteiden taso"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "hiljainen toiminta"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "yksityiskohtaset tulosteet"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "vastaa kyllä kaikkiin kysymyksiin"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "näytä Yumin versio ja lopeta"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "aseta asennusjuuri"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"ota käyttöön yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
 +msgstr "ota käyttöön yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"poista käytöstä yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
 +msgstr "poista käytöstä yksi tai usempi asennuslähde (jokerimerkit ovat sallittuja)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "jätä pois paketteja nimen tai jokerimerkkien perusteella"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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 "
@@ -48090,250 +50302,257 @@ index 269bf15..d6adf6a 100644
 +msgstr "ota pakettien pois jättäminen pois käytöstä pääasetuksille, jollekin asennuslähteelle tai kaikelle"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "ota käyttöön vanhentuneiden pakettien käsittely päivitysten aikana"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "poista Yumin liitännäiset käytöstä"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "poista GPG-allekirjoitusten tarkistus käytöstä"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "poista liitännäisiä käytöstä nimen perusteella"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "ota liitännäisiä käyttöön nimen perusteella"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "ohita paketit, joilla on riippuvuusongelmia"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "käytetäänkö värejä"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
++msgstr "aseta $releasever-muuttujan arvo yumin asetuksissa ja asennuslähdetiedostoissa"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
 -"aseta $releasever-muuttujan arvo yumin asetuksissa ja "
 -"asennuslähdetiedostoissa"
-+msgstr "aseta $releasever-muuttujan arvo yumin asetuksissa ja asennuslähdetiedostoissa"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "aseta mielivaltaisia asetus- ja asennuslähdevalitsimia"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "tammi"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "helmi"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "maalis"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "huhti"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "touko"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "kesä"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "heinä"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "elo"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "syys"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "loka"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "marras"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "joulu"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Kokeillaan toista peilipalvelinta."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nimi            : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arkkitehtuuri   : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch           : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versio          : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Julkaisu        : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Koko            : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Asennuslähde    : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Asennuslähteestä: %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Toimittaja      : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Toimitusaika    : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Käännösaika     : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Asennusaika     : %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Asentaja        : %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Muuttanut       : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Yhteenveto      :"
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL             : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Lisenssi        :"
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Kuvaus          : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "k"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "kyllä"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "e"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ei"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Onko tämä ok [k/E]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -48344,165 +50563,189 @@ index 269bf15..d6adf6a 100644
 +msgstr "\nRyhmä: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Ryhmätunnus: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Kuvaus: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Pakolliset paketit:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Oletuspaketit:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Valinnaiset paketit:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Ehdolliset paketit:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paketti: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Tällä paketilla ei ole riippuvuuksia"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  riippuvuus: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Toteutumaton riippuvuus"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Vastaavuus  :"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Lisenssi    : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Tiedostonimi: %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Muuta       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Kokonaislatausmäärää laskettaessa tapahtui virhe"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Koko yhteensä: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Ladattavaa yhteensä: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Koko asennettuna: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Asennuskokoa laskettaessa tapahtui virhe"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Asennetaan uudelleen"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Varhennetaan"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Asennetaan riippuvuuksien vuoksi"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Päivitetään riippuvuuksien vuoksi"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Poistetaan riippuvuuksien vuoksi"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Ohitettiin (riippuvuusongelmia)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Ei asennettu"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paketti"
 +msgid_plural "Packages"
@@ -48510,33 +50753,33 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] "Paketti"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arkkitehtuuri"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versio"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Asennuslähde"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Koko"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     korvaa  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -48552,7 +50795,7 @@ index 269bf15..d6adf6a 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Asennetaan           %5.5s paketti(a)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Asennus"
  
@@ -48560,7 +50803,7 @@ index 269bf15..d6adf6a 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Päivitetään          %5.5s paketti(a)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr ""
  
@@ -48568,7 +50811,7 @@ index 269bf15..d6adf6a 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Poistetaan           %5.5s paketti(a)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr ""
  
@@ -48576,7 +50819,7 @@ index 269bf15..d6adf6a 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Asennetaan uudelleen %5.5s paketti(a)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Uudelleenasennus"
  
@@ -48584,58 +50827,58 @@ index 269bf15..d6adf6a 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Varhennetaan         %5.5s paketti(a)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Varhennus"
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Poistettu"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Poistettu riippuvuuksia"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Asennettu riippuvuuksia"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Päivitetty riippuvuuksia"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Korvattu"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Epäonnistui"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "kahden"
  
-@@ -952,566 +971,598 @@ msgstr "kahden"
+@@ -952,566 +1054,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -48648,262 +50891,262 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n Nykyinen lataus peruttiin, %skeskeytä (ctrl-c) uudelleen%s %s%s%s sekunnin aikana\nohjelman lopettamiseksi.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "käyttäjä keskeytti"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Yhteensä"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "A"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "Vanh."
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "P"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "U"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "Varh."
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "P"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<ei asetettu>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Järjestelmä"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Annettu virheellinen transaktiotunnus tai paketit"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Kirjautunut käyttäjä"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "Tunniste"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Päivämäärä ja kellonaika"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Toiminnot"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Muutettu"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Transaktiotunnusta ei annettu"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Annettiin virheellinen transaktiotunnus"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Annettua transaktiotunnusta ei löytynyt"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Löytyi useampi kuin yksi transaktiotunnus!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Transaktiotunnusta tai pakettia ei annettu"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Varhennettu"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Vanhempi"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Uudempi"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Transaktiotunnus      :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Aloitusaika           :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "RPM-tietokanta alussa :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Lopetusaika           :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "RPM-tietokanta lopussa:"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Käyttäjä              :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Lopetuskoodi          :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Keskeytetty"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Epäonnistui:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Onnistui"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Komentorivi           :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transaktio suoritettiin:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Muutetut paketit:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Ohitetut paketit:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb:n ongelmia:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Sovelman tuloste:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Virheet:"
  
@@ -48912,17 +51155,17 @@ index 269bf15..d6adf6a 100644
 -msgstr "Asennus"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Riippuvuuden asennus"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Vanhentava"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Poisto"
  
@@ -48935,226 +51178,228 @@ index 269bf15..d6adf6a 100644
 -msgstr "Varhennus"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Päivitys"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Aika"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Eilen"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Viime viikolla"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Viimeisen kahden viikon aikana"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Viimeisen kolmen kuukauden aikana"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Viimeisen kuuden kuukauden aikana"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Viime vuonna"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Yli vuosi sitten"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Transaktiota %s ei löytynyt"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Transaktiotunnus:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Käytettävissä olevaa historiatietoa:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "asennettavaksi"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "poistettavaksi"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "asennettavaksi uudelleen"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "päivitettäväksi"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "vanhennettavaksi"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Suoritetaan transaktiotarkistusta"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Aloitetaan riippuvuuksien tarkistus uudelleen uusien muutosten kanssa."
 +msgstr "--> Aloitetaan riippuvuuksien tarkistus uudelleen uusien muutosten kanssa."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Riippuvuuksien tarkistus valmistui"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Käsitellään riipuvuutta: %s paketille: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Pidetään paketti: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Pidetään paketti: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Ratkaisematon riippuvuus: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paketti: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -49165,7 +51410,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n    Vaatii: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -49176,7 +51421,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -49187,7 +51432,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -49198,38 +51443,38 @@ index 269bf15..d6adf6a 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Päivittää"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Varhentaa"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Vanhentaa"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Saatavilla"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Käsitellään ristiriitaa: %s on ristiriidassa paketin %s kanssa"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> Täytetään transaktiojoukkoa valituilla paketeilla. Odota hetki."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Ladataan paketin %s otsaketta transaktiojoukkoon lisäämseksi."
@@ -49237,70 +51482,70 @@ index 269bf15..d6adf6a 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Suoritetaan"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Unessa"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Ei voi keskeyttää"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Jäljitetään/Pysäytetty"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Tuntematon"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Toinen ohjelma on: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Toinen ohjelma on: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Muisti    : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Aloitettu : %s - %s sitten"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Tila      : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -49312,7 +51557,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\nLopetetaan käyttäjän peruttua"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -49324,7 +51569,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\nLopetetaan putken katkettua"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -49337,53 +51582,51 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Toinen ohjelma pitää tällä hetkellä yumin lukkoa. Lopetetaan, kuten "
 -"exit_on_lock määrää"
-+msgstr "Toinen ohjelma pitää tällä hetkellä yumin lukkoa. Lopetetaan, kuten exit_on_lock määrää"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit-virhe: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum-virhe: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Virhe: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
  msgid " You could try running: rpm -Va --nofiles --nodigest"
 -msgstr ""
 -" Kannattaa myös kokeilla komennon rpm -Va --nofiles --nodigest suorittamista"
 +msgstr " Kannattaa myös kokeilla komennon rpm -Va --nofiles --nodigest suorittamista"
  
 -#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Tuntematon virhe: lopetuskoodi: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -49393,11 +51636,11 @@ index 269bf15..d6adf6a 100644
 +msgstr "\nRiippuvuudet on ratkaistu"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Valmis!"
  
-@@ -1523,7 +1574,7 @@ msgstr ""
+@@ -1523,7 +1651,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Vain pääkäyttäjä voi suorittaa tämän komennon."
  
@@ -49406,7 +51649,7 @@ index 269bf15..d6adf6a 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1538,476 +1589,490 @@ msgid ""
+@@ -1538,585 +1666,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -49438,40 +51681,60 @@ index 269bf15..d6adf6a 100644
  msgstr "Virhe: komennolle %s on annettava luettelo paketeista"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Virhe: Tarvitaan vastaava kohta"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Virhe: Tarvitaan ryhmä tai ryhmäluettelo"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Virhe: clean vaatii valitsimen: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Virhe: virheellinen clean-argumentti: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "shellille ei annettu argumenttia"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Tiedostonimi välitettiin shellille: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
@@ -49479,12 +51742,12 @@ index 269bf15..d6adf6a 100644
 +msgstr "Tiedosto %s annettiin argumenttina shellille, mutta sitä ei ole olemassa."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -49496,112 +51759,112 @@ index 269bf15..d6adf6a 100644
 +msgstr "Yhtään asennuslähdettä ei ole käytössä.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKETTI..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Asenna paketti tai paketteja järjestelmään"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Aloitetaan asennusprosessi"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKETTI...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Päivitä paketti tai paketteja järjestelmään"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Aloitetaan päivitysprosessi"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Synkronoi asennetut paketit uusimpiin saatavilla oleviin versioihin"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Aloitetaan jakelusynkronointiprosessi"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "Näytä tietoja paketista tai pakettiryhmästä"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Asennetut paketit"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Saatavilla olevat paketit"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Lisäpaketit"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Päivitetyt paketit"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Vanhentavat paketit"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Äskettäin lisätyt paketit"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Ei yhtään vastaavaa pakettia lueteltavaksi"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Luettele paketti tai pakettiryhmä"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Poista paketti tai paketteja järjestelmästä"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Aloitetaan poistoprosessi"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Aloitetaan ryhmäprosessi"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Ei ryhmiä joille suorittaa komentoa"
  
@@ -49612,7 +51875,7 @@ index 269bf15..d6adf6a 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Asenna ryhmään kuuluvat paketit järjestelmään"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -49620,79 +51883,79 @@ index 269bf15..d6adf6a 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Poista ryhmään kuuluvat paketit järjestelmästä"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Näytä tietoja pakettiryhmästä"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Luo metadatavälimuisti"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Luodaan välimuistitiedostoja kaikille metadatatiedostoille"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metadatavälimuisti on luotu"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Poista välimuistissa oleva data"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Etsi annetun arvon tarjoava paketti"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Etsi saatavilla olevia pakettipäivityksiä"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Etsi pakettitiedoista annettua merkkijonoa"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Etsitään paketteja: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Päivitä paketit ottaen vanhennukset huomioon"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Aloitetaan päivitysprosessi"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Asenna paikallinen RPM-tiedosto"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Aloitetaan paikallinen pakettiprosessi"
  
@@ -49701,183 +51964,183 @@ index 269bf15..d6adf6a 100644
 -msgstr "Selvitä mikä paketti tarjoaa annetun riippuvuuden"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Etsitään riippuvuutta paketeista:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Suorita interaktiivinen yum-komentorivi"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Asetetaan Yum-komentoriviä"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Luettele paketin riippuvuudet"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Etsitään riippuvuuksia: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Näytä asetetut asennuslähteet"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "käytössä"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "poissa käytöstä"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Lähdetunnus        : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Lähdenimi          : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Lähteen tila       : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Lähderevisio      : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Lähteen tagit      : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Lähteen jakelutagit: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Lähde päivitetty   : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Lähteen paketit    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Lähteen koko       : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Lähteen baseurl    : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Lähteen metalink   : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Päivitetty       : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Lähteen peilit     : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Ei koskaan (viimeksi: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Heti (viimeksi: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekunti(a) (viimeksi: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Lähde vanhentuu    : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Lähde ohittaa      : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Lähde sisältää     : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Lähde ohitettu     : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "lähdetunnus"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "tila"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "lähdenimi"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Näytä käyttöohjeviesti"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Ei ohjeita komennolle %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -49889,7 +52152,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\nmuut nimet: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -49901,184 +52164,214 @@ index 269bf15..d6adf6a 100644
 +msgstr "\n\ntoinen nimi: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Aloitetaan uudelleenasennusprosessi"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "asenna paketti uudelleen"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Aloitetaan varhennusprosessi"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "varhenna paketti"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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"
 +msgstr "Näytä koneella ja/tai käytettävissä olevissa asennuslähteissä oleva versio"
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum-versioryhmät:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Ryhmä:"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Paketit:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Asennettu:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Asennettu ryhmässä:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Saatavilla:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Saatavilla ryhmässä:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Näytä tai käytä transaktiohistoriaa"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Virheellinen historyn alikomento, käytä: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Sinulla ei ole historiatietokannan käyttöoikeutta"
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Etsi ongelmia rpm-tietokannasta"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -2018,105 +2083,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
 -"Toinen ohjelma pitää tällä hetkellä yumin lukkoa, odotetaan että se "
 -"lopettaa..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+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..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Ratkaistaan riippuvuuksia"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -50087,7 +52380,7 @@ index 269bf15..d6adf6a 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -50127,7 +52420,7 @@ index 269bf15..d6adf6a 100644
  msgstr "Jäsen: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s muutettu asennukseksi"
@@ -50184,7 +52477,7 @@ index 269bf15..d6adf6a 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Riippuvuuden %s: %s tarjoavan paketin tila"
-@@ -2124,1025 +2194,1069 @@ msgstr "Riippuvuuden %s: %s tarjoavan paketin tila"
+@@ -2124,1025 +2317,1140 @@ 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 :(
@@ -50195,60 +52488,70 @@ index 269bf15..d6adf6a 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
  #, python-format
- msgid "TSINFO: %s package requiring %s marked as erase"
--msgstr ""
+-msgid "TSINFO: %s package requiring %s marked as erase"
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
 -"TSINFO: paketti %s, joka vaatii riippuvuuden %s on merkitty poistettavaksi"
-+msgstr "TSINFO: paketti %s, joka vaatii riippuvuuden %s on merkitty poistettavaksi"
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:507
  #, python-format
- msgid "TSINFO: Obsoleting %s with %s to resolve dep."
--msgstr ""
+-msgid "TSINFO: Obsoleting %s with %s to resolve dep."
++msgid "Update for %s. Doesn't fix requirement: %s!"
+ msgstr ""
 -"TSINFO: Vanhennetaan paketti %s paketilla %s riippuvuuden ratkaisemiseksi."
-+msgstr "TSINFO: Vanhennetaan paketti %s paketilla %s riippuvuuden ratkaisemiseksi."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:514
++#, 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:527
++#, python-format
++msgid "TSINFO: Obsoleting %s with %s to resolve dep."
++msgstr "TSINFO: Vanhennetaan paketti %s paketilla %s riippuvuuden ratkaisemiseksi."
++
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -50256,75 +52559,75 @@ index 269bf15..d6adf6a 100644
 +msgstr "Mahdollisella ratkaisevalla paketilla %s on uudempi instanssi asennettuna."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Onnistui - tyhjä transaktio"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Käynnistetään silmukka uudelleen"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Riippuvuuksien käsittely päättyy"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Onnistui – riippuvuudet on ratkaistu"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Tarkistetaan paketin %s riippuvuuksia"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "po:ssa %s on parempi arkkitehtuuri"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "paketti %s vanhentaa paketin %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -50335,25 +52638,25 @@ index 269bf15..d6adf6a 100644
 +msgstr "archdist vertasi paketteja %s ja %s arkkitehtuurilla %s\n  Voittaja: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, 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:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "peruspaketti %s on asennettu paketille %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "vaatii vähintään: %d"
@@ -50361,153 +52664,163 @@ index 269bf15..d6adf6a 100644
 +msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Voittaja: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "vaatii vähintään: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Häviäjä (arvolla %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Paras järjestys %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "liitännäiset on jo alustettu"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Luetaan paikallista RPM-tietokantaa"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Asetetaan pakettisäkkejä"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Rakennetaan päivitysoliota"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Haetaan ryhmien metadataa"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  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:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Haetaan pakettitagien metadataa"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Lisätään tagit asennuslähteestä: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Tuodaan lisää tiedostoluettelotietoa"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -50517,24 +52830,58 @@ index 269bf15..d6adf6a 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -50544,35 +52891,35 @@ index 269bf15..d6adf6a 100644
 +msgstr "\nRiippuvuusongelmien vuoksi ohitetut paketit:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s asennuslähteestä %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, 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:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Varoitus: RPM-tietokantaa on muutettu yumin ulkopuolella."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "puuttuvia riippuvuuksia"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "asennettu konflikti"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -50581,18 +52928,18 @@ index 269bf15..d6adf6a 100644
 +msgstr "Varoitus: sovelmien virheitä tai muita virheitä, jotka eivät ole vakavia, tapahtui transaktion aikana."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transaktiota ei voitu aloittaa:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Transaktiota ei voitu suorittaa."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Transaktiotiedoston %s poistaminen epäonnistui"
@@ -50600,7 +52947,7 @@ index 269bf15..d6adf6a 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s piti olla asennettuna, mutta se ei ole!"
@@ -50611,7 +52958,7 @@ index 269bf15..d6adf6a 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s piti olla poistettu, mutta se ei ole!"
@@ -50629,32 +52976,32 @@ index 269bf15..d6adf6a 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Lukkoa %s ei voitu avata: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Ei voida tarkistaa onko PID %s aktiivinen"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -50665,17 +53012,17 @@ index 269bf15..d6adf6a 100644
 +msgstr "Paketti ei vastaa odotettua latausta. Ehdotus: suorita yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Ei voitu laskea tarkistussummaa"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paketti ei vastaa tarkistussummaa"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -50683,7 +53030,7 @@ index 269bf15..d6adf6a 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "käytetään paikallista kopiota paketista %s"
@@ -50694,18 +53041,21 @@ index 269bf15..d6adf6a 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Lataushakemistossa %s ei ole tarpeeksi vapaata tilaa\n"
 -"    * vapaana   %s\n"
 -"    * tarvitaan %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Otsake ei ole täydellinen."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -50715,55 +53065,55 @@ index 269bf15..d6adf6a 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Ongelma paketin %s avaamisessa"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "Paketin %s julkiseen avaimeen ei luoteta"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Pakettia %s ei ole allekirjoitettu"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Ei voida poistaa tiedostoa %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "tiedosto %s on poistettu"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Ei voida poistaa %s-tyyppistä tiedostoa %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s-tyyppinen tiedosto %s on poistettu"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s-tyyppistä tiedostoa on poistettu"
@@ -50773,19 +53123,19 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -50795,7 +53145,7 @@ index 269bf15..d6adf6a 100644
 +msgstr "searchPackages() poistetaan jossakin Yumin tulevassa versiossa. Käytä sen sijaan searchGenerator()-metodia.\n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Etsitään %d pakettia"
@@ -50805,111 +53155,127 @@ index 269bf15..d6adf6a 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "etsitään pakettia %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "etsitään tiedostoista"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "etsitään tarjoajista"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Riippuvuudelle %s ei löytynyt pakettia"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Pakettiolio ei ollutkaan pakettiolioinstanssi"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Mitään ei määritelty asennettavaksi"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Etsitään virtuaalista tai tiedostotarjoajaa argumentille %s"
@@ -50921,30 +53287,30 @@ index 269bf15..d6adf6a 100644
 -msgstr "Mikään ei vastaa argumenttia: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Paketti %s on asennettu, mutta ei saatavilla"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Yhtään pakettia ei ole saatavilla asennettavaksi"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Paketti: %s – on jo transaktiojoukossa"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -50955,19 +53321,19 @@ index 269bf15..d6adf6a 100644
 +msgstr "Paketin %s vanhentaa paketti %s, mutta vanhentava paketti ei tarjoa riippuvuuksia"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -50976,48 +53342,48 @@ index 269bf15..d6adf6a 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Mikään ei vastaa argumenttia: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -51025,43 +53391,43 @@ index 269bf15..d6adf6a 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Yhtään poistopyyntöä vastaavaa pakettia ei ole"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Ohitetaan käytössä oleva ydin: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Poistetaan %s transaktiosta"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Tutkitaan %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -51071,13 +53437,13 @@ index 269bf15..d6adf6a 100644
 +msgstr "Pakettia %s ei voida lisätä transaktioon. Arkkitehtuuri ei ole yhteensopiva: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, 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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -51088,7 +53454,7 @@ index 269bf15..d6adf6a 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -51096,44 +53462,44 @@ index 269bf15..d6adf6a 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Ohitetaan paketti %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Merkitään paketti %s asennettavaksi"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Ei voida avata tiedostoa: %s. Ohitetaan."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Ongelma uudelleenasennuksessa: poistopyyntöä vastaavaa pakettia ei ole"
 +msgstr "Ongelma uudelleenasennuksessa: poistopyyntöä vastaavaa pakettia ei ole"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -51141,77 +53507,77 @@ index 269bf15..d6adf6a 100644
 +msgstr "Ongelma uudelleenasennuksessa: asennuspyyntöä vastaavaa pakettia %s ei ole"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Yhtään pakettia ei ole saatavilla varhennettavaksi"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "Paketille %s sallitaan useita asennuksia, ohitetaan."
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Ei vastaavuutta saatavilla olevalle paketille: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Varhentaminen epäonnistui: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Virheellinen GPG-avain osoitteesta %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -51225,7 +53591,7 @@ index 269bf15..d6adf6a 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -51234,9 +53600,10 @@ index 269bf15..d6adf6a 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -51244,32 +53611,31 @@ index 269bf15..d6adf6a 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Avaimen tuonti onnistui"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -51280,20 +53646,20 @@ index 269bf15..d6adf6a 100644
 +msgstr "Asennuslähteelle ”%s” luetellut GPG-avaimet on jo asennettu, mutta ne eivät vastaa tätä pakettia.\nTarkista että tälle asennuslähteelle on asetettu oikeat avainten URL:t."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -51304,7 +53670,7 @@ index 269bf15..d6adf6a 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "Osoitteesta %s ladattu GPG-avain (0x%s) on jo tuotu"
@@ -51312,19 +53678,19 @@ index 269bf15..d6adf6a 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Avaimen tuonti epäonnistui"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -51335,117 +53701,121 @@ index 269bf15..d6adf6a 100644
 +msgstr "Asennuslähteelle ”%s” luetellut GPG-avaimet on jo asennettu, mutta ne ovat virheelliset.\nTarkista että tälle asennuslähteelle on asetettu oikeat avainten URL:t."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Sopivaa peilipalvelinta ei löytynyt."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Paketteja ladatessa tapahtui virheitä."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Ilmoita tästä ongelmasta: %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Testitransaktion virheitä: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -51545,7 +53915,7 @@ index 269bf15..d6adf6a 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s tarjoaa %s, mutta sitä ei löydy"
-@@ -3151,11 +3265,23 @@ msgstr "%s tarjoaa %s, mutta sitä ei löydy"
+@@ -3151,11 +3459,27 @@ msgstr "%s tarjoaa %s, mutta sitä ei löydy"
  msgid "Repackaging"
  msgstr "Paketoidaan uudelleen"
  
@@ -51554,7 +53924,7 @@ index 269bf15..d6adf6a 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -51562,6 +53932,10 @@ index 269bf15..d6adf6a 100644
 +"    * needed %s"
 +msgstr "Lataushakemistossa %s ei ole tarpeeksi vapaata tilaa\n    * vapaana   %s\n    * tarvitaan %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
@@ -51571,17 +53945,17 @@ index 269bf15..d6adf6a 100644
  
  #: ../rpmUtils/oldUtils.py:53
  #, python-format
-@@ -3180,5 +3306,3 @@ msgstr "Vioittunut otsake %s"
+@@ -3180,5 +3504,3 @@ msgstr "Vioittunut otsake %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Virhe avattaessa RPM:ää %s – virhe %s"
 -
 -
 diff --git a/po/fr.po b/po/fr.po
-index 4636b15..8737d04 100644
+index 4636b15..b036953 100644
 --- a/po/fr.po
 +++ b/po/fr.po
-@@ -2,958 +2,970 @@
+@@ -2,958 +2,1053 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -51599,8 +53973,8 @@ index 4636b15..8737d04 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: French (http://www.transifex.net/projects/p/yum/team/fr/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-12-02 13:13+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-15 00:01+0000\n"
 +"Last-Translator: Kévin Raymond <shaiton at fedoraproject.org>\n"
 +"Language-Team: French (http://www.transifex.com/projects/p/yum/language/fr/)\n"
  "MIME-Version: 1.0\n"
@@ -51611,7 +53985,7 @@ index 4636b15..8737d04 100644
 +"Plural-Forms: nplurals=2; plural=(n > 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Mise à jour "
  
@@ -51622,32 +53996,32 @@ index 4636b15..8737d04 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
  #: ../yum/rpmtrans.py:78
  msgid "Installing"
 -msgstr "Installation de"
-+msgstr "Installation"
++msgstr "Installation "
  
 -#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Mis à jour "
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
 -msgstr "Installé "
 +msgstr "Installé "
@@ -51675,7 +54049,7 @@ index 4636b15..8737d04 100644
  msgstr "Supprimé : %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Suppression "
  
@@ -51685,71 +54059,71 @@ index 4636b15..8737d04 100644
  msgstr "Nettoyage "
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Commande « %s » déjà définie"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Configuration des dépôts"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Erreur de configuration : %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Erreur d'options : %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installés : %s-%s à %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
 -msgstr "  Compilé    : %s à %s"
 +msgstr "  Compilé   : %s à %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
 -msgstr "  Commité : %s à %s"
 +msgstr "  Commité   : %s à %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Vous devez spécifier des commandes"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Besoins en espace disque :\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -51760,7 +54134,7 @@ index 4636b15..8737d04 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -51770,78 +54144,99 @@ index 4636b15..8737d04 100644
 +msgstr "Résumé des erreurs\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Impossible de créer le fichier verrou, arrêt"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Une autre application verrouille actuellement l'utilisation de yum ; fermeture en cours conformément à la configuration de exit_on_lock"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
++msgstr "Tentative d'exécution de la transaction mais aucune tâche à effectuer. Sortie."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
 -"Tentative d'exécution de la transaction mais aucune tâche à effectuer. "
 -"Sortie."
-+msgstr "Tentative d'exécution de la transaction mais aucune tâche à effectuer. Sortie."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignoré, comme spécifié."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " arrêt."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Arrêt à la demande de l'utilisateur"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Téléchargement des paquets :"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Erreur durant le téléchargement des paquets :\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Test de la transaction en cours"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 -"ERREUR lors de la vérification de la transaction avec les dépendances :"
 +msgstr "ERREUR lors de la vérification de la transaction avec les dépendances :"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM doit être mis à jour"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Veuillez reporter cette erreur dans %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Lancement de la transaction de test"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Erreur du contrôle de transaction :\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Transaction de test réussie"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Lancement de la transaction"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -51851,18 +54246,18 @@ index 4636b15..8737d04 100644
 +msgstr "Refus de l'importation automatique des clés lors d'une exécution inattendue.\nUtilisez l'option « -y » pour passer outre."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Vouliez-vous dire : "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Aucun paquet %s%s%s disponible."
@@ -51870,22 +54265,27 @@ index 4636b15..8737d04 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paquets à installer"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Rien à faire"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paquets marqués pour mise à jour"
@@ -51895,12 +54295,12 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets à mettre à jour"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Aucun paquet marqué pour mise à jour"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d paquets marqués pour la synchronisation de la distribution"
@@ -51910,12 +54310,12 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets marqués pour une synchronisation de distribution"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Aucun paquet marqué pour la synchronisation de la distribution"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paquets marqués pour suppression"
@@ -51925,14 +54325,14 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets à supprimer"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -51940,13 +54340,13 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets à passer à une version antérieur"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr "(depuis %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Paquets installés %s%s%s%s indisponibles."
@@ -51954,7 +54354,7 @@ index 4636b15..8737d04 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paquets à réinstaller"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -51962,22 +54362,22 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets à réinstaller"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Pas de paquet fourni"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paquets à installer"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "Non spécifié, correspond à : %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -51986,7 +54386,7 @@ index 4636b15..8737d04 100644
 +msgstr "  Correspondance avec le nom ou le résumé %suniquement%s, utilisez « search all » pour une recherche complète."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -51996,14 +54396,14 @@ index 4636b15..8737d04 100644
 +msgstr "  Correspondance complète avec le nom et le résumé %suniquement%s, utilisez « search all » pour une recherche complète."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
 -msgstr " Marqués : %s"
 +msgstr "Marqués : %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -52012,18 +54412,18 @@ index 4636b15..8737d04 100644
 +msgstr "  Correspondance %sapproximative%s avec le nom et le résumé, utilisez « search all » pour une recherche complète."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Attention : aucune correspondance trouvée pour : %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Aucune correspondance trouvée"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Aucun paquet trouvé pour %s"
@@ -52033,118 +54433,145 @@ index 4636b15..8737d04 100644
 +msgstr "Erreur : aucun paquet trouvé pour :\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Nettoyage des dépôts : "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Nettoyage complet"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Nettoyage des en-têtes"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Nettoyage des paquets"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Nettoyage des méta données xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Nettoyage du cache de la base de données"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Nettoyage des méta données expirées dans le cache"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Nettoyage des données du cache de RPMDB"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Nettoyage des modules complémentaires"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Attention : aucun groupe ne correspond : %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Attention : aucun groupe ne correspond : %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Groupes installés :"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Groupes de langues installés :"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Groupes disponibles :"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Groupes de langues disponibles :"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Effectué"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Attention : le groupe %s n'existe pas."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Aucun paquet disponible pour installation ou mise à jour dans les groupes demandés"
++
++#: ../cli.py:1885
++#, 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:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, 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"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Aucun groupe nommé %s n'existe"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Aucun paquet du groupe à supprimer"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d paquet(s) à supprimer"
@@ -52154,20 +54581,20 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d paquets à désinstaller"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Le paquet %s est déjà installé, omission"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -52175,18 +54602,18 @@ index 4636b15..8737d04 100644
 +msgstr "Pas d'autre %s installé, ajout à la liste pour installation potentielle"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Options du plugin"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Erreur sur la ligne de commande : %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -52199,110 +54626,110 @@ index 4636b15..8737d04 100644
 +msgstr "\n\n%s : l'option %s requiert un argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--installroot doit correspondre à un chemin absolu : %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "affiche ce message d'aide et quitte"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "tolère les erreurs"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "emplacement du fichier de configuration"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "temps d'attente maximum de la commande"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "niveau de déboguage pour la sortie"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "niveau d'erreur pour la sortie"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "niveau de déboguage pour rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "opération silencieuse"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "opération verbeuse"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "répondre oui à toutes les questions"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "répondre non à toutes les questions"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "affiche la version de Yum et quitte"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "définit la racine d'installation"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "active un ou plusieurs dépôts (jokers autorisés)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  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:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
 -msgstr ""
 -"exclut des paquets par leur nom (le caractère * générique peut être utilisé)"
 +msgstr "exclut des paquets par leur nom (le caractère * générique peut être utilisé)"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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 "
@@ -52310,265 +54737,272 @@ index 4636b15..8737d04 100644
 +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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "active le traitement des paquets obsolètes pendant les mises à jour"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "désactive les modules complémentaires Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "désactive la vérification de clé gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "désactive les modules complémentaires par nom"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "active les modules complémentaires par nom"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "omettre les paquets qui ont des problèmes de dépendances"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "contrôle l'utilisation de la couleur"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
++msgstr "configuration de la valeur de $releasever dans le fichier de configuration de yum et dans les fichiers des dépôts"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
 -"configuration de la valeur de $releasever dans le fichier de configuration "
 -"de yum et dans les fichiers des dépôts"
-+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:2125
++#: ../cli.py:2351
  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:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Fév"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mars"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Avr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mai"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Juin"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jui"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Août"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Oct"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Déc"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Essai d'un autre miroir."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
 -msgstr "Nom        : %s%s%s"
 +msgstr "Nom                 : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Architecture        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
 -msgstr "Date       : %s"
 +msgstr "Date                : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
 -msgstr "Version     : %s"
 +msgstr "Version             : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
 -msgstr "Révision     : %s"
 +msgstr "Révision            : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
 -msgstr "Taille        : %s"
 +msgstr "Taille              : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
 -msgstr "Dépôt         : %s"
 +msgstr "Dépôt               : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
 -msgstr "Depuis le dépôt   : %s"
 +msgstr "Depuis le dépôt     : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
 -msgstr "Auteur   : %s"
 +msgstr "Auteur              : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Date de validation  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
 -msgstr "Date de compilation   : %s"
 +msgstr "Date de compilation : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Date d'installation : %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
 -msgstr "Installés par : %s"
 +msgstr "Installés par       : %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
 -msgstr "Modifié par  : %s"
 +msgstr "Modifié par         : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
 -msgstr "Résumé        : "
 +msgstr "Résumé              : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
 -msgstr "URL         : %s"
 +msgstr "URL                 : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
 -msgstr "Licence       : "
 +msgstr "Licence             : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr "Description : "
 +msgstr "Description         : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "o"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "oui"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "non"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Est-ce correct [o/N] : "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -52579,104 +55013,128 @@ index 4636b15..8737d04 100644
 +msgstr "\nGroupe : %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
 -msgstr " Id du g : %s"
 +msgstr " ID du groupe : %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
 -msgstr " Description : %s"
 +msgstr " Description : %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Langue : %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
 -msgstr " Paquets mandataires :"
 +msgstr " Paquets obligatoires :"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Paquets par défaut :"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Paquets optionnels :"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Paquets conditionnels :"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Paquets installés :"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paquet : %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Pas de dépendances pour ce paquet"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
 -msgstr "  dépendance : %s"
 +msgstr "  dépendance   : %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Dépendance non satisfaite"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Correspondance depuis :"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
 -msgstr "Licence       : %s"
 +msgstr "Licence        : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
 -msgstr "Nom de fichier      : %s"
 +msgstr "Nom de fichier : %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Fournit        : "
  
 -#: ../output.py:923
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
 -msgstr "Autre           :"
 +msgstr "Autre          :"
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
 -msgstr ""
 -"Une erreur est survenue pendant le calcul de la taille totale des "
@@ -52684,26 +55142,26 @@ index 4636b15..8737d04 100644
 +msgstr "Une erreur est survenue pendant le calcul de la taille totale des téléchargements"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
 -msgstr "Taille totale : %s"
 +msgstr "Taille totale  : %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Taille totale des téléchargements : %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Taille d'installation : %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
 -msgstr ""
 -"Une erreur est survenue pendant le calcul de la taille des données "
@@ -52711,49 +55169,49 @@ index 4636b15..8737d04 100644
 +msgstr "Une erreur est survenue pendant le calcul de la taille des données installées"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Réinstallation "
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
 -msgstr "Retour à la version précédente"
 +msgstr "Retour à la version précédente "
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Installation pour dépendances "
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Mise à jour pour dépendances "
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Suppression pour dépendances "
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Omis (problèmes de dépendances) "
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Non installé"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Indisponible"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paquet"
 +msgid_plural "Packages"
@@ -52761,34 +55219,34 @@ index 4636b15..8737d04 100644
 +msgstr[1] "Paquets"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Architecture"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Version"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Dépôt"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
 -msgstr "Taille "
 +msgstr "Taille"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     remplacement de  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -52804,7 +55262,7 @@ index 4636b15..8737d04 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Installation de   %5.5s paquets\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installation "
  
@@ -52812,7 +55270,7 @@ index 4636b15..8737d04 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Mise à jour de    %5.5s paquets\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Mettre à jour"
  
@@ -52820,7 +55278,7 @@ index 4636b15..8737d04 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Suppression de    %5.5s paquets\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Supprimer"
  
@@ -52828,7 +55286,7 @@ index 4636b15..8737d04 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Réinstallation de %5.5s paquets\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Réinstallation"
  
@@ -52836,60 +55294,60 @@ index 4636b15..8737d04 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Retour à une version antérieur de %5.5s paquets\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Retour à la version précédente"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Paquet en dépendance"
 +msgstr[1] "Paquets en dépendance"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
 -msgstr "Supprimés "
 +msgstr "Supprimé "
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dépendances supprimées "
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dépendances installées "
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dépendances mises à jour "
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
 -msgstr "Remplacés "
 +msgstr "Remplacé "
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Échec"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "deux"
  
-@@ -961,571 +973,598 @@ msgstr "deux"
+@@ -961,571 +1056,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -52902,57 +55360,57 @@ index 4636b15..8737d04 100644
 +msgstr "\nTéléchargement courant annulé, demandez de nouveau l'%sinterruption (crtl-c)%s dans %s%s%s secondes\npour quitter.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "interruption par l'utilisateur"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<indéfini>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Système"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
@@ -52960,212 +55418,212 @@ index 4636b15..8737d04 100644
 +msgstr "Omission des transactions regroupées de %d à %d, puisqu'elles se superposent"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Pas de transaction"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  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:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Ligne de commande"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Identifiant utilisateur"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
 -msgstr "Id"
 +msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Date et heure"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Action"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Modifié"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Aucun identifiant de transaction n'a été fourni"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "L'identifiant de transaction fourni est erroné"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "L'identifiant de transaction fourni est introuvable"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  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:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  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:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Rétrogradé"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Plus ancien"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Plus récent"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
 -msgstr "Identifiant de transaction :"
 +msgstr "ID de transaction :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
 -msgstr "Temps de début :"
 +msgstr "Temps de début    :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
 -msgstr "Début de RPMDB :"
 +msgstr "Début de RPMDB    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u secondes)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minutes)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u heures)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u jours)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Temps de fin :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Fin de RPMDB :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
 -msgstr "Utilisateur :"
 +msgstr "Utilisateur  :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
 -msgstr "Code retour :"
 +msgstr "Code retour  :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Avorté"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Échecs :"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Échec :"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Réussi"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Ligne de commande :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transaction effectuée avec :"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Paquets modifiés :"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Paquets ignorés :"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problèmes RPMDB :"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Sortie du scriplet :"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Erreurs :"
  
@@ -53174,18 +55632,18 @@ index 4636b15..8737d04 100644
 -msgstr "Installation "
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Installation déps."
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
 -msgstr "Obsolète"
 +msgstr "Rendre obsolète"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Supprimé"
  
@@ -53198,191 +55656,191 @@ index 4636b15..8737d04 100644
 -msgstr "Retour à la version précédente"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Mise à jour"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Heure"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Dernier jour"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Semaine dernière"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Deux dernières semaines"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Trois derniers mois"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Six derniers mois"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "L'année dernière"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Il y a plus d'un an"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Aucune transaction %s n'a été trouvée"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Identifiant de transaction :"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Informations additionnelles disponibles dans l'historique :"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paquet             :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "État                 :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Taille               :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Hôte de construction :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Date de compilation  :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Empaqueteur          :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Vendeur              :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licence              :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL                  :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "source du RPM        :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Heure de commit      :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Committer            :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Raison               :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Depuis le dépôt      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Installé par         :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Modifié par          :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installé"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr "la mise à jour"
 +msgstr "utilisé"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "effacé"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "réinstallé"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "une rétrogradation"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "obsolète"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "mis à jour"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "obsolète"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Lancement de la transaction de test"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Redémarrage de la résolution des dépendances avec les nouveaux "
@@ -53390,36 +55848,38 @@ index 4636b15..8737d04 100644
 +msgstr "--> Redémarrage de la résolution des dépendances avec les nouveaux changements."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Résolution des dépendances terminée"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, 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:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Conservation du paquet : %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Conservation du paquet : %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> On garde le paquet : %s à cause de %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Dépendance non résolue : %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paquet : %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -53430,7 +55890,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n    Requiert : %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -53441,7 +55901,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n    %s : %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -53452,7 +55912,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -53463,33 +55923,33 @@ index 4636b15..8737d04 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Mis à jour par"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Rétrogradé par"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Rendu obsolète par"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Disponible"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Traitement du conflit : %s entre en conflit avec %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Peuplement du jeu de transaction avec les paquets sélectionnés. Merci de"
@@ -53497,7 +55957,7 @@ index 4636b15..8737d04 100644
 +msgstr "--> Peuplement du jeu de transaction avec les paquets sélectionnés. Merci de patienter."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
@@ -53506,76 +55966,76 @@ index 4636b15..8737d04 100644
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Vérification"
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Exécution"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Mise en attente"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
 -msgstr "Impossible d'interrompre"
 +msgstr "Interruption impossible"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Tracé/Stoppé"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Inconnu"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
 -msgstr "  L'autre application est : PackageKit"
 +msgstr "Il s'agit de PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
 -msgstr "  L'autre application est : %s"
 +msgstr "Il s'agit de %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Mémoire : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
 -msgstr "    Débuté : il y a %s - %s"
 +msgstr "    Débuté  : %s - il y a %s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
 -msgstr "    État : %s, pid : %d"
 +msgstr "    État    : %s, pid : %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -53587,7 +56047,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n\nSortie sur annulation par l'utilisateur"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -53599,7 +56059,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n\nSortie suite à une redirection cassée"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -53612,53 +56072,51 @@ index 4636b15..8737d04 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Une autre application verrouille actuellement l'utilisation de yum ; "
 -"fermeture en cours conformément à la configuration de exit_on_lock"
-+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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Erreur de PluginExit : %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Erreur de yum : %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Erreur : %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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"
 +msgstr " Vous pouvez essayer d'utiliser --skip-broken pour contourner le problème"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Erreur inconnue : code de sortie %d :"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -53668,11 +56126,11 @@ index 4636b15..8737d04 100644
 +msgstr "\nDépendances résolues"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Terminé !"
  
-@@ -1535,9 +1574,9 @@ msgstr " Usage minimal :\n"
+@@ -1535,9 +1651,9 @@ msgstr " Usage minimal :\n"
  
  #: ../yumcommands.py:52
  msgid "You need to be root to perform this command."
@@ -53684,7 +56142,7 @@ index 4636b15..8737d04 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1552,478 +1591,490 @@ msgid ""
+@@ -1552,589 +1668,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -53718,51 +56176,71 @@ index 4636b15..8737d04 100644
  msgstr "Erreur : il faut passer une liste de paquets à %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Erreur : un élément de correspondance est requis"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  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:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Erreur : clean requiert une option : %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Erreur : argument invalide pour clean : %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Pas d'options à passer au terminal"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Nom de fichier passé au terminal : %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -53774,127 +56252,127 @@ index 4636b15..8737d04 100644
 +msgstr "Aucun dépôt n'est activé.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
 -msgstr "PAQUETAGE..."
 +msgstr "PAQUETS..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Installe un ou plusieurs paquets sur votre système"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Configuration du processus d'installation"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAQUET…]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  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:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Configuration du processus de mise à jour"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Synchronise les paquets installés vers leurs versions les plus récentes"
 +msgstr "Synchronise les paquets installés vers leurs versions les plus récentes"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Configuration du processus de synchronisation de la distribution"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Paquets installés"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Paquets disponibles"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Paquets supplémentaires"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Paquets mis à jour"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Obsolescence des paquets"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Paquets récemment ajoutés"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Aucun paquet correspondant à lister"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Liste un paquet ou un groupe de paquets"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Supprime un ou plusieurs paquets de votre système"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Configuration du processus de suppression"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Affiche ou utilise les informations des groupes"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Configuration du processus de gestion des groupes"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
 -msgstr "Aucun groupe sur lequel lancer la commande"
-+msgstr "Aucun groupe sur lequel exécuter la commande"
- 
+-
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
 -msgstr "Liste les groupes de paquets disponibles"
--
++msgstr "Aucun groupe sur lequel exécuter la commande"
+ 
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Sous-commande de groupe invalide : %s."
@@ -53902,83 +56380,83 @@ index 4636b15..8737d04 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Aucun fichier de groupe n'est installé."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Affiche des détails sur un groupe de paquets"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Vous n'avez pas accès à la base de données des groupes."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Génère le cache des méta données"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
 -msgstr ""
 -"Création des fichiers de cache pour tous les fichiers de méta données."
 +msgstr "Création des fichiers de cache pour tous les fichiers de méta données."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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"
 +msgstr "Cela peut prendre du temps en fonction de la vitesse de cet ordinateur"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Cache des méta données créé"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Supprime les données en cache"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Cherche à quel paquet correspond la valeur donnée"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Cherche les mises à jour de paquets disponibles"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  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:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Recherche dans les paquets :"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Met à jour en tenant compte des paquets obsolètes"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Configuration du processus de mise à jour"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Installe un RPM local"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Configuration du processus de paquets locaux"
  
@@ -53987,167 +56465,167 @@ index 4636b15..8737d04 100644
 -msgstr "Détermine quel paquet fournit une dépendance donnée"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Recherche dans les paquets pour la dépendance :"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Lance un shell yum interactif"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Configuration du shell Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Liste les dépendances d'un paquet"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Recherche de dépendances :"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Affiche les dépôts logiciels configurés"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "activé"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "désactivé"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
 -msgstr "Id du dépôt      : "
 +msgstr "Id du dépôt          : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
 -msgstr "Nom du dépôt    : "
 +msgstr "Nom du dépôt         : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
 -msgstr "État du dépôt  : "
 +msgstr "État du dépôt        : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
 -msgstr "Révision du dépôt :"
 +msgstr "Révision du dépôt    : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
 -msgstr "Tags du dépôt    :"
 +msgstr "Tags du dépôt        : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
 -msgstr "Repo-distro-tags : "
 +msgstr "Repo-distro-tags     : "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
 -msgstr "Mise à jour du dépôt :"
 +msgstr "Mise à jour du dépôt : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
 -msgstr "Paquets du dépôt    : "
 +msgstr "Paquets du dépôt     : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
 -msgstr "Taille du dépôt    : "
 +msgstr "Taille du dépôt      : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
 -msgstr "Baseurl du dépôt : "
 +msgstr "Baseurl du dépôt     : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
 -msgstr "Méta-lien du dépôt :"
 +msgstr "Méta-lien du dépôt   : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
 -msgstr "  Mis à jour    : "
 +msgstr "  Mis à jour         : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
 -msgstr "Miroirs du dépôt :"
 +msgstr "Miroirs du dépôt     : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Jamais (dernier : %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Instant (dernier : %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s secondes (en date du : %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
 -msgstr "Expiration du dépôt : "
 +msgstr "Expiration du dépôt  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
 -msgstr "Exclus du dépôt :"
 +msgstr "Exclus du dépôt      : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
 -msgstr "Inclus au dépôt :"
 +msgstr "Inclus au dépôt      : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
 -msgstr "Exclus du dépôt : "
 +msgstr "Exclus du dépôt      : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Nom du dépôt         : "
@@ -54155,33 +56633,33 @@ index 4636b15..8737d04 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "id du dépôt"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "statut"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nom du dépôt"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Affiche un message d'aide à l'utilisation"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Aucune aide disponible pour %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -54193,7 +56671,7 @@ index 4636b15..8737d04 100644
 +msgstr "\n\nalias : "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -54205,152 +56683,190 @@ index 4636b15..8737d04 100644
 +msgstr "\n\nalias : "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Configuration du processus de réinstallation"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "Réinstaller un paquet"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Configuration du processus de retour à une version antérieure"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "Restaure un paquet à une version antérieure"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr "Groupes de version de yum :"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
 -msgstr "Groupe   :"
 +msgstr " Groupe    :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
 -msgstr "Paquets :"
 +msgstr " Paquets   :"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
 -msgstr "Installés :"
 +msgstr "Installés  :"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
 -msgstr "Groupe installé :"
 +msgstr "Groupes installés :"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Disponible :"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Groupes disponibles :"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Affiche ou utilise l'historique de transaction"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transactions :"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Début  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Fin    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Nombre :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Sous-commande de l'historique invalide, utilisez : %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Recherche des problèmes dans RPMDB"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "charge une transaction sauvegardée à partir d'un nom de fichier"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Aucun fichier de sauvegarde de transaction spécifié."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "Chargement de la transaction à partir de %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Transaction chargée à partir de %s avec %s membres"
-@@ -2034,107 +2085,110 @@ msgstr "Transaction chargée à partir de %s avec %s membres"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d paquet à mettre à jour"
++msgstr[1] "%d paquets à mettre à jour"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d paquet à supprimer ou réinstaller"
++msgstr[1] "%d paquets à supprimer ou réinstaller"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Échec du vérificateur de Yum : %s"
  
@@ -54360,32 +56876,25 @@ index 4636b15..8737d04 100644
 -msgstr ""
 -"Une autre application verrouille actuellement l'utilisation de yum ; attente"
 -" de déverrouillage..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Pas d'accès en lecture/écriture sur le répertoire courant, on se déblace dans /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Impossible de créer le fichier verrou, arrêt"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "getcwd() n'est pas accessible dans ce répertoire, on se déplace dans /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Impossible de créer le fichier verrou, arrêt"
  
-+#: ../yummain.py:134
-+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..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Résolution des dépendances"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -54397,7 +56906,7 @@ index 4636b15..8737d04 100644
 +msgstr "Votre transaction a été enregistrée, relancez-la avec :\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -54437,7 +56946,7 @@ index 4636b15..8737d04 100644
  msgstr "Membre : %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s converti pour installation"
@@ -54494,7 +57003,7 @@ index 4636b15..8737d04 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Mode pour le paquet qui fournit %s : %s"
-@@ -2142,1067 +2196,1069 @@ msgstr "Mode pour le paquet qui fournit %s : %s"
+@@ -2142,1067 +2319,1140 @@ 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 :(
@@ -54505,33 +57014,43 @@ index 4636b15..8737d04 100644
  msgstr "Éssai de mise à jour de %s pour résoudre les dépendances"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr "TSINFO : Obsolescence de %s avec %s pour résoudre les dépendances."
 +msgstr "TSINFO : obsolescence de %s avec %s pour résoudre les dépendances."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
 -msgstr "TSINFO : Mise à jour de %s pour la résolution des dépendances."
 +msgstr "TSINFO : mise à jour de %s pour la résolution des dépendances."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
@@ -54539,20 +57058,20 @@ index 4636b15..8737d04 100644
 +msgstr "Impossible de trouver un chemin de mise à jour pour la dépendance de : %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -54561,7 +57080,7 @@ index 4636b15..8737d04 100644
 +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:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -54570,77 +57089,77 @@ index 4636b15..8737d04 100644
 +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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
 -msgstr "TSINFO : Sélection de %s pour mise à jour de %s"
 +msgstr "TSINFO : sélection de %s pour mise à jour de %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
 -msgstr "TSINFO : Sélection de %s pour installation de %s"
 +msgstr "TSINFO : sélection de %s pour installation de %s"
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Succès - transaction vide"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Re-démarrage de la boucle"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Finalisation du processus de dépendance"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Succès - dépendances résolues"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Recherche des dépendances pour %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "meilleure architecture dans l'objet paquet %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s rend obsolète %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -54651,25 +57170,25 @@ index 4636b15..8737d04 100644
 +msgstr "architecture %s comparée à %s sur %s\n  Vainqueur : %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "rpm source commun pour %s et %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "requiert au minimum : %d"
@@ -54677,41 +57196,46 @@ index 4636b15..8737d04 100644
 +msgstr "fournit vercmp : %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Vainqueur : %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "requiert au minimum : %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Perdant (avec %d) : %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Meilleur ordre : %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -54720,113 +57244,118 @@ index 4636b15..8737d04 100644
 +msgstr "Il manque le nom du dépôt %r dans la configuration, utilisation de l'identifiant"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "modules complémentaires déjà initialisés"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Lecture de la base de données RPM locale"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Configuration du groupe de paquets"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Construction de l'objet de mises à jour"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Obtention des méta données du groupe"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Aucun groupe disponible dans les dépôts"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Obtention des méta-données de pkgtags"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, 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:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Import d'informations additionnelles sur la liste de fichiers"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -54836,26 +57365,59 @@ index 4636b15..8737d04 100644
 +msgstr "Il reste des transactions non terminées. Vous devriez envisager d'exécuter yum-complete-transaction pour les terminer."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Recherche de dépendances inutiles"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
--"protection contre les différentes versions de bibliothèques : %s != %s"
 +msgstr "protection contre les différentes versions de bibliothèques : %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
+-"protection contre les différentes versions de bibliothèques : %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -54865,14 +57427,14 @@ index 4636b15..8737d04 100644
 +msgstr "\nPaquets omis en raison de problèmes de dépendances :"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s depuis %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -54881,24 +57443,24 @@ index 4636b15..8737d04 100644
 +msgstr "** %d problèmes RPMDB préexistants trouvés, la sortie de « yum check » est la suivante :"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
 -msgstr ""
 -"Avertissement : RPMDB a été modifiée par une autre application que yum."
 +msgstr "Avertissement : RPMDB a été modifiée par une autre application que yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "dépendances manquantes"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "conflit installé"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -54906,18 +57468,18 @@ index 4636b15..8737d04 100644
 +msgstr "Attention : scriptlet ou autres erreurs non fatales apparues pendant la transaction."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  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:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Impossible d'exécuter la transaction."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Échec de la suppression du fichier de transaction %s"
@@ -54925,7 +57487,7 @@ index 4636b15..8737d04 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s est censé être installé, mais ne l'est pas !"
@@ -54936,7 +57498,7 @@ index 4636b15..8737d04 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s est censé être supprimé, mais ne l'est pas !"
@@ -54954,32 +57516,32 @@ index 4636b15..8737d04 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Impossible de libérer le verrou %s : %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Impossible de vérifier si le PID %s est actif"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -54990,17 +57552,17 @@ index 4636b15..8737d04 100644
 +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:2119
++#: ../yum/__init__.py:2155
  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:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Le paquet ne correspond pas à sa somme de contrôle"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -55009,7 +57571,7 @@ index 4636b15..8737d04 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "utilisation de la copie locale de %s"
@@ -55020,18 +57582,21 @@ index 4636b15..8737d04 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ 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:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "L'en-tête est incomplet."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -55041,55 +57606,55 @@ index 4636b15..8737d04 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problème à l'ouverture du paquet %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Le paquet %s n'est pas signé"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Impossible de supprimer %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s supprimé"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Impossible de supprimer depuis %s le fichier %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "fichier de %s : %s supprimé"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d fichiers de %s supprimés"
@@ -55099,19 +57664,19 @@ index 4636b15..8737d04 100644
 +msgstr[1] "%d %s fichiers supprimés"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -55121,7 +57686,7 @@ index 4636b15..8737d04 100644
 +msgstr "searchPackages() sera supprimé dans une future version de Yum.                      Utilisez searchGenerator() à la place. \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Recherche de %d paquets"
@@ -55131,115 +57696,130 @@ index 4636b15..8737d04 100644
 +msgstr[1] "Recherche de %d paquets"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "recherche du paquet %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "recherche dans les entrées de fichiers"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "recherche dans les entrées de correspondance"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Omission du paquet %s du groupe %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
 -msgstr "Attention : le goupe %s ne contient aucun paquets."
-+msgstr "Attention : le groupe %s ne contient aucun paquet."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
++msgstr "Le groupe %s contient %u paquets conditionnels, qui sont susceptibles d'être installés."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
 -"Le groupe %s contient %u paquets conditionnels, qui sont susceptibles d'être"
 -" installés."
-+msgstr "Le groupe %s contient %u paquets conditionnels, qui sont susceptibles d'être installés."
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Aucun paquet trouvé pour %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Rien de spécifié pour installation"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
 -msgstr ""
@@ -55253,30 +57833,30 @@ index 4636b15..8737d04 100644
 -msgstr "Aucune correspondance pour l'argument : %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Aucun paquet disponible pour installation"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -55287,7 +57867,7 @@ index 4636b15..8737d04 100644
 +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:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -55296,13 +57876,13 @@ index 4636b15..8737d04 100644
 +msgstr "Le paquet %s est rendu obsolète par %s, tentative d'installation de %s à la place"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -55312,14 +57892,14 @@ index 4636b15..8737d04 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
@@ -55328,35 +57908,35 @@ index 4636b15..8737d04 100644
 +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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Aucune correspondance pour l'argument : %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Aucun paquet correspondant à mettre à jour : %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -55366,43 +57946,43 @@ index 4636b15..8737d04 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Aucun paquet sélectionné pour suppression"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Aucun paquet correspondant à désinstaller : %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, 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:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Suppression de %s de la transaction"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Examen de %s : %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -55412,7 +57992,7 @@ index 4636b15..8737d04 100644
 +msgstr "Impossible d'ajouter le paquet %s à la transaction. Architecture incompatible : %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -55421,7 +58001,7 @@ index 4636b15..8737d04 100644
 +msgstr "Impossible d'installer le paquet %s. Il est rendu obsolète par le paquet %s installé"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -55432,7 +58012,7 @@ index 4636b15..8737d04 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -55443,44 +58023,44 @@ index 4636b15..8737d04 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Exclusion de %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Sélection de %s pour installation "
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Impossible d'ouvrir le fichier : %s. Omission."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Problème dans la réinstallation : aucun paquet correspondant à supprimer"
 +msgstr "Problème dans la réinstallation : aucun paquet correspondant à supprimer"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -55488,77 +58068,77 @@ index 4636b15..8737d04 100644
 +msgstr "Problème dans la réinstallation : aucun paquet %s correspondant à installer"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Aucun paquet disponible pour retour à une version antérieure"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Aucune correspondance pour le paquet disponible : %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, 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:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Erreur lors de la mise à jour : %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Récupération de la clé à partir de %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Clé GPG invalide depuis %s :%s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -55577,7 +58157,7 @@ index 4636b15..8737d04 100644
 +msgstr "Importation de la clef %s 0x%s :\nID utilisateur : « %s »\nEmpreinte      : %s\nPaquet         : %s (%s)\nProvient de    : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -55593,7 +58173,7 @@ index 4636b15..8737d04 100644
 +msgstr "Importation de la clef %s 0x%s :\nID utilisateur : « %s »\nEmpreinte      : %s\nProvient de    : %s"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -55603,29 +58183,29 @@ index 4636b15..8737d04 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Échec avec le paquet : %s\n Les clés GPG sont configurées comme : %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "La clé a été importée avec succès"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Toutes les clés n'ont pas été installées"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -55636,22 +58216,22 @@ index 4636b15..8737d04 100644
 +msgstr "Les clés GPG listées pour le dépôt « %s » sont déjà installées mais sont incorrectes pour ce paquet.\nVérifiez que les URL des clés pour ce dépôt soient correctes."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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 ?"
 +msgstr "L'import de la ou des clés n'a pas résolu le problème, clés incorrectes ?"
-+
-+#: ../yum/__init__.py:5472
-+msgid "No"
-+msgstr "Non"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5932
++msgid "No"
++msgstr "Non"
++
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Oui"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -55662,7 +58242,7 @@ index 4636b15..8737d04 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Clé du CA : %s\n Échec avec le dépôt : %s\n Les clés GPG sont configurées comme : %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "La clé GPG %s (0x%s) est déjà importée"
@@ -55670,19 +58250,19 @@ index 4636b15..8737d04 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "L'import de la clé à échoué"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "L'import de la clé %s à échoué"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -55693,34 +58273,34 @@ index 4636b15..8737d04 100644
 +msgstr "Les clés GPG listées pour le dépôt « %s » sont déjà installées mais sont incorrectes.\nVérifiez que les URL des clés pour ce dépôt soient correctes."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Impossible de trouver un miroir adapté."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  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:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Veuillez reporter cette erreur dans %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Erreurs de la transaction de test : "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Les dépendances ne sont pas résolues. Les transactions non résolues ne "
@@ -55728,60 +58308,58 @@ index 4636b15..8737d04 100644
 +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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
 -"La version de rpmdb ne correspond pas à la version de la transaction "
 -"enregistrée,"
-+msgstr "La version de rpmdb ne correspond pas à la version de la transaction enregistrée,"
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " ignoré, comme spécifié."
- 
+-msgid " ignoring, as requested."
+-msgstr " ignoré, comme spécifié."
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " arrêt."
- 
+-msgid " aborting."
+-msgstr " arrêt."
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 -"Des composants ou relations de la transactions sont manquant, ou la "
@@ -55789,32 +58367,36 @@ index 4636b15..8737d04 100644
 +msgstr "Des composants ou relations de la transactions sont manquant, ou la transaction a été modifiée,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
--" ignoré, comme spécifié. Vous devez résoudre les dépendances à nouveau !"
 +msgstr " ignoré, comme spécifié. Vous devez résoudre les dépendances à nouveau !"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s a déjà été consulté et ne peut donc pas être supprimé."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Examination des dépendances inverses de %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s a %s en tant que dépendance inverse qui a été installé par l'utilisateur."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
+ msgstr ""
+-" ignoré, comme spécifié. Vous devez résoudre les dépendances à nouveau !"
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s n'a pas de dépendances inverses installées par l'utilisateur."
@@ -55924,7 +58506,7 @@ index 4636b15..8737d04 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s fournit %s mais est introuvable"
-@@ -3211,6 +3267,19 @@ msgstr "%s fournit %s mais est introuvable"
+@@ -3211,6 +3461,23 @@ msgstr "%s fournit %s mais est introuvable"
  msgid "Repackaging"
  msgstr "Réempaquetage"
  
@@ -55933,7 +58515,7 @@ index 4636b15..8737d04 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Vérification : %u/%u : %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -55941,10 +58523,14 @@ index 4636b15..8737d04 100644
 +"    * needed %s"
 +msgstr "Espace disque insuffisant dans le dossier de téléchargement %s\n    * libre   %s\n    * nécessaire %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3223,9 +3292,7 @@ msgstr "Échec du contrôle MD5 pour le RPM %s"
+@@ -3223,9 +3490,7 @@ msgstr "Échec du contrôle MD5 pour le RPM %s"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -55955,17 +58541,17 @@ index 4636b15..8737d04 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3241,5 +3308,3 @@ msgstr "En-tête endommagée %s"
+@@ -3241,5 +3506,3 @@ msgstr "En-tête endommagée %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Erreur d'ouverture du rpm %s - erreur %s"
 -
 -
 diff --git a/po/gu.po b/po/gu.po
-index e9ad955..31187b0 100644
+index e9ad955..ea00c75 100644
 --- a/po/gu.po
 +++ b/po/gu.po
-@@ -2,875 +2,909 @@
+@@ -2,875 +2,992 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -55981,8 +58567,8 @@ index e9ad955..31187b0 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Gujarati (http://www.transifex.net/projects/p/yum/team/gu/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Gujarati (http://www.transifex.com/projects/p/yum/language/gu/)\n"
  "MIME-Version: 1.0\n"
@@ -55993,7 +58579,7 @@ index e9ad955..31187b0 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "સુધારી રહ્યા છે"
  
@@ -56004,31 +58590,31 @@ index e9ad955..31187b0 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "અપ્રચલિત થયેલ"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "સુધારેલ"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "સ્થાપિત થયેલ"
  
@@ -56055,7 +58641,7 @@ index e9ad955..31187b0 100644
  msgstr "દૂર કરેલ: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "દૂર કરી રહ્યા છે"
  
@@ -56065,69 +58651,69 @@ index e9ad955..31187b0 100644
  msgstr "સાફ કરો"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "આદેશ \"%s\" પહેલેથી જ વ્યાખ્યાયિત થયેલ છે"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "રિપોઝીટરીઓને સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "સ્થાનિય ફાઇલોમાંથી રિપોઝીટરી મેટાડેટાને વાંચી રહ્યા છે"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "રૂપરેખાંકન ભૂલ: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "વિકલ્પો ભૂલ: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  સ્થાપિત થયેલ: %s-%s પર %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "તમારે અમુક આદેશને આપવાની જરૂર છે"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "આવો આદેશ નથી: %s. મહેરબાની કરીને %s --help વાપરો"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "ડિસ્ક જરૂરિયાતો:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -56138,101 +58724,122 @@ index e9ad955..31187b0 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "ભૂલ સારાંશ\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
+ msgstr ""
 -"ભૂલ સારાંશ\n"
 -"-------------\n"
-+msgstr "ભૂલ સારાંશ\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "વપરાશકર્તા આદેશ પર બહાર નીકળી રહ્યા છે"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "પેકેજોને ડાઉનલોડ કરી રહ્યા છે:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "પેકેજોને ડાઉનલોડ કરતી વખતે ભૂલ:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM ને સુધારવાની જરૂર છે"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "મહેરબાની કરીને %s માં આ ભૂલનો અહેવાલ કરો"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "પેકેજ %s%s%s ઉપલબ્ધ નથી."
@@ -56240,22 +58847,27 @@ index e9ad955..31187b0 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ)"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "કંઇ કરવાનુ નથી"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "સુધારવા માટે %d પેકેજો ચિહ્નિત થયેલ છે"
@@ -56265,12 +58877,12 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "સુધારવા માટે પેકેજો ચિહ્નિત થયેલ નથી"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -56280,12 +58892,12 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "દૂર કરવા માટે %d પેકેજો ચિહ્નિત થયેવ છે"
@@ -56295,14 +58907,14 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "દૂર કરવા માટે પેકેજો ચિહ્નિત થયેલ નથી"
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -56310,13 +58922,13 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (%s માંથી)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "સ્થાપિત થયેલ પેકેજ %s%s%s%s ઉપલબ્ધ નથી."
@@ -56324,7 +58936,7 @@ index e9ad955..31187b0 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "પુન:સ્થાપિત કરવા માટે પેકેજ (ઓ)"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -56332,58 +58944,58 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "પેકેજો પૂરા પાડેલ નથી"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ)"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "ચેતવણી: તેની માટે બંધબેસતુ મળ્યુ નથી: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "%s માટે પેકેજ મળ્યુ નથી"
@@ -56393,115 +59005,141 @@ index e9ad955..31187b0 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "બધુ જ સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "હેડરો સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "પેકેજો સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "xml મેટાડેટા સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "ડેટાબેઝ કેશ સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "પ્લગઇનને સાફ કરી રહ્યા છે"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "સ્થાપિત થયેલ જૂથો:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "ઉપલબ્ધ જૂથો:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "ચેતવણી: જૂથ %s અસ્તિત્વ ધરાવતુ નથી."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr "સ્થાપિત અથવા સુધારવા ઉપલબ્ધ કોઇપણ સૂચિત થયેલ જૂથમાં પેકેજો નથી"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "સ્થાપિત કરવા માટે %d પેકેજ(ઓ)"
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "સ્થાપિત કરવા માટે %d પેકેજ(ઓ)"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "જૂથોમાંથી દૂર કરવા માટે પેકેજો નથી"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "દૂર કરવા માટે %d પેકેજ(ઓ)"
@@ -56511,37 +59149,37 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "પેકેજ %s પહેલેથી જ સ્થાપિત થયેલ છે, છોડી રહ્યા છે"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "પ્લગઇન વિકલ્પો"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "આદેશ વાક્ય ભૂલ: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -56554,355 +59192,363 @@ index e9ad955..31187b0 100644
 +msgstr "\n\n%s: %s વિકલ્પને દલીલની જરૂર છે"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "રૂપરેખાંકન ફાઇલ સ્થાન"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "ડિબગીંગ આઉટપુટ લેવલ"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "ભૂલ આઉટપુટ લેવલ"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "rpm માટે ડિબગીંગ આઉટપુટ લેવલ"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "બધા પ્રશ્ર્નો માટે જવાબ હાં"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "Yum આવૃત્તિ બતાવો અને બહાર નીકળો"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "સ્થાપન રુટ સુયોજિત કરો"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "એક અથવા વધારે રિપોઝીટરીઓને સક્રિય કરો (વાઇલ્ડકાર્ડને પરવાનગી આપેલ છે)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"એક અથવા વધારે રિપોઝીટરીઓને નિષ્ક્રિય કરો (વાઇલ્ડકાર્ડને પરવાનગી આપેલ છે)"
 +msgstr "એક અથવા વધારે રિપોઝીટરીઓને નિષ્ક્રિય કરો (વાઇલ્ડકાર્ડને પરવાનગી આપેલ છે)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "Yum પ્લગઇનને નિષ્ક્રિય કરો"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "નામ પ્રમાણે પ્લગઇનને નિષ્ક્રિય કરો"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "નામ પ્રમાણે પ્લગઇનને સક્રિય કરો"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "જાન્યુઆરી"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "ફેબ્રુઆરી"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "માર્ચ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "એપ્રિલ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "મે"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "જુન"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "જુલાઇ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "ઑગસ્ટ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "સપ્ટેમ્બર"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "ઑક્ટોમ્બર"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "નવેમ્બર"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "ડિસેમ્બર"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "બીજા મિરર માટે પ્રયત્ન કરી રહ્યા છે."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "નામ        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "આવૃત્તિ     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "માપ        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "સારાંશ     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "લાઇસન્સ     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "વર્ણન : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "હાં"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "નાં"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "શું આ બરાબર છે [y/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -56913,165 +59559,189 @@ index e9ad955..31187b0 100644
 +msgstr "\nજૂથ: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " જૂથ-Id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " વર્ણન: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " ફરજિયાત પેકેજો:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " મૂળભૂત પેકેજો:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " વૈકલ્પિક પેકેજો:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " શરતી પેકેજો:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "પેકેજ: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "લાઇસન્સ     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "ફાઇલનામ    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "બીજા       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "કુલ માપ: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "કુલ ડાઉનલોડ માપ: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "સ્થાપિત થયેલ માપ: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "પુન:સ્થાપિત કરી રહ્યા છે"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "સ્થાપિત થયેલ નથી"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "પેકેજ"
 +msgid_plural "Packages"
@@ -57079,58 +59749,58 @@ index e9ad955..31187b0 100644
 +msgstr[1] "પેકેજ"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "આવૃત્તિ"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "રિપોઝીટરી"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "માપ"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -878,57 +912,58 @@ msgid ""
+@@ -878,57 +995,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
@@ -57138,329 +59808,329 @@ index e9ad955..31187b0 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "પુન:સ્થાપિત કરો"
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "દૂર કરેલ"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "નિષ્ફળ"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "બે"
  
-@@ -936,7 +971,7 @@ msgstr "બે"
+@@ -936,7 +1054,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -944,541 +979,590 @@ msgid ""
+@@ -944,541 +1062,584 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "કુલ"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<unset>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "સિસ્ટમ"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "તારીખ અને સમય"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "ક્રિયા (ઓ)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "વપરાશકર્તા           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "નિષ્ફળતા:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "સફળતા"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "આદેશ વાક્ય   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb સમસ્યાઓ:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "ભૂલો:"
  
@@ -57469,17 +60139,17 @@ index e9ad955..31187b0 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "ભૂંસી નાખો"
  
@@ -57492,224 +60162,226 @@ index e9ad955..31187b0 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "સુધારવું"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "સમય"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "છેલ્લો દિવસ"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "છેલ્લુ અઠવાડિયું"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "છેલ્લા 2 અઠવાડિયાઓ"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "છેલ્લા 3 મહિનાઓ"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "છેલ્લા 6 મહિનાઓ"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "છેલ્લુ વર્ષ"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "ઉપલબ્ધ વધારાની ઇતિહાસ જાણકારી:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: આ નામ પ્રમાણે વધારાની માહિતી મળી નથી"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "સ્થાપિત થયેલ"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "ભૂંસી નાખેલ"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "પુન:સ્થાપિત થયેલ"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "સુધારેલ"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "અપ્રચલિત થયેલ"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> પેકેજને રાખી રહ્યા છે: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> પેકેજને રાખી રહ્યા છે: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "પેકેજ: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -57717,7 +60389,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -57728,7 +60400,7 @@ index e9ad955..31187b0 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -57739,7 +60411,7 @@ index e9ad955..31187b0 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -57750,38 +60422,38 @@ index e9ad955..31187b0 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "ઉપલબ્ધ"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -57789,70 +60461,70 @@ index e9ad955..31187b0 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "ચાલી રહ્યુ છે"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "અજ્ઞાત"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    મેમરી : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -57860,7 +60532,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -57868,7 +60540,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -57878,62 +60550,61 @@ index e9ad955..31187b0 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit ભૂલ: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum ભૂલ: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "ભૂલ: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "સમાપ્ત!"
  
-@@ -1490,7 +1574,7 @@ msgstr ""
+@@ -1490,7 +1651,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "આ આદેશને ચલાવવા માટે તમારે રુટમાં હોવુ જરૂરી છે."
  
@@ -57942,7 +60613,7 @@ index e9ad955..31187b0 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1507,451 +1591,488 @@ msgid ""
+@@ -1507,555 +1668,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -57959,51 +60630,71 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -58011,112 +60702,112 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PACKAGE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "તમારી સિસ્ટમ પર પેકેજ અથવા પેકેજોને સ્થાપિત કરો"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "સ્થાપન પ્રક્રિયાને સુયોજિત કરી રહ્યા છે"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PACKAGE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "તમારી સિસ્ટમ પર પેકેજ અથવા પેકેજોને સુધારવું"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "સુધારવાની પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "સ્થાપિત થયેલ પેકેજો"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "ઉપલબ્ધ પેકેજો"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "વધારાનાં પેકેજો"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "સુધારેલ પેકેજો"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "પેકેજોને અપ્રચલિત કરી રહ્યા છે"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "હમણાંજ ઉમેરેલ પેકેજો"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "દૂર કરવાની પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "જૂથ પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr ""
  
@@ -58127,7 +60818,7 @@ index e9ad955..31187b0 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "તમારી સિસ્ટમ પર જૂથમાં પેકેજોને સ્થાપિત કરો"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -58135,79 +60826,79 @@ index e9ad955..31187b0 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "તમારી સિસ્ટમમાંથી જૂથમાં પેકેજોને દૂર કરો"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "પેકેજ જૂથ વિશે વિગતોને દર્શાવો"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "બધી મેટાડેટા ફાઇલો માટે કેશ ફાઇલો બનાવી રહ્યા છે."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "મેટાડેટા કેશ બનાવી"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "કેશ થયેલ માહિતીને દૂર કરો"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "ઉપલબ્ધ પેકેજ સુધારાઓ માટે ચકાસો"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "પેકેજોને શોધી રહ્યા છે: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "અદ્યતન બનાવવાની પ્રક્રિયા સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "સ્થાનિય RPM ને સ્થાપિત કરો"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "સ્થાનિય પેકેજ પ્રક્રિયાને સુયોજિત કરી રહ્યા છીએ"
  
@@ -58216,183 +60907,183 @@ index e9ad955..31187b0 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Yum Shell ને સુયોજિત કરી રહ્યા છીએ"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "રૂપરેખાંકિત થયેલ સોફ્ટવેર રિપોઝીટરીઓને દર્શાવો"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "સક્રિય"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "નિષ્ક્રિય"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "પરિસ્થિતિ"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "રિપોઝીટરી નામ"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "%s માટે ઉપલબ્ધ મદદ નથી"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -58400,7 +61091,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -58408,180 +61099,210 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "પેકેજને પુન:સ્થાપિત કરો"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum આવૃત્તિ જૂથો:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " જૂથ   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " પેકેજો:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "સ્થાપિત થયેલ:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "ઉપલબ્ધ:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "જૂથ-ઉપલબ્ધ:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "rpmdb માં સમસ્યાઓ માટે ચકાસો"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1962,100 +2083,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -58590,7 +61311,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -58626,7 +61347,7 @@ index e9ad955..31187b0 100644
  msgstr "સભ્ય: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -58683,7 +61404,7 @@ index e9ad955..31187b0 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2063,991 +2194,1069 @@ msgstr ""
+@@ -2063,991 +2317,1140 @@ 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 :(
@@ -58694,130 +61415,140 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "લુપ પુન:શરૂ કરી રહ્યા છે"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "%s માટે compare_providers() ચલાવી રહ્યા છે"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -58825,254 +61556,298 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "સામાન્ય sourcerpm %s અને %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " વિજેતા: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "પ્લગઇન પહેલેથી જ પ્રારંભ થયેલ છે"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "સ્થાનિય RPMDB ને વાંચી રહ્યા છે"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "જૂથ મેટાડેટાને મેળવી રહ્યા છે"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "રિપોઝીટરી માથી જૂથ ફાઇલને ઉમેરી રહ્યા છે: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "કોઇપણ રિપોઝીટરીમાં જૂથો ઉપલબ્ધ નથી"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "રિપોઝીટરીમાંથી ટૅગને ઉમેરી રહ્યા છે: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "વધારાની ફાઇલયાદી જાણકારીને આયાત કરી રહ્યા છે"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "\"%s\" દૂર કરવા માટે પ્રયત્ન કરી રહ્યા છે, કે જે સુરક્ષિત થયેલ છે"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -59080,7 +61855,7 @@ index e9ad955..31187b0 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -59091,7 +61866,7 @@ index e9ad955..31187b0 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
@@ -59109,32 +61884,32 @@ index e9ad955..31187b0 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "તાળુ %s ને ખોલી શક્યા નહિં: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "ચકાસવાનું અસમર્થ જો PID %s સક્રિય છે"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -59142,23 +61917,23 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "%s ની સ્થાનિક નકલને વાપરી રહ્યા છે"
@@ -59169,70 +61944,73 @@ index e9ad955..31187b0 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "હેડર પૂર્ણ નથી."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "%s માટે સાર્વજનિક કી સ્થાપિત થયેલ નથી"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "પેકેજ %s ને ખોલી રહ્યા હોય ત્યારે સમસ્યા"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "પેકેજ %s હસ્તાક્ષર થયેલ નથી"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "%s ને દૂર કરી શકાતુ નથી"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s દૂર થયેલ છે"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s ફાઇલો દૂર થયેલ છે"
@@ -59242,26 +62020,26 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "%d પેકેજોને શોધી રહ્યા છે"
@@ -59271,111 +62049,127 @@ index e9ad955..31187b0 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "પેકેજ %s ને શોધી રહ્યા છે"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "નામ થયેલ જૂથ %s અસ્તિત્વ ધરાવતુ નથી"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "જૂથ %s માંથી પેકેજ %s ને ઉમેરી રહ્યા છે"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "સ્થાપિત કરવા માટે નામ થયેલ પેકેજ %s ઉપલબ્ધ નથી"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "%s માટે પેકેજ મળ્યુ નથી"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "સ્થાપિત કરવા માટે કઇ જ સ્પષ્ટ થયેલ નથી"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -59387,30 +62181,30 @@ index e9ad955..31187b0 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "પેકેજ %s સ્થાપિત થયેલ છે અને ઉપલબ્ધ નથી"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "સ્થાપિત કરવા માટે પેકેજ (ઓ) ઉપલબ્ધ નથી"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -59418,123 +62212,123 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "બધુ જ સુધારી રહ્યા છે"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr "પેકેજને સુધારી રહ્યા નથી કે જે અપ્રચલિત થયેલ છે: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "%s નું પરિક્ષણ કરી રહ્યા છે: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -59542,7 +62336,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -59550,118 +62344,118 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: સ્થાપિત પેકેજોને સુધારાતુ નથી."
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "ઉપલબ્ધ પેકેજ માટે બંધબેસતુ નથી: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "%s માંથી અયોગ્ય GPG કી: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -59675,7 +62469,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -59687,7 +62481,7 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -59697,29 +62491,29 @@ index e9ad955..31187b0 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -59727,20 +62521,20 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -59751,26 +62545,26 @@ index e9ad955..31187b0 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -59778,117 +62572,121 @@ index e9ad955..31187b0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr "cachedir ને સુયોજિત કરી શક્યા નહિં: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -59988,7 +62786,7 @@ index e9ad955..31187b0 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3056,6 +3265,19 @@ msgstr ""
+@@ -3056,6 +3459,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -59997,7 +62795,7 @@ index e9ad955..31187b0 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -60005,20 +62803,24 @@ index e9ad955..31187b0 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3084,5 +3306,3 @@ msgstr ""
+@@ -3084,5 +3504,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/hi.po b/po/hi.po
-index 988a7a5..7e2000c 100644
+index 988a7a5..b35083e 100644
 --- a/po/hi.po
 +++ b/po/hi.po
-@@ -2,427 +2,455 @@
+@@ -2,427 +2,506 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -60032,8 +62834,8 @@ index 988a7a5..7e2000c 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Hindi (http://www.transifex.net/projects/p/yum/team/hi/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Hindi (http://www.transifex.com/projects/p/yum/language/hi/)\n"
  "MIME-Version: 1.0\n"
@@ -60044,7 +62846,7 @@ index 988a7a5..7e2000c 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -60055,31 +62857,31 @@ index 988a7a5..7e2000c 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -60106,7 +62908,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -60116,69 +62918,69 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -60189,121 +62991,147 @@ index 988a7a5..7e2000c 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -60313,12 +63141,12 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -60328,12 +63156,12 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -60343,14 +63171,14 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -60358,13 +63186,13 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -60372,7 +63200,7 @@ index 988a7a5..7e2000c 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -60380,58 +63208,58 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -60440,115 +63268,140 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, 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:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -60558,392 +63411,400 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +458,452 @@ msgid ""
+@@ -430,438 +509,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -60951,165 +63812,189 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -61117,387 +64002,387 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +911,58 @@ msgid ""
+@@ -869,57 +994,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +970,7 @@ msgstr ""
+@@ -927,7 +1053,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +978,542 @@ msgid ""
+@@ -935,484 +1061,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -61506,17 +64391,17 @@ index 988a7a5..7e2000c 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -61529,224 +64414,225 @@ index 988a7a5..7e2000c 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -61754,7 +64640,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -61762,7 +64648,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -61770,7 +64656,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -61778,38 +64664,38 @@ index 988a7a5..7e2000c 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -61817,70 +64703,70 @@ index 988a7a5..7e2000c 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -61888,7 +64774,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -61896,68 +64782,67 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1521,47 @@ msgid ""
+@@ -1420,47 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1573,7 @@ msgstr ""
+@@ -1472,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -61966,7 +64851,7 @@ index 988a7a5..7e2000c 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1590,488 @@ msgid ""
+@@ -1489,555 +1667,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -61983,51 +64868,71 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -62035,200 +64940,200 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -62237,183 +65142,183 @@ index 988a7a5..7e2000c 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -62421,7 +65326,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -62429,180 +65334,210 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -62611,7 +65546,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -62647,7 +65582,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -62704,7 +65639,7 @@ index 988a7a5..7e2000c 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2193,1069 @@ msgstr ""
+@@ -2045,991 +2316,1140 @@ 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 :(
@@ -62715,130 +65650,140 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -62846,254 +65791,298 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -63101,7 +66090,7 @@ index 988a7a5..7e2000c 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -63112,14 +66101,14 @@ index 988a7a5..7e2000c 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -63127,7 +66116,7 @@ index 988a7a5..7e2000c 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -63135,7 +66124,7 @@ index 988a7a5..7e2000c 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -63144,14 +66133,14 @@ index 988a7a5..7e2000c 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -63159,23 +66148,23 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -63186,70 +66175,73 @@ index 988a7a5..7e2000c 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -63259,26 +66251,26 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -63288,111 +66280,127 @@ index 988a7a5..7e2000c 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -63404,30 +66412,30 @@ index 988a7a5..7e2000c 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -63435,123 +66443,123 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -63559,7 +66567,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -63567,118 +66575,118 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -63692,7 +66700,7 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -63701,9 +66709,10 @@ index 988a7a5..7e2000c 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -63711,32 +66720,31 @@ index 988a7a5..7e2000c 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -63744,20 +66752,20 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -63768,26 +66776,26 @@ index 988a7a5..7e2000c 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -63795,117 +66803,121 @@ index 988a7a5..7e2000c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -64005,7 +67017,7 @@ index 988a7a5..7e2000c 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3264,19 @@ msgstr ""
+@@ -3038,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -64014,7 +67026,7 @@ index 988a7a5..7e2000c 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -64022,26 +67034,30 @@ index 988a7a5..7e2000c 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3305,3 @@ msgstr ""
+@@ -3066,5 +3503,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/hu.po b/po/hu.po
-index db7c07f..52a3fba 100644
+index db7c07f..800875a 100644
 --- a/po/hu.po
 +++ b/po/hu.po
-@@ -2,944 +2,969 @@
+@@ -2,944 +2,1052 @@
  # 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, 2012.
++# András Bögöly <ebogoly at gmail.com>, 2011-2013.
 +#   <ptr at ulx.hu>, 2012.
  msgid ""
  msgstr ""
@@ -64052,8 +67068,8 @@ index db7c07f..52a3fba 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Hungarian (http://www.transifex.net/projects/p/yum/team/hu/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-07-20 12:46+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-27 23:33+0000\n"
 +"Last-Translator: András Bögöly <ebogoly at gmail.com>\n"
 +"Language-Team: Hungarian (http://www.transifex.com/projects/p/yum/language/hu/)\n"
  "MIME-Version: 1.0\n"
@@ -64064,7 +67080,7 @@ index db7c07f..52a3fba 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Frissítés"
  
@@ -64075,31 +67091,31 @@ index db7c07f..52a3fba 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Frissítve"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Telepítve"
  
@@ -64126,7 +67142,7 @@ index db7c07f..52a3fba 100644
  msgstr "Eltávolítva: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Eltávolítás"
  
@@ -64136,69 +67152,69 @@ index db7c07f..52a3fba 100644
  msgstr "Tisztítás"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "A(z) \"%s\" nevű parancs már létezik"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Tárolók beállítása"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Beállítási hiba: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Opció hiba: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Telepítve : %s-%s at %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Létrehozva: %s at %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Hozzáadva: %s at %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Egy parancs megadása szükségeltetik"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Szükséges hely:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -64210,7 +67226,7 @@ index db7c07f..52a3fba 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -64220,75 +67236,97 @@ index db7c07f..52a3fba 100644
 +msgstr "Hiba összegzés\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Nem sikerült lezárni; kilépés..."
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++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"
++
++#: ../cli.py:532
  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."
 +msgstr "A tranzakciót megpróbáltuk végrehajtani, de nincs semmi tennivaló. Kilépünk."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "jövőbeli rpmbd ver nem egyezik a mentett tranzakció verziójával,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " kihagyva, ahogy kértük."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "megszakítás."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Felhasználói parancs miatt kilépés."
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Csomagok letöltése:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Hiba ezen csomagok letöltésekor:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Tranzakció-ellenőrzés futtatása"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  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:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM frissítésére van szükség"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, 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:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Tranzakció teszt futtatása"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Tranzakció hibaellenőrzése:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "A Tranzakció teszt sikeres"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Tranzakció futtatása"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -64298,18 +67336,18 @@ index db7c07f..52a3fba 100644
 +msgstr "Felügyelet nélküli futás közben kulcsok nem importálhatóak.\nHasználjuk az \"-y\" kapcsolót a felülbíráláshoz."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "* Lehet, hogy erre gondolt:"
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Nincs ilyen csomag: %s%s%s."
@@ -64317,22 +67355,27 @@ index db7c07f..52a3fba 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Telepítendő csomagok"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Hibás %s argumentum %s."
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d csomag telepítésre kerül"
 +msgstr[1] "%d csomag telepítésre kerül"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nincs tennivaló"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d csomag kijelölve frissítésre"
@@ -64342,12 +67385,12 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag frissítésre kerül"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Nincs csomag kijelölve frissítésre"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d csomag van kijelölve Disztribúció Szinkronizáláshoz"
@@ -64357,12 +67400,12 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag kijelölve Disztribúció Szinkronizációhoz"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Nincs csomag kijelölve Disztribúció Szinkronizáláshoz"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d csomag van kijelölve eltávolításra"
@@ -64372,14 +67415,14 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag eltávolításra kerül"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -64387,13 +67430,13 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag visszaállításra"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr "(ebből: %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, 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"
@@ -64401,7 +67444,7 @@ index db7c07f..52a3fba 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Újratelepítendő csomagok"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -64409,61 +67452,61 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag újra lesz telepítve"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nem találhatóak csomagok"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Telepítendő csomagok"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "N/S Megegyezett: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
-+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."
++msgstr " Csak a név és a leírás %segyezik%s, használja a \"search all\" parancsot továbbiak kereséséhez."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
-+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."
++msgstr " Csak a teljes név és a leírás %segyezik%s, használja a \"search all\" parancsot továbbiak kereséséhez."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Találat: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
-+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."
++msgstr " Csak a név és a leírás %segyezik%s többnyire, használja a \"search all\" parancsot továbbiak kereséséhez."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, 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:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nincsenek találatok"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nem találhatóak csomagok a következőre: %s"
@@ -64473,115 +67516,142 @@ index db7c07f..52a3fba 100644
 +msgstr "Hiba: Nem található csomag a következőre:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Tárolók tisztítása"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Minden tisztítása"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Fejlécek tisztítása"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Csomagok tisztítása"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "xml metaadat tisztítása"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Adatbázis-gyorsítótár tisztítása"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Elévülési gyorsítótár tisztítása"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Gyorsítótárazott rpmdb adatok tisztítása"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Bővítmények tisztítása"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Figyelem: Egy csoport sem azonos a következővel: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Figyelem: Egy csoport sem azonos a következővel: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Telepített Környezeti Csoportok:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Elérhető Környezeti Csoportok:"
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Telepített csoportok:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Telepített nyelvi csoportok:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Elérhető csoportok:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Elérhető nyelvi csoportok:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Figyelem: Nincs Környezeti/Csoporti egyezés: %s"
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Kész"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Figyelem: A következő Környezet/Csoport nem létezik: %s"
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Figyelem: A következő Környezet nem létezik: %s"
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Figyelem: Az alábbi csoport nem létezik: %s"
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d Telepítendő csomag"
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d csomag telepítésre kerül"
 +msgstr[1] "%d csomag telepítésre kerül"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d Telepítendő csomag"
++msgid "No Environment named %s exists"
++msgstr "A(z) %s elnevezésű környezet nem létezik"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Nincs ilyen csoport: %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  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:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d Eltávolítandó csomag"
@@ -64591,37 +67661,37 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag eltávolításra kerül"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, 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:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, 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:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Bővítmény beállítások"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Parancssori hiba a következőben: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -64634,30 +67704,30 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\n%s: %s opciónak szüksége van egy argumentumra"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, 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:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "ezen segítség mutatása"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "a hibák figyelmen kívül hagyása"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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 "
@@ -64665,123 +67735,123 @@ index db7c07f..52a3fba 100644
 +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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "konfigurációs fájl elérésí útja"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "leghosszabb várakozási idő meghatározása"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "a hibakeresés szintje"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "hiba kimeneti szintje"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "rpm hibakereső szint"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "csendes működés"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "visszajelzés működés közben"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "igennel válaszol minden felmerülő kérdésre"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "összes kérdésre a válasz nem"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "Yum verziójának mutatása és kilépés"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "telepítési root beállítása"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"egy vagy több tároló engedélyezése (helyettesítő karakterek megengedettek)"
 +msgstr "egy vagy több tároló engedélyezése (helyettesítő karakterek megengedettek)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  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:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "csomagok kizárása név vagy glob szerint"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "elavult komponensek feldolgozásának engedélyezése"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "Yum bővítmények tiltása"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "gpg-aláírás ellenőrzés kihagyása"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "bővítmények tiltása név szerint"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "bővítmények engedélyezése név szerint"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  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:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "szín használatának befolyásolása"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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: "
@@ -64789,207 +67859,216 @@ index db7c07f..52a3fba 100644
 +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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "ne frissítsen, csak töltse le"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "egy alternatív könyvtár meghatározása a csomagok tárolásához"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "tetszőleges konfiguráció- és tárolóbeállítások"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "jan."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "feb."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "márc."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "ápr."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "máj."
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "jún."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "júl."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "aug."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "szept."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "okt."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "nov."
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "dec."
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Próbálkozás másik tükörszerverről."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Név         : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arch        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Verzió      : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Kiadás      : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Méret       : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Tároló      : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Tárolóból   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Beküldő     : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Beküldési idő: %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Kiállítási idő : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Telepítési idő: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Telepítette: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Módosította  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Összegzés   : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licenc      : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Leírás      : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "igen"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nem"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
- msgstr "Ez így jó? [y/N]"
+-msgstr "Ez így jó? [y/N]"
++msgstr "Ez így jó? [y/N]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -65000,166 +68079,190 @@ index db7c07f..52a3fba 100644
 +msgstr "\nCsoport: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Csoport azonosító: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Leírás: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Nyelv: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Szükséges csomagok:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Alapértelmezett csomagok:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Opcionális csomagok:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Feltételes csomagok:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Telepített csomagok:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nKörnyezeti csoport: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "Környezet azonosító: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Kötelező Csoportok:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Opcionális Csoportok:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Telepített Csoportok:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "csomag: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Ezen csomaghoz nincs függőség"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  függőség: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Teljesítetlen függőség"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Találat a következőtől:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licenc      : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Fájlnév     : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Ellátja : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Egyéb       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Teljes méret: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Teljes letöltési méret: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Telepített méret: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  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:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Újratelepítés"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Visszaállítás"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Telepítés a függőségeknek"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Frissítés a függőségeknek"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Eltávolítás a függőségeknek"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Kihagyva (függőségi problémák)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Nem telepítve"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Nem elérhető"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Csomag"
 +msgid_plural "Packages"
@@ -65167,33 +68270,33 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "Csomag"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arch"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Verzió"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Tároló"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Méret"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, 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:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -65209,7 +68312,7 @@ index db7c07f..52a3fba 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "%5.5s csomag telepítése\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Telepítés"
  
@@ -65217,7 +68320,7 @@ index db7c07f..52a3fba 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "%5.5s csomag frissítése\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Frissítés"
  
@@ -65225,7 +68328,7 @@ index db7c07f..52a3fba 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "%5.5s csomag eltávolítása\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Eltávolítás"
  
@@ -65233,7 +68336,7 @@ index db7c07f..52a3fba 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "%5.5s csomag újratelepítése\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Újratelepítés"
  
@@ -65241,58 +68344,58 @@ index db7c07f..52a3fba 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "%5.5s csomag visszaállítva\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Visszaállítás"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Függőben lévő csomag"
 +msgstr[1] "Függőben lévő csomagok"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Eltávolítva"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Függőség Eltávolítva"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Függőség Telepítve"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Függőség Frissítve"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Lecserélve"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Sikertelen"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "kettő"
  
-@@ -947,565 +972,598 @@ msgstr "kettő"
+@@ -947,565 +1055,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -65305,263 +68408,263 @@ index db7c07f..52a3fba 100644
 +msgstr "\nA jelenlegi letöltés megszakítva, %s megszakítás (ctrl-c) mégegyszer %s, %s%s%s másodperc alatt\na kilépéshez.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "Felhasználó által megszakítva"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Összesen"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<üres>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Rendszer"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Nincsenek tranzakciók"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Rossz tranzakció azonosító vagy csomagnév lett megadva"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Parancssor"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Felhasználó"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "azonosító"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Dátum és idő"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Művelet(ek)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Változtatta"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Nem lett megadva tranzakció azonosító"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Rossz tranzakció azonosító lett megadva"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Nem található a megadott tranzakció azonosítója"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  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:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Nem lett megadva tranzakció azonosító vagy csomag"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Visszaállítva"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Régebbi"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Újabb"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Tranzakció azonosító:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Kezdés ideje   :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "rpmdb kezdete:"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u másodperc)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u perc)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u óra)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u nap)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Befejezés ideje:"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "rpmdb befejezése:"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Felhasználó    :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Visszatérési érték:"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Megszakítva"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Hibák:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Hiba:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Siker"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Parancssor     :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "A tranzakció lezajlott a következővel:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Módosított csomagok:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Kihagyott csomagok:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb hibák:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptlet kimenet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Hibák:"
  
@@ -65570,17 +68673,17 @@ index db7c07f..52a3fba 100644
 -msgstr "Telepítés"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Függőség-Telepítés"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Elavulttá tevés"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Törlés"
  
@@ -65593,224 +68696,226 @@ index db7c07f..52a3fba 100644
 -msgstr "Visszaállítás"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Frissítés"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Időpont"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "1 napja"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "1 hete"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "2 hete"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "3 hónapja"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "6 hónapja"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "1 éve"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Több, mint egy éve"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Nem található a következő tranzakció: %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Tranzakció azonosító:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Rendelkezésre álló további információ az előzményekről:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Csomag        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Állapot          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Méret           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Build kiszolgáló:"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Build időpont:"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Csomagoló       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Szállító         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licensz        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Forrás RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Beküldés időpont:"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Beküldő   :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Ok         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Tároló      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Telepítve általa   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Megváltoztatva általa     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "telepítve"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "egy frissítés"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "törölve"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "újratelepítve"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "egy visszaállítás"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "visszaállítás"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "frissítve"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "elavult"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Tranzakció ellenőrzés futtatása"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  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:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> A függőségvizsgálat véget ért"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, 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:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Csomag megtartása: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Csomag megtartása: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> A(z) %s Csomag megtartása a következő miatt: %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Nem talált függőség: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Csomag: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -65821,7 +68926,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n    Megkövetel: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -65832,7 +68937,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -65843,7 +68948,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -65854,38 +68959,38 @@ index db7c07f..52a3fba 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Frissítette"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Visszaállította"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Elavulttá tette"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Elérhető"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Konfliktus feldolgozása: %s ellentétben áll: %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> A tranzakció feltöltése csomagokkal. Kis türelmet."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
@@ -65894,71 +68999,71 @@ index db7c07f..52a3fba 100644
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Ellenőrzés"
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Fut"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Alszik"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Nem megszakítható"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Nyomozott/Megállított"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Ismeretlen"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  A másik alkalmazás: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  A másik alkalmazás: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memória : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Elindítva: %s - %s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Állapot  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -65970,7 +69075,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\nFelhasználó által megszakítva"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -65982,7 +69087,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\nKilépés megtört cső miatt (broken pipe)"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -65995,51 +69100,49 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -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"
-+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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Bővítmény-Összeomlási Hiba: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum Hiba: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Hiba: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -66049,11 +69152,11 @@ index db7c07f..52a3fba 100644
 +msgstr "\nFüggőségek Megtalálva"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Kész!"
  
-@@ -1517,7 +1575,7 @@ msgstr " Használat:\n"
+@@ -1517,7 +1652,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."
  
@@ -66062,7 +69165,7 @@ index db7c07f..52a3fba 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1532,584 +1590,604 @@ msgid ""
+@@ -1532,584 +1667,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -66095,51 +69198,71 @@ index db7c07f..52a3fba 100644
  msgstr "Hiba: Meg kell adni a csomagok listáját a következőhöz: %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Hiba: Legalább kettő csomag szükséges a következőhöz: %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Hiba: Meg kell adni egy tároló azonosítót és további parancsokat a következőhöz: %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Hiba: Meg kell adni egy érvényes tárolóazonosítót a következőhöz: %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Hiba: A(z) %s tároló nincs engedélyezve"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Hiba: egy elemnek legalább egyeznie kell"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Hiba: Szükség van legalább egy csoportra"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, 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:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Hiba: helytelen clean argumentum: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Nincs argumentum a héj felé"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Fájlnév átadva a héjnak: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -66152,112 +69275,112 @@ index db7c07f..52a3fba 100644
 +msgstr "Nincsenek engedélyezett tárolók.\nFuttassa a \"yum repolist all\" parancsot a tárolók listázásához.\nA következő paranccsal engedélyezhet tárolót:\n yum-config-manager --enable <repo>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "CSOMAG..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Csomag(ok) telepítése a rendszerre"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Telepítési folyamat megkezdése"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[CSOMAG...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Csomag(ok) frissítése a rendszeren"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Frissítési folyamat megkezdése"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  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:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Disztribúció szinkronizálási folyamat megkezdése"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Telepített csomagok"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Elérhető csomagok"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Extra csomagok"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Frissített csomagok"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Elavult csomagok"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Nemrégiben hozzáadott csomagok"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Nem található csomag"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Csomag vagy csomagcsoport listázása"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Csomag(ok) eltávolítása a rendszerből"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Eltávolítási folyamat megkezdése"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Megjeleníti, vagy használja a csoportinformációkat"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Csoport folyamat megkezdése"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Nem található csoport, amin futtatható a parancs"
  
@@ -66268,7 +69391,7 @@ index db7c07f..52a3fba 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Csoportban lévő csomagok telepítése"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Hibás csoport al-parancs, kérem, használja: %s"
@@ -66276,79 +69399,79 @@ index db7c07f..52a3fba 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Csoportban lévő csomagok eltávolítása"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Nincs telepített csoportfájl."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Részletek megjelenítése egy csoportról"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Önnek nincs hozzáférési jogosultsága a csoport DB-hez."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Metaadat-gyorsítótár generálása"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  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:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metaadat gyorsítótár létrehozva"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Gyorsítótárazott adat eltávolítása"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Megtalálja, mely csomag tartalmazza a megadott értéket"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Csomagfrissítések ellenőrzése"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Csomagrészletek keresése egy megadott szöveg alapján"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Csomagok keresése: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  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:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Frissítési folyamat megkezdése"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Helyi RPM telepítése"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Helyi csomagolási folyamat megkezdése"
  
@@ -66357,150 +69480,150 @@ index db7c07f..52a3fba 100644
 -msgstr "Megállapítja, melyik csomag tartalmazza a megadott függőséget"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Csomagfüggőségek keresése:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Interaktív yum shell futtatása"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Yum Shell indítása"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Egy csomag függőségeinek listázása"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Függőségek keresése: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Beállított szoftverforrások megjelenítése"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "engedélyezett"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "tiltott"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Tároló-azonosító: "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Tároló-név   : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Tároló-állapot: "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Tároló-vizsgálat:"
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Tároló-címkék : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Tároló-diszt.-címkék: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Tároló-frissítve: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Tároló-csomagok: "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Tároló-méret  : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Tároló-baseurl: "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Tároló-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Frissítve  : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Tároló-tükrök: "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Soha (utoljára: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Most (utoljára: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s másodperc (utoljára: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Tároló-lejárat: "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Tároló-kizárás:"
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Tároló-tartalmaz: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Tároló-kizárt: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Tároló-fájlnév: "
@@ -66508,33 +69631,33 @@ index db7c07f..52a3fba 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "tároló azon"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "állapot"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "tároló név"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Egy használati tipp mutatása"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Nincs súgó az alábbi témakörben: %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -66546,7 +69669,7 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\nalias-ok: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -66558,150 +69681,185 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Újratelepítő folyamat indítása"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "egy csomag újratelepítése"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Visszaállítási folyamat indítása"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "egy csomag visszaállítása"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum verzió csoportok:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Csoport   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr "Csomagok:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Telepített:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Telepített csoport:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Elérhető:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Elérhető csoport:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Korábbi tranzakciók használata vagy megjelenítése"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Tranzakciók:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Kezdés ideje   :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Befejezés ideje:"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Összesen     :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, 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:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Hibák keresése az rpmdb-ben"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "egy elmentett tranzakció betöltése fájlnév alapján"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Nincs meghatározva az elmentett tranzakció fájlja."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, 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:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
 -msgstr ""
 +msgstr "Tranzakció betöltve innen: %s, %s taggal"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Egyszerű módja a csomagok cserélésének a shell használata nélkül"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Egy tároló csoportként való kezelése, ezáltal mindet tudjuk telepíteni, ill. eltávolítani"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d csomag frissítendő"
++msgstr[1] "%d csomag frissítendő"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d csomag eltávolítandó/újratelepítendő"
++msgstr[1] "%d csomag eltávolítandó/újratelepítendő"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d csomag eltávolítandó/szinkronizálandó"
++msgstr[1] "%d csomag eltávolítandó/szinkronizálandó"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Nincs érvényes al-parancs a következőhöz: %s"
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -66716,33 +69874,25 @@ index db7c07f..52a3fba 100644
 -msgstr ""
 -"Egy másik alkalmazás jelenleg használja a yum zárolást; várakozás annak "
 -"kilépésére..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Nincs olvasási/végrehajtási jogosultság a jelenlegi könyvtárban, továbblépés ide: /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Nincs getcwd() jogosultság a jelenlegi könyvtárban, továbblépés ide: /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
 -msgstr ""
-+msgstr "Nem sikerült lezárni; kilépés..."
-+
-+#: ../yummain.py:134
-+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:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Nincs getcwd() jogosultság a jelenlegi könyvtárban, továbblépés ide: /"
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Függőségek megállapítása"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -66752,7 +69902,7 @@ index db7c07f..52a3fba 100644
 +msgstr "Az ön tranzakciója mentve, újra futtathatja a következővel:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -66792,7 +69942,7 @@ index db7c07f..52a3fba 100644
  msgstr "Tag: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "A(z) %s át lett konvertálva telepítéshez"
@@ -66849,7 +69999,7 @@ index db7c07f..52a3fba 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "A(z) %s nevű csomag szolgáltatásának módja: %s"
-@@ -2117,1042 +2195,1069 @@ msgstr "A(z) %s nevű csomag szolgáltatásának módja: %s"
+@@ -2117,1042 +2318,1140 @@ 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 :(
@@ -66861,45 +70011,55 @@ index db7c07f..52a3fba 100644
 +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:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Nem található frissítési útvonal a következőhöz: %s. A hiba ezen követelményből ered: %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Frissítés a következőhöz: %s. Nem javítja a követelményt: %s!"
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -66908,7 +70068,7 @@ index db7c07f..52a3fba 100644
 +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:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -66916,81 +70076,81 @@ index db7c07f..52a3fba 100644
 +msgstr "A lehetséges %s nevű csomag már újabb verzióval szerepel a tranzakcióban."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Siker - üres tranzakció"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Folyamat újraindítása"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Függőségkezelő folyamat végetért"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Siker - függőségek megoldva"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, 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:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "Jobb architektúra a következőben: %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "A(z) %s már újabb, mint a(z) %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -67001,25 +70161,25 @@ index db7c07f..52a3fba 100644
 +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:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "gyakori forrásrpm %s és %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "minimum szükséges: %d"
@@ -67027,41 +70187,46 @@ index db7c07f..52a3fba 100644
 +msgstr "provides vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Nyertes: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "minimum szükséges: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Vesztes(ezzel: %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Legjobb sorrend: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Nem olvasható tároló kihagyása: %s"
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -67070,113 +70235,118 @@ index db7c07f..52a3fba 100644
 +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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "a bővítmények már betöltődtek"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Helyi RPMDB beolvasása"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Tárolók csomagjainak előkészítése"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Frissítési objektum létrehozása"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Csoport metaadatok beszerzése"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Nem sikerült megszerezni a csoport fájlt a tárolóhoz: %s"
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Nincsenek elérhető csoportok egy tárolóban sem"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "pkgtags metaadatok beszerzése"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, 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:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "További fájllista információk importálása"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -67186,26 +70356,60 @@ index db7c07f..52a3fba 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Szükségtelen függőségek keresése"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
 -msgstr ""
 +msgstr "Védett multilib verzió: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr "Multilib verzióból adódó hiba található. Ez gyakran azt jeleneti, hogy\na probléma gyökere máshol van, a multilib verzió ellenőrzés csak\nrámutat hiba létezésére. Pl.:\n\n1. Egy frissítés a(z) %(name)s csomaghoz nem talál egy függőséget,\namit egy másik megkövetel. A yum ezt a(z) %(name)s csomag régebbi\nváltozatának a telepítésével próbálja orvosolni az eltérő architektúrához.\nHa ön kizárja a rossz architektúrát, a yum meg fogja mondani a hiba\ngyökerét (mely csomag mit követel meg). Újra megpróbálhatja a telepítést\naz --exclude %(name)s.otherarch ... paraméterekkel. Ezzel egy\nhibaüzenethez jutunk el, ami rámutat a hiba gyökerére.\n\n2. Önnek több %(name)s nevű csomagja telepítve van különböző\narchitektúrákkal, viszont a yum csak az egyiknek a frissítését látja.\nHa önnek már nincs szüksége mindegyik architektúrára, akkor\neltávolíthatja az egyiket, melynél hiányoznak a frissítések, 
 így\nminden működni fog újra.\n\n3. Önnek több verzióval van telepítve a(z) %(name)s nevű csomagja.\nHasználhatja a \"yum check\" parancsot ezen hibák megjelenítésére.\n\n...továbbá használhatja a --setopt=protected_multilib=false kapcsolót\nezen ellenőrzés kihagyásához, habár ez szinte sosem javítja meg a hibás\nműködést, inkább csak tovább ront a helyzeten.\n\n"
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -67215,14 +70419,14 @@ index db7c07f..52a3fba 100644
 +msgstr "\nAz alábbi csomagok ki lettek hagyva függőségi problémák miatt:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s a következőből: %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -67231,22 +70435,22 @@ index db7c07f..52a3fba 100644
 +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:1524
++#: ../yum/__init__.py:1560
  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:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "követelmények hiányoznak"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "konfliktusokat teremtett"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -67254,18 +70458,18 @@ index db7c07f..52a3fba 100644
 +msgstr "Figyelem: scriptlet vagy egyéb nem végzetes hiba adódott a tranzakció során."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "A tranzakció nem indítható:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Tranzakció futtatása meghiúsult."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "A következő tranzakció-fájl eltávolítása meghiúsult: %s"
@@ -67273,7 +70477,7 @@ index db7c07f..52a3fba 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
 -msgstr ""
@@ -67286,7 +70490,7 @@ index db7c07f..52a3fba 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
 -msgstr ""
@@ -67307,32 +70511,32 @@ index db7c07f..52a3fba 100644
  
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "A zárolás feloldása nem lehetséges: %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, 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"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -67343,17 +70547,17 @@ index db7c07f..52a3fba 100644
 +msgstr "A csomag nem egyezik a várt letöltéssel. Ajánlott futtatni az alábbi parancsot:\nyum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Ellenőrzőösszeg végrehajtása nem lehetséges"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "A csomag nem egyezik az ellenőrzőösszeggel"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -67362,7 +70566,7 @@ index db7c07f..52a3fba 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "helyi másolat használata a következőhöz: %s"
@@ -67377,14 +70581,18 @@ index db7c07f..52a3fba 100644
 -"Nincs elég hely a letöltési könyvtárban: %s\n"
 -"    * szabad    %s\n"
 -"    * szükséges %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "kilépés a --downloadonly kapcsoló miatt"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "A fejléc nem teljes."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -67394,55 +70602,55 @@ index db7c07f..52a3fba 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, 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:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "A következő csomag nincs aláírva: %s"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Nem távolítható el: %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s eltávolítva"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, 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:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s fájl %s eltávolította"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s fájl eltávolítva"
@@ -67452,19 +70660,19 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d %s fájl eltávolítva"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -67474,7 +70682,7 @@ index db7c07f..52a3fba 100644
 +msgstr "A searchPackages() parancs már nem lesz elérhető a későbbi Yum verziókban.\nKérjük, inkább használja a searchGenerator() parancsot helyette.\n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "%d csomag keresése"
@@ -67484,151 +70692,167 @@ index db7c07f..52a3fba 100644
 +msgstr[1] "%d csomag keresése"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "A következő csomag keresése: %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "Keresés fájlbejegyzésekben"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "Keresés ellátási bejegyzésekben"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "Nincs %s nevű csoport"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "%s csomag átugrása a(z) %s csoportból"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-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 have any packages to install."
++msgstr "Figyelem: A(z) %s nevű csoport nem tartalmaz telepíthető csomagokat."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
 -msgstr ""
 +msgstr "A(z) %s csoportnak %u feltételes csomagja van, amelyek lehet, hogy telepítésre kerülnek."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "A(z) %s csoport kihagyása a következő környezetből: %s"
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, 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:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Figyelem: A(z) %s Környezeti Csoport nem létezik."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Csomag: %s - nem használható a co-install telepítése a következővel: %s"
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Semmi sem lett megadva telepítésnek"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, 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"
-+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
 -#, python-format
 -msgid "No Match for argument: %s"
 -msgstr "Nincs találat a következő argumentumra: %s"
--
++msgstr "Virtuális szolgáltatása vagy fájlszolgáltatás ellenőrzése a következőre: %s"
+ 
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Nincsenek elérhető csomagok telepítésre"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -67639,7 +70863,7 @@ index db7c07f..52a3fba 100644
 +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:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -67648,13 +70872,13 @@ index db7c07f..52a3fba 100644
 +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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -67664,14 +70888,14 @@ index db7c07f..52a3fba 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
@@ -67679,35 +70903,35 @@ index db7c07f..52a3fba 100644
 +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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Nincs találat a következő argumentumra: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Nincs frissítendő csomag az alábbira: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -67718,37 +70942,37 @@ index db7c07f..52a3fba 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nem található csomag eltávolításra"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Nincs eltávolítandó csomag az alábbira: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "A futó kernel kihagyása: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, 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:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "%s felülvizsgálata: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
 -msgstr ""
@@ -67756,7 +70980,7 @@ index db7c07f..52a3fba 100644
 +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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -67766,7 +70990,7 @@ index db7c07f..52a3fba 100644
 +msgstr "Nem lehet a(z) %s csomagot hozzáadni a tranzakcióhoz. Nincs kompatibilis architektúra: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -67775,7 +70999,7 @@ index db7c07f..52a3fba 100644
 +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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -67786,7 +71010,7 @@ index db7c07f..52a3fba 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -67795,42 +71019,42 @@ index db7c07f..52a3fba 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "%s kizárása"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s megjelölése telepítésre"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, 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:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -67838,80 +71062,80 @@ index db7c07f..52a3fba 100644
 +msgstr "Probléma az újratelepítésnél: nem található %s nevű csomag telepítéshez"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Nincsenek elérhető csomagok visszaállításhoz"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Visszaállítás meghiúsult: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Sikertelen frissítés: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "GPG kulcs beszerzése a következőből: %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, 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:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -67926,7 +71150,7 @@ index db7c07f..52a3fba 100644
 +msgstr "A(z) %s kulcs importálása 0x%s:\n Felhasználó: \"%s\"\n Ujjlenyomat: %s\n Csomag       : %s (%s)\n Származás  : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -67938,7 +71162,7 @@ index db7c07f..52a3fba 100644
 +" From       : %s"
 +msgstr "A(z) %s kulcs importálása 0x%s:\n Felhasználó: \"%s\"\n Ujjlenyomat: %s\n Származás  : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -67949,30 +71173,30 @@ index db7c07f..52a3fba 100644
 +msgstr "\n\n\nSikertelen csomag: %s\nGPG kulcsok beállításai: %s\n"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "A kulcs importálása sikeres"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Nem lett telepítve egyetlen kulcs sem"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -67983,20 +71207,20 @@ index db7c07f..52a3fba 100644
 +msgstr "A GPG kulcsok a(z) \"%s\" nevű tárolóhoz már telepítve vannak, de nem jók ehhez a csomaghoz.\nKérjük, ellenőrizze, hogy az URL címek helyesen vannak-e megadva ezen tárolóhoz."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nem"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Igen"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -68007,7 +71231,7 @@ index db7c07f..52a3fba 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\nCA Kulcs: %s\nSikertelen tároló: %s\nGPG kulcsok beállításai: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, 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)"
@@ -68015,20 +71239,20 @@ index db7c07f..52a3fba 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "A kulcs importálása meghiúsult"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "%s kulcs importálása sikertelen"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -68039,129 +71263,131 @@ index db7c07f..52a3fba 100644
 +msgstr "A GPG kulcsok a(z) \"%s\" nevű tárolóhoz már telepítve vannak, de nem jók.\nKérjük, ellenőrizze, hogy az URL címek helyesen vannak-e megadva ezen tárolóhoz."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Nem található megfelelő tükörszerver."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  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:5762
++#: ../yum/__init__.py:6229
  #, 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:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Tranzakció teszt hibák: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
 -msgstr ""
-+msgstr "Az rpmdb verziója nem egyezik a mentett tranzakció verziójával, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "rpmdb ver eltér a mentett tranzakció verziójától,"
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " kihagyva, ahogy kértük."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr "megszakítás."
- 
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 +msgstr "A tranzakció elemek, tranzakció-viszonyok hiányoznak, vagy a ts feltehetően megváltozott,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 -msgstr ""
 +msgstr " átugorva, ahogy kérte. Szükséges a redepsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s már el van végezve, nem eltávolítható."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "A következő revdeps elemzése: %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s revdep felhaszáló által lett telepítve: %s"
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "A(z) %s telepítése szükséges egy csomaghoz."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "Nem található felhasználó által telepített revdep: %s"
@@ -68263,7 +71489,7 @@ index db7c07f..52a3fba 100644
  #, 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 +3266,19 @@ msgstr "%s ellátja a következőt: %s, de nem található"
+@@ -3161,6 +3460,23 @@ msgstr "%s ellátja a következőt: %s, de nem található"
  msgid "Repackaging"
  msgstr "Újracsomagolás"
  
@@ -68272,7 +71498,7 @@ index db7c07f..52a3fba 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Ellenőrzés: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -68280,10 +71506,14 @@ index db7c07f..52a3fba 100644
 +"    * needed %s"
 +msgstr "Nincs elég hely a letöltési könyvtárban: %s\n    * szabad    %s\n    * szükséges %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Ez nem az általunk letölteni kívánt csomag."
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3173,9 +3291,7 @@ msgstr "RPM %s md5 ellenőrzése hibát mutat"
+@@ -3173,9 +3489,7 @@ msgstr "RPM %s md5 ellenőrzése hibát mutat"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -68294,23 +71524,23 @@ index db7c07f..52a3fba 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3191,5 +3307,3 @@ msgstr "Sérült Fejléc %s"
+@@ -3191,5 +3505,3 @@ msgstr "Sérült Fejléc %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Hiba a következő rpm megnyitásánál: %s - hiba: %s"
 -
 -
 diff --git a/po/id.po b/po/id.po
-index 2fbdf46..697d746 100644
+index 2fbdf46..1feb897 100644
 --- a/po/id.po
 +++ b/po/id.po
-@@ -2,1477 +2,1569 @@
+@@ -2,1477 +2,1646 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
 +# Translators:
 +# Henkie Prabancono <henkie.prabancono at gmail.com>, 2013.
-+# Muhammad Panji <sumodirjo at gmail.com>, 2012.
++# Muhammad Panji <sumodirjo at gmail.com>, 2012-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -68320,9 +71550,9 @@ index 2fbdf46..697d746 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Indonesian (http://www.transifex.net/projects/p/yum/team/id/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2013-01-02 18:40+0000\n"
-+"Last-Translator: Henkie Prabancono <henkie.prabancono at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-21 21:49+0000\n"
++"Last-Translator: Muhammad Panji <sumodirjo at gmail.com>\n"
 +"Language-Team: Indonesian (http://www.transifex.com/projects/p/yum/language/id/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -68332,7 +71562,7 @@ index 2fbdf46..697d746 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
 -msgstr ""
 +msgstr "Sedang memperbarui"
@@ -68345,35 +71575,35 @@ index 2fbdf46..697d746 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
  #: ../yum/rpmtrans.py:78
  msgid "Installing"
 -msgstr ""
 +msgstr "Sedang melakukan instalasi"
  
 -#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
 -msgstr ""
 +msgstr "Telah usang"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
 -msgstr ""
 +msgstr "Telah diperbarui"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  msgid "Erased"
 -msgstr ""
 +msgstr "Telah 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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
 -msgstr ""
 +msgstr "Telah dilakukan instalasi"
@@ -68405,7 +71635,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Telah dihapus: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
 -msgstr ""
 +msgstr "Sedang menghapus"
@@ -68417,80 +71647,80 @@ index 2fbdf46..697d746 100644
 +msgstr "Pembersihan"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
 -msgstr ""
 +msgstr "Perintah \"%s\" telah didefinisikan sebelumnya"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
 -msgstr ""
 +msgstr "Sedang Menyiapkan repositori"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
 -msgstr ""
 +msgstr "Sedang membaca metadata dari repositori yang ada di arsip lokal"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
 -msgstr ""
 +msgstr "Kesalahan pada konfigurasi: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
 -msgstr ""
 +msgstr "Kesalahan pada Opsi-opsi: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
 -msgstr ""
 +msgstr "  Telah dilakukan instalasi: %s-%s pada %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
 -msgstr ""
 +msgstr "  Telah dibangun di    : %s pada %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
 -msgstr ""
 +msgstr "  Telah di-commit: %s pada %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
 -msgstr ""
 +msgstr "Anda perlu menambahkan beberapa perintah"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
 -msgstr ""
 +msgstr "Tidak terdapat perintah seperti yang Anda maksudkan: %s. Silakan mencoba menggunakan %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
 -msgstr ""
 +msgstr "Kebutuhan Disk:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -68500,94 +71730,115 @@ index 2fbdf46..697d746 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
 -msgstr ""
 +msgstr "Ringkasan kesalahan\n-------------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Tidak mampu membuat berkas lock, keluar"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Saat ini, aplikasi lain sedang mengunci penggunaan yum; bisa dikonfigurasikan untuk dilepas dengan cara exit_on_lock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
 +msgstr "Mencoba untuk menjalankan transaksi, namun tidak ada yang bisa dijalankan. Keluar."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " mengabaikan, sesuai dengan permintaan."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " menggugurkan."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
 -msgstr ""
 +msgstr "Keluar karena perintah pengguna"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
 -msgstr ""
 +msgstr "Mengunduh Paket:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
 -msgstr ""
 +msgstr "Kesalahan dalam pengunduhan paket-paket:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Menjalankan Pengujian Transaksi"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
 -msgstr ""
 +msgstr "KESAHALAHAN Anda perlu meng-update rpm untuk mengatasi:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "KESALAHAN pada pengujian transaksi vs depsolve:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
 -msgstr ""
 +msgstr "RPM perlu diperbarui"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
 -msgstr ""
 +msgstr "Mohon untuk melaporkan kesalahan pada %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
 -msgstr ""
 +msgstr "Menjalankan pengujian transaksi"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
 -msgstr ""
 +msgstr "Kesalahan pemeriksaan Transaksi:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
 -msgstr ""
 +msgstr "Pengujian Transaksi telah Berhasil"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
 -msgstr ""
 +msgstr "Menjalankan Transaksi"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -68595,20 +71846,20 @@ index 2fbdf46..697d746 100644
 +msgstr "Menolak untuk secara otomatis meng-impor kunci-kunci ketika dijalankan tanpa pengawasan. Gunakan \"-y\" untuk mengabaikan persyaratan."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
 -msgstr ""
 +msgstr "  * Mungkin yang Anda maksudkan adalah:"
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
 -msgstr ""
 +msgstr "Paket(s) %s%s%s tersedia, akan tetapi belum/tidak dilakukan instalasi."
  
 -#: ../cli.py:689 ../cli.py:722 ../cli.py:908
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
 -msgstr ""
@@ -68617,7 +71868,12 @@ index 2fbdf46..697d746 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Argumen %s salah %s."
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -68625,14 +71881,14 @@ index 2fbdf46..697d746 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
 -msgstr ""
 +msgstr "Tidak ada yang bisa dilakukan"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -68641,13 +71897,13 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "%d paket telah ditandai untuk diperbarui"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
 -msgstr ""
 +msgstr "Tidak ada paket yang ditandai untuk Pembaruan"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -68656,13 +71912,13 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "%d paket telah ditandai untuk Sinkronisasi Distribusi"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
 -msgstr ""
 +msgstr "Tidak ada paket yang telah ditandai untuk Sinkronisasi Distribusi"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -68671,7 +71927,7 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "%d paket telah ditandai untuk penghapusan"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
 -msgstr ""
 +msgstr "Tidak ada paket yang telah ditandai untuk penghapusan"
@@ -68679,21 +71935,21 @@ index 2fbdf46..697d746 100644
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "%d paket untuk di-downgrade"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
 -msgstr ""
 +msgstr " (dari %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
 -msgstr ""
@@ -68702,38 +71958,38 @@ index 2fbdf46..697d746 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "%d paket untuk diinstalasi ulang"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
 -msgstr ""
 +msgstr "Paket-paket tidak tersedia"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paket(s) yang akan di-instalasi"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "N/S telah sesuai: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  %sHanya cocok dengan%s nama dan ringkasan, gunakan \"search all\" untuk semuanya / everything."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -68741,34 +71997,34 @@ index 2fbdf46..697d746 100644
 +msgstr "  %sHanya cocok dengan%s nama lengkap dan ringkasan, gunakan \"search all\" untuk semuanya / everything."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
 -msgstr ""
 +msgstr "Cocok: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  %sHanya sesuai%s dengan nama dan ringkasan, gunakan \"search all\" untuk semuanya / everything."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
 -msgstr ""
 +msgstr "Peringatan: Tidak ditemukan kecocokan untuk: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
 -msgstr ""
 +msgstr "Kecocokan tidak ditemukan"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr ""
@@ -68778,133 +72034,154 @@ index 2fbdf46..697d746 100644
 +msgstr "Kesalahan: Tidak ditemukan paket-paket untuk:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
 -msgstr ""
 +msgstr "Pembersihan repos:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
 -msgstr ""
 +msgstr "Pembersihan Semuanya:"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
 -msgstr ""
 +msgstr "Pembersihan Headers"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
 -msgstr ""
 +msgstr "Pembersihan Paket-paket"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
 -msgstr ""
 +msgstr "Pembersihan metadata xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
 -msgstr ""
 +msgstr "Pembersihan cache database"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
 -msgstr ""
 +msgstr "Pembersihan cache dari metadata yang telah habis masa berlakunya"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
 -msgstr ""
 +msgstr "Pembersihan cache dari data rpmdb"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
--msgstr ""
 +msgstr "Pembersihan plugins"
++
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Peringatan: Tidak ada kecocokan grup: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
 -msgstr ""
 +msgstr "Grup-grup yang sudah di-instalasi:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Grup-grup bahasa yang telah di-instalasi:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
 -msgstr ""
 +msgstr "Grup-grup yang tersedia:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "Grup-grup bahasa yang tersedia:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
--msgstr ""
 +msgstr "Selesai dilakukan"
++
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
+ msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1859
  #, python-format
- msgid "Warning: Group %s does not exist."
--msgstr ""
-+msgstr "Peringatan: Grup %s tidak ada."
+-msgid "Warning: Group %s does not exist."
++msgid "Warning: Environment %s does not exist."
+ msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
++#, python-format
++msgid "Warning: Group %s does not exist."
++msgstr "Peringatan: Grup %s tidak ada."
++
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 +msgstr "Dalam grup yang diminta, tidak tersedia paket-paket untuk proses instalasi maupun pembaruan"
++
++#: ../cli.py:1885
++#, python-format
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] "%d paket untuk di-instalasi"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, python-format
 -msgid "%d Package(s) to Install"
--msgstr ""
-+msgid "%d package to Install"
-+msgid_plural "%d packages to Install"
-+msgstr[0] "%d paket untuk di-instalasi"
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
 -msgstr ""
 +msgstr "Tidak ada group bernama %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
 -msgstr ""
 +msgstr "Tidak ada paket-paket yang dihapus dari grup-grup"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -68913,14 +72190,14 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "%d paket untuk dihapus"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
 -msgstr ""
 +msgstr "Paket %s telah di-instalasi, lewati"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
 -msgstr ""
@@ -68928,27 +72205,27 @@ index 2fbdf46..697d746 100644
  
  #. we've not got any installed that match n or n+a
 -#: ../cli.py:1423
-+#: ../cli.py:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
 +msgstr "Tidak ada instalasi %s yang lain, ditambahkan pada daftar untuk potensi instalasi"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
 -msgstr ""
 +msgstr "Opsi-opsi plugins"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
 -msgstr ""
 +msgstr "Kesalahan pada baris perintah: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -68958,418 +72235,425 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\n%s: opsi %s membutuhkan sebuah argumen"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
 -msgstr ""
 +msgstr "--color bisa diambil dari salah satu: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot harus merupakan path absolut: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
 -msgstr ""
 +msgstr "menampilkan pesan bantuan ini kemudian keluar"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
 -msgstr ""
 +msgstr "bersikap toleran terhadap kesalahan-kesalahan"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
 -msgstr ""
 +msgstr "dijalankan keseluruhannya dari cache sistem, jangan melakukan pembaruan cache"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
 -msgstr ""
 +msgstr "lokasi berkas konfigurasi"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
 -msgstr ""
 +msgstr "batas waktu maksimum untuk menunggu perintah"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
 -msgstr ""
 +msgstr "level keluaran proses debug"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr ""
 +msgstr "tunjukkan duplikasi, dalam repos, dalam daftar/pencarian perintah"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
 -msgstr ""
 +msgstr "level keluaran untuk kesalahan yang mungkin terjadi"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
 -msgstr ""
 +msgstr "proses debug level keluaran untuk rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
 -msgstr ""
 +msgstr "operasi senyap :-d"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
 -msgstr ""
 +msgstr "operasi verbose"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
 -msgstr ""
 +msgstr "jawab ya untuk semua pertanyaan"
- 
--#: ../cli.py:1675
-+#: ../cli.py:2086
++
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "jawab tidak untuk semua pertanyaan"
-+
-+#: ../cli.py:2090
+ 
+-#: ../cli.py:1675
++#: ../cli.py:2312
  msgid "show Yum version and exit"
 -msgstr ""
 +msgstr "perlihatkan versi Yum dan kemudian keluar"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
 -msgstr ""
 +msgstr "atur lokasi instalasi root"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 +msgstr "aktifkan satu atau lebih repositori (diperbolehkan tanda \"*\" / wildcard)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 +msgstr "me-non-aktifkan satu atau lebih repositori (diperbolehkan tanda \"*\" / wildcard)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
 -msgstr ""
 +msgstr "mengecualikan paket(s) berdasarkan nama atau glob"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
 -msgstr ""
 +msgstr "me-non-aktifkan pengecualian dari \"main\", untuk sebuah repo atau untuk semuanya / everything"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
 -msgstr ""
 +msgstr "aktifkan proses-proses usang selama pembaruan"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
 -msgstr ""
 +msgstr "non-aktifkan plugins Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
 -msgstr ""
 +msgstr "non-aktifkan pemeriksaan tanda-tangan gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
 -msgstr ""
 +msgstr "non-aktifkan plugins berdasarkan nama"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
 -msgstr ""
 +msgstr "aktifkan plugins berdasarkan nama"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
 -msgstr ""
 +msgstr "abaikan paket-paket yang memiliki permasalahan-permasalahan depsolving"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
 -msgstr ""
 +msgstr "mengatur tata-cara penggunaan warna"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
 +msgstr "atur nilai dari $releasever dalam konfigurasi yum dan berkas-berkas repo"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
+ msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
- msgid "set arbitrary config and repo options"
--msgstr ""
-+msgstr "atur konfigurasi arbiter dan opsi-opsi repo"
+-msgid "set arbitrary config and repo options"
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../cli.py:2351
++msgid "set arbitrary config and repo options"
++msgstr "atur konfigurasi arbiter dan opsi-opsi repo"
++
++#: ../output.py:458
  msgid "Jan"
 -msgstr ""
 +msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
 -msgstr ""
 +msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
 -msgstr ""
 +msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
 -msgstr ""
 +msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
 -msgstr ""
 +msgstr "Mei"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
 -msgstr ""
 +msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
 -msgstr ""
 +msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
 -msgstr ""
 +msgstr "Agt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
 -msgstr ""
 +msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
 -msgstr ""
 +msgstr "Okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
 -msgstr ""
 +msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
 -msgstr ""
 +msgstr "Des"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
 -msgstr ""
 +msgstr "Mencoba mirror yang lain:"
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
 -msgstr ""
 +msgstr "Nama        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
 -msgstr ""
 +msgstr "Arsitektur  : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
 -msgstr ""
 +msgstr "Epoch       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
 -msgstr ""
 +msgstr "Versi       : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
 -msgstr ""
 +msgstr "Rilis       : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
 -msgstr ""
 +msgstr "Ukuran      : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
 -msgstr ""
 +msgstr "Repo        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
 -msgstr ""
 +msgstr "Asal repo   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
 -msgstr ""
 +msgstr "Committer   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
 -msgstr ""
 +msgstr "Waktu Commit: %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
 -msgstr ""
 +msgstr "Waktu pembangunan: %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
 -msgstr ""
 +msgstr "Install time: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
 -msgstr ""
 +msgstr "Telah di-instalasi oleh: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
 -msgstr ""
 +msgstr "Telah diubah oleh: %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
 -msgstr ""
 +msgstr "Ringkasan   :"
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
 -msgstr ""
 +msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
 -msgstr ""
 +msgstr "Lisensi     :"
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr ""
 +msgstr "Deskripsi   :"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
 -msgstr ""
 +msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
 -msgstr ""
 +msgstr "ya"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
 -msgstr ""
 +msgstr "t"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
 -msgstr ""
 +msgstr "tidak"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
 -msgstr ""
 +msgstr "Apakah semuanya sudah ok [y/T]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -69378,231 +72662,254 @@ index 2fbdf46..697d746 100644
 +msgstr "\nGrup : %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
 -msgstr ""
 +msgstr " Id-grup : %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
 -msgstr ""
 +msgstr " Deskripsi  : %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " Bahasa  : %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
 -msgstr ""
 +msgstr " Paket-paket Wajib:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
 -msgstr ""
 +msgstr " Paket-paket Default:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
 -msgstr ""
 +msgstr " Paket-paket opsional:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
--msgstr ""
 +msgstr " Paket-paket kondisional:"
- 
--#: ../output.py:814
-+#: ../output.py:1142
++
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Paket-paket ter-install:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
+ msgstr ""
+ 
+-#: ../output.py:814
++#: ../output.py:1158
  #, python-format
- msgid "package: %s"
--msgstr ""
-+msgstr "paket  : %s"
+-msgid "package: %s"
++msgid " Environment-Id: %s"
+ msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
- msgid "  No dependencies for this package"
--msgstr ""
-+msgstr "  Tidak ada ketergantungan terhadap paket ini"
+-msgid "  No dependencies for this package"
++#: ../output.py:1191
++msgid " Mandatory Groups:"
+ msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
++#, python-format
++msgid "package: %s"
++msgstr "paket  : %s"
++
++#: ../output.py:1219
++msgid "  No dependencies for this package"
++msgstr "  Tidak ada ketergantungan terhadap paket ini"
++
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
 -msgstr ""
 +msgstr "  ketergantungan: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
 -msgstr ""
 +msgstr "   Ketergantungan yang belum terpenuhi"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
 -msgstr ""
 +msgstr "Disesuaikan dari:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
 -msgstr ""
 +msgstr "Lisensi     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
 -msgstr ""
 +msgstr "Nama berkas : %s"
- 
--#: ../output.py:923
-+#: ../output.py:1298
++
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Menyediakan :"
-+
-+#: ../output.py:1301
+ 
+-#: ../output.py:923
++#: ../output.py:1363
  msgid "Other       : "
 -msgstr ""
 +msgstr "Lain-lain   :"
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
 -msgstr ""
 +msgstr "Terdapat sebuah kesalahan dalam penghitungan ukuran total"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
 -msgstr ""
 +msgstr "Ukuran total: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
 -msgstr ""
 +msgstr "Ukuran unduhan total: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
 -msgstr ""
 +msgstr "Ukuran yang ter-install: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
 -msgstr ""
 +msgstr "Terdapat sebuah kesalahan dalam penghitungan ukuran total"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
 -msgstr ""
 +msgstr "Melakukan instalasi ulang"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
 -msgstr ""
 +msgstr "Melakukan downgrade"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
 -msgstr ""
 +msgstr "Melakukan instalasi untuk ketergantungan"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
 -msgstr ""
 +msgstr "Melakukan pembaruan untuk ketergantungan"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
 -msgstr ""
 +msgstr "Melakukan penghapusan untuk ketergantungan"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
 -msgstr ""
 +msgstr "Diabaikan (masalah-masalah ketergantungan)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
 -msgstr ""
 +msgstr "Tidak di-instalasi"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Tidak tersedia"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
 +msgstr[0] "Paket"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
 -msgstr ""
 +msgstr "Arsitektur"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
 -msgstr ""
 +msgstr "Versi"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
 -msgstr ""
 +msgstr "Repositori"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
 -msgstr ""
 +msgstr "Ukuran"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
 -msgstr ""
 +msgstr "   menggantikan %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -69615,7 +72922,7 @@ index 2fbdf46..697d746 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalasi"
  
@@ -69623,7 +72930,7 @@ index 2fbdf46..697d746 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
  
@@ -69631,7 +72938,7 @@ index 2fbdf46..697d746 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Hapus"
  
@@ -69639,7 +72946,7 @@ index 2fbdf46..697d746 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Instalasi ulang"
  
@@ -69647,54 +72954,54 @@ index 2fbdf46..697d746 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr ""
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Paket-paket yang tergantung"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
 -msgstr ""
 +msgstr "Telah dihapus"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
 -msgstr ""
 +msgstr "Ketergantungan telah Dihapus"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
 -msgstr ""
 +msgstr "Ketergantungan telah di-instalasi"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
 -msgstr ""
 +msgstr "Ketergantungan telah diperbarui"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
 -msgstr ""
 +msgstr "Telah digantikan"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
 -msgstr ""
 +msgstr "Gagal"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
 -msgstr ""
 +msgstr "dua"
@@ -69704,7 +73011,7 @@ index 2fbdf46..697d746 100644
  #. to exit.
  #. Where "interupt (ctrl-c) again" and "two" are highlighted.
 -#: ../output.py:1271
-+#: ../output.py:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -69714,273 +73021,273 @@ index 2fbdf46..697d746 100644
 +msgstr "\n Unduhan saat ini telah dibatalkan, %sinterupsi dengan (ctrl-c) lagi%s dalam waktu %s%s%s detik \nuntuk keluar.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
 -msgstr ""
 +msgstr "interupsi oleh pengguna"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
 -msgstr ""
 +msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
 -msgstr ""
 +msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
 -msgstr ""
 +msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
 -msgstr ""
 +msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
 -msgstr ""
 +msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
 -msgstr ""
 +msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
 -msgstr ""
 +msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
 -msgstr ""
 +msgstr "<unset>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
 -msgstr ""
 +msgstr "Sistem"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
 +msgstr "Mengabaikan transaksi gabungan %d hingga %d, karena tumpang-tindih satu sama lain"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Tanpa transaksi-transaksi"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
 -msgstr ""
 +msgstr "IDs transaksi buruk, atau paket(s), diberikan"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Baris perintah"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
 -msgstr ""
 +msgstr "Login pengguna"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
 -msgstr ""
 +msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
 -msgstr ""
 +msgstr "Tanggal dan Jam"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
 -msgstr ""
 +msgstr "Aksi(s)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
 -msgstr ""
 +msgstr "Diubah"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
 -msgstr ""
 +msgstr "Tidak diberikan ID transaksi"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
 -msgstr ""
 +msgstr "Diberikan ID transaksi yang keliru"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
 -msgstr ""
 +msgstr "ID transaksi belum diberikan"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
 -msgstr ""
 +msgstr "Ditemukan lebih dari satu buah ID transaksi!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
 -msgstr ""
 +msgstr "Tidak diberikan ID transaksi maupun paket"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
 -msgstr ""
 +msgstr "Telah di-downgrade"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
 -msgstr ""
 +msgstr "Lebih tua"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
 -msgstr ""
 +msgstr "Lebih baru"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
 -msgstr ""
 +msgstr "ID Transaksi   :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
 -msgstr ""
 +msgstr "Awal mula      :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
 -msgstr ""
 +msgstr "Awal rpmdb     :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u detik)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u menit)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u jam)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u hari)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
 -msgstr ""
 +msgstr "Akhir waktu    :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
 -msgstr ""
 +msgstr "Akhir rpmdb    :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
 -msgstr ""
 +msgstr "Pengguna       :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
 -msgstr ""
 +msgstr "Kode-balik     :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
 -msgstr ""
 +msgstr "Digugurkan"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Kegagalan-kegagalan:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
 -msgstr ""
 +msgstr "Kegagalan:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
 -msgstr ""
 +msgstr "Sukses"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
 -msgstr ""
 +msgstr "Baris Perintah :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
 -msgstr ""
@@ -69988,59 +73295,59 @@ index 2fbdf46..697d746 100644
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
 -msgstr ""
 +msgstr "Tansaksi dilakukan dengan :"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
 -msgstr ""
 +msgstr "Paket-paket yang diubah:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
 -msgstr ""
 +msgstr "Paket-paket yang diabaikan:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
 -msgstr ""
 +msgstr "Permasalahan-permasalahan Rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
 -msgstr ""
 +msgstr "Keluaran Scriplet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
 -msgstr ""
-+msgstr "Kesalahan-kesalahan:"
- 
+-
 -#: ../output.py:1837 ../output.py:1838
 -msgid "Install"
 -msgstr ""
--
++msgstr "Kesalahan-kesalahan:"
+ 
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
 -msgstr ""
 +msgstr "Dep-Install"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
 -msgstr ""
 +msgstr "Akan usang"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
 -msgstr ""
 -
@@ -70054,253 +73361,253 @@ index 2fbdf46..697d746 100644
 +msgstr "Hapus"
  
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
 -msgstr ""
 +msgstr "Perbarui"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
 -msgstr ""
 +msgstr "Waktu"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
 -msgstr ""
 +msgstr "1 hari terakhir"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
 -msgstr ""
 +msgstr "1 minggu terakhir"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
 -msgstr ""
 +msgstr "2 minggu terakhir"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
 -msgstr ""
 +msgstr "3 bulan terakhir"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
 -msgstr ""
 +msgstr "6 bulan terakhir"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
 -msgstr ""
 +msgstr "1 tahun terakhir"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
 -msgstr ""
 +msgstr "Selama satu tahun yang lalu"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
 -msgstr ""
 +msgstr "Tidak ditemukan transaksi %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
 -msgstr ""
 +msgstr "ID Transaksi  :"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
 -msgstr ""
 +msgstr "Sejarah informasi tambahan yang tersedia:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
 -msgstr ""
 +msgstr "%s: Tidak ada data tambahan yang ditemukan dengan nama ini"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paket          :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Status         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Ukuran         :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Dibangun pada host:"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Dibangun pada waktu:"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Dipaketkan oleh:"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Vendor         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Lisensi        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "RPM Sumber     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Jam commit     :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Pelaku commit  :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Alasan         :"
-+
-+#: ../output.py:2647
-+msgid "From repo      :"
-+msgstr "Asal repo      :"
  
 -#: ../output.py:2106
-+#: ../output.py:2651
++#: ../output.py:2714
++msgid "From repo      :"
++msgstr "Asal repo      :"
++
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Telah di-instalasi oleh:"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Telah diubah oleh: %s"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
 -msgstr ""
 +msgstr "telah di-instalasi"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "sebuah pembaruan"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
 -msgstr ""
 +msgstr "dihapus"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
 -msgstr ""
 +msgstr "telah dilakukan instalasi ulang"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "sebuah downgrade"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "akan usang"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
 -msgstr ""
 +msgstr "telah diperbarui"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
 -msgstr ""
 +msgstr "telah usang"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
 -msgstr ""
 +msgstr "---> Paket %s.%s %s:%s-%s akan %s"
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
 -msgstr ""
 +msgstr "--> Menjalankan pengujian transaksi"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 +msgstr "--> Mengulangi resolusi ketergantungan dengan peubahan-peubahan baru"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
 -msgstr ""
 +msgstr "--> Resolusi ketergantungan telah diselesaikan"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
 -msgstr ""
 +msgstr "--> Mem-proses ketergantungan: %s untuk paket: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
--msgstr ""
-+msgstr "---> Paket dipertahankan: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
+ msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
 -msgstr ""
 +msgstr "--> Ketergantungan tidak terselesaikan: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
 -msgstr ""
 +msgstr "Paket  : %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -70309,7 +73616,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\n    Membutuhkan: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -70318,7 +73625,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -70327,7 +73634,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -70336,127 +73643,127 @@ index 2fbdf46..697d746 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
 -msgstr ""
 +msgstr "Telah diperbarui Oleh"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
 -msgstr ""
 +msgstr "Telah di-downgrade Oleh"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
 -msgstr ""
 +msgstr "Telah di-usang-kan Oleh"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
 -msgstr ""
 +msgstr "Tersedia"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
 -msgstr ""
 +msgstr "--> Memproses Konflik  : %s konflik %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 +msgstr "--> Sedang melakukan populasi satuan transaksi dengan paket-paket terpilih. Mohon ditunggu."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
 +msgstr "---> Sedang melakukan pengunduhan header %s untuk digabungkan ke dalam satuan transaksi."
-+
+ 
+-#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Melakukan verifikasi"
- 
--#: ../utils.py:99
-+#: ../utils.py:129
++
++#: ../utils.py:123
  msgid "Running"
 -msgstr ""
 +msgstr "Sedang menjalankan"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
 -msgstr ""
 +msgstr "Sedang tidur"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
 -msgstr ""
 +msgstr "Tidak bisa di-interupsi"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
 -msgstr ""
 +msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
 -msgstr ""
 +msgstr "Trace/Dihentikan"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
 -msgstr ""
 +msgstr "Tidak dikenal"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
 -msgstr ""
 +msgstr "  Aplikasi yang lain adalah: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
 -msgstr ""
 +msgstr "  Aplikas yang lain adalah: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
 -msgstr ""
 +msgstr "    Memory : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
 -msgstr ""
 +msgstr "    Telah dimulai: %s - %s yang lalu"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
 -msgstr ""
 +msgstr "    Status : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -70465,7 +73772,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\nKeluar, digagalkan oleh pengguna"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -70474,65 +73781,63 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\nKeluar, karena Broken Pipe"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
  "\n"
  "%s"
 -msgstr ""
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
-+msgstr "Saat ini, aplikasi lain sedang mengunci penggunaan yum; bisa dikonfigurasikan untuk dilepas dengan cara exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
 -msgstr ""
 +msgstr "PluginExit Kesalahan: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
 -msgstr ""
 +msgstr "Kesalahan Yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
 -msgstr ""
 +msgstr "Kesalahan: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
 -msgstr ""
 +msgstr " Anda dapat mencoba untuk menggunakan --skip-broken untuk menyelesaikan permasalahan yang ada"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
  msgid " You could try running: rpm -Va --nofiles --nodigest"
 -msgstr ""
 +msgstr " Anda dapat mencoba untuk menjalankan: rpm -Va --nofiles --nodigest"
  
 -#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
 -msgstr ""
 +msgstr "Kesalahan(s) tidak dikenal: Kode Exit: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -70540,7 +73845,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\nKetergantungan-ketergantungan telah Diselesaikan"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
 -msgstr ""
 +msgstr "Terselesaikan!"
@@ -70560,7 +73865,7 @@ index 2fbdf46..697d746 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1487,1584 +1579,1718 @@ msgid ""
+@@ -1487,1584 +1656,1836 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -70578,63 +73883,82 @@ index 2fbdf46..697d746 100644
 +#: ../yumcommands.py:96
  #, python-format
  msgid "Error: Need to pass a list of pkgs to %s"
--msgstr ""
 +msgstr "Kesalahan: Diperlukan untuk melewatkan daftar paket menuju %s"
++
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
+ msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
- msgid "Error: Need an item to match"
--msgstr ""
-+msgstr "Kesalahan: Diperlukan sebuah item yang cocok"
+-msgid "Error: Need an item to match"
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
+ msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
- msgid "Error: Need a group or list of groups"
--msgstr ""
-+msgstr "Kesalahan: Diperlukan sebuah grup ataupun daftar grup-grup"
+-msgid "Error: Need a group or list of groups"
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
+ msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:147
  #, python-format
- msgid "Error: clean requires an option: %s"
--msgstr ""
-+msgstr "Kesalahan: pembersihan memerlukan sebuah opsi: %s"
+-msgid "Error: clean requires an option: %s"
++msgid "Error: Repo %s is not enabled"
+ msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:164
++msgid "Error: Need an item to match"
++msgstr "Kesalahan: Diperlukan sebuah item yang cocok"
++
++#: ../yumcommands.py:178
++msgid "Error: Need a group or list of groups"
++msgstr "Kesalahan: Diperlukan sebuah grup ataupun daftar grup-grup"
++
++#: ../yumcommands.py:195
++#, python-format
++msgid "Error: clean requires an option: %s"
++msgstr "Kesalahan: pembersihan memerlukan sebuah opsi: %s"
++
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
 -msgstr ""
 +msgstr "Kesalahan: argumen yang digunakan untuk pembersihan, keliru: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
 -msgstr ""
 +msgstr "Tidak ada argumen untuk shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
 -msgstr ""
 +msgstr "Nama berkas telah dilewatkan menuju shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
 +msgstr "Tidak tersedia beerkas %s yang diberikan sebagai argumen kepada shell."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
 -msgstr ""
 +msgstr "Kesalahan: lebih dari satu berkas diberikan sebagai argumen kepada shell."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -70643,132 +73967,132 @@ index 2fbdf46..697d746 100644
 +msgstr "Tidak terdapat repo yang aktif.\n Jalankan \"yum repolist all\" untuk melihat repo yang Anda miliki.\n Anda dapat mengaktifkan repo dengan menjalankan perintah yum-config-manager --enable <repo>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
 -msgstr ""
 +msgstr "PAKET....."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
 -msgstr ""
 +msgstr "Melakukan instalasi sebuah paket atau sekumpulan paket pada sistem yang Anda miliki"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Instalasi"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
 -msgstr ""
 +msgstr "[PAKET.....]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
 -msgstr ""
 +msgstr "Perbarui sebuah paket atau sekumpulan paket pada sistem Anda"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Pembaruan"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 +msgstr "Sinkronisasi paket-paket terinstalasi menuju versi terbaru yang tersedia"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Sinkronisasi Distribusi"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
 -msgstr ""
 +msgstr "Menampilkan detail sebuah paket atau grup dari paket-paket"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
 -msgstr ""
 +msgstr "Paket-paket yang telah ter-instalasi"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
 -msgstr ""
 +msgstr "Paket-paket yang Tersedia"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
 -msgstr ""
 +msgstr "Paket-paket Tambahan"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
 -msgstr ""
 +msgstr "Paket-paket yang telah Diperbarui"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
 -msgstr ""
 +msgstr "Paket-paket yang akan usang"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
 -msgstr ""
 +msgstr "Paket-paket yang baru saja Ditambahkan"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
 -msgstr ""
 +msgstr "Tidak ada kecocokan paket-paket dengan daftar yang ada"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
 -msgstr ""
 +msgstr "Daftar sebuah paket atau grup-grup dari paket-paket"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
 -msgstr ""
 +msgstr "Menghapus sebuah paket atau sekumpulan paket dari sistem Anda"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Penghapusan"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Menampilkan, atau menggunakan, informasi dari grup-grup"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Grup"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
 -msgstr ""
 +msgstr "Tidak ada grup-grup dimana perintah dijalankan"
@@ -70780,7 +74104,7 @@ index 2fbdf46..697d746 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr ""
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Sub-perintah grup-grup yang keliru, gunakan: %s."
@@ -70788,91 +74112,91 @@ index 2fbdf46..697d746 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr ""
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Tidak terdapat file dari grup-grup yang sudah ter-instalasi."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr ""
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Anda tidak memiliki akses terhadap DB grup-grup."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
 -msgstr ""
 +msgstr "Menghasilkan cache dari metadata"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
 -msgstr ""
 +msgstr "Membuat cache dari berkas-berkas untuk semua berkas metadata."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
 -msgstr ""
 +msgstr "Akan memakan waktu cukup lama, tergantung dari kecepatan yang dimiliki oleh komputer ini"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
 -msgstr ""
 +msgstr "Cache dari Metadata telah Dibuat"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
 -msgstr ""
 +msgstr "Menghapus data yang sudah di-cache"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
 -msgstr ""
 +msgstr "Mencari paket apa yang disediakan oleh nilai yang sudah diberikan"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
 -msgstr ""
 +msgstr "Memeriksan ketersediaan paket yang terbarui"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
 -msgstr ""
 +msgstr "Mencari detail paket untuk string yang sudah diberikan"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
 -msgstr ""
 +msgstr "Pencarian Paket-paket:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
 -msgstr ""
 +msgstr "Pembaruan paket-paket juga memasukkan kondisi usang"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Upgrade"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
 -msgstr ""
 +msgstr "Instalasi sebuah RPM lokal"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
 -msgstr ""
 -
@@ -70882,178 +74206,178 @@ index 2fbdf46..697d746 100644
 +msgstr "Menyiapkan Proses Paket Lokal"
  
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
 -msgstr ""
 +msgstr "Mencari Paket-paket untuk Ketergantungan:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
 -msgstr ""
 +msgstr "Menjalankan yum shell interaktif"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
 -msgstr ""
 +msgstr "Menyiapkan Yum Shell"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
 -msgstr ""
 +msgstr "Daftar ketergantungan dari sebuah paket"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
 -msgstr ""
 +msgstr "Mencari ketergantungan:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
 -msgstr ""
 +msgstr "Menampilkan repositori perangkat lunak terkonfigurasi"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
 -msgstr ""
 +msgstr "diaktifkan"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
 -msgstr ""
 +msgstr "di-non-aktifkan"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
 -msgstr ""
 +msgstr "Id-repo      :"
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
 -msgstr ""
 +msgstr "Nama-repo    :"
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
 -msgstr ""
 +msgstr "Status-repo  :"
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
 -msgstr ""
 +msgstr "Revisi-repo  :"
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
 -msgstr ""
 +msgstr "Label-repo   :"
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
 -msgstr ""
 +msgstr "Label-distro-repo:"
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
 -msgstr ""
 +msgstr "Repo-terbarui:"
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
 -msgstr ""
 +msgstr "Paket-repo   :"
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
 -msgstr ""
 +msgstr "Ukuran-repo  :"
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
 -msgstr ""
 +msgstr "Baseurl-repo :"
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
 -msgstr ""
 +msgstr "Metalink-repo:"
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
 -msgstr ""
 +msgstr "  Terbarui   :"
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
 -msgstr ""
 +msgstr "Mirror-repo  :"
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
 -msgstr ""
 +msgstr "Tak pernah (terakhir: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
 -msgstr ""
 +msgstr "Instan (terakhir: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
 -msgstr ""
 +msgstr "%s detik(s) (terakhir: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
 -msgstr ""
 +msgstr "Repo-kadaluwarsa:"
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
 -msgstr ""
 +msgstr "Repo-terkecuali:"
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
 -msgstr ""
 +msgstr "Repo-termasuk:"
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
 -msgstr ""
 +msgstr "Repo-terkecualikan:"
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Namafile-repo:"
@@ -71061,38 +74385,38 @@ index 2fbdf46..697d746 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
 -msgstr ""
 +msgstr "id repo"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
 -msgstr ""
 +msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
 -msgstr ""
 +msgstr "nama repo"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
 -msgstr ""
 +msgstr "Menampilkan sebuah penggunaan pesan"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
 -msgstr ""
 +msgstr "Tidak tersedia bantuan untuk %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -71101,7 +74425,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\nalias-alias: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -71110,167 +74434,198 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Instalasi Ulang"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
 -msgstr ""
 +msgstr "instalasi ulang sebuah paket"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
 -msgstr ""
 +msgstr "Menyiapkan Proses Downgrade"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
 -msgstr ""
 +msgstr "downgrade sebuah paket"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
 -msgstr ""
 +msgstr "Menampilkan sebuah versi dari mesin dan/atau repo-repo yang tersedia."
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
 -msgstr ""
 +msgstr " Versi yum dari grup-grup:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
 -msgstr ""
 +msgstr " Grup    :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
 -msgstr ""
 +msgstr " Paket-paket:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
 -msgstr ""
 +msgstr "Ter-instalasi:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
 -msgstr ""
 +msgstr "Grup-Terinstalasi:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
 -msgstr ""
 +msgstr "Tersedia :"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
 -msgstr ""
 +msgstr "Grup-Tersedia  :"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
 -msgstr ""
 +msgstr "Menampilkan, atau menggunakan, sejarah transaksi"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transaksi-transaksi:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Awal mula   :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Akhir waktu :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Jumlah      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
- 
--#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2606
++
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
-+
-+#: ../yumcommands.py:2607
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  DB rpm :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  DB yum :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
 -msgstr ""
 +msgstr "Sub-perintah grup-grup yang keliru, gunakan: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
 -msgstr ""
 +msgstr "Anda tidak memiliki akses terhadap sejarah dari DB."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
 -msgstr ""
 +msgstr "Periksa permasalahan-permasalahan di dalam rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "memuat subuah transaksi yang tersimpan pada nama berkas"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Tidak tersimpan transaksi untuk berkas yang telah ditentukan."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "memuat transaksi dari %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
 +msgstr "Transaksi dimuat dari %s dengan anggota %s"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d paket akan diupdate"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d akan dihapus/instalasi ulang"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
+ msgstr ""
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -71283,34 +74638,26 @@ index 2fbdf46..697d746 100644
 -msgid ""
 -"Another app is currently holding the yum lock; waiting for it to exit..."
 -msgstr ""
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Tidak ada akses untuk baca/eksekusi pada direktori saat ini, dipindahkan menuju /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Tidak ada akses getcwd() pada direktori saat ini, dipindahkan menuju /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
 -msgstr ""
-+msgstr "Tidak mampu membuat berkas lock, keluar"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Saat ini, aplikasi lain sedang mengunci penggunaan yum; menunggu aplikasi tersebut keluar dari lock..."
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Tidak ada akses getcwd() pada direktori saat ini, dipindahkan menuju /"
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
 -msgstr ""
 +msgstr "Sedang menyelesaikan Ketergantungan"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -71320,7 +74667,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Transaksi Anda telah disimpan, jalankan ulang transaksi dengan cara:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -71362,7 +74709,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Anggota: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
 -msgstr ""
@@ -71441,42 +74788,51 @@ index 2fbdf46..697d746 100644
 +msgstr "Mencoba memperbarui %s untuk menyelesaikan dep"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
 +msgstr "Tidak ditemukan path terbaru dari %s. Kegagalan!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:507
  #, python-format
- msgid "TSINFO: %s package requiring %s marked as erase"
--msgstr ""
-+msgstr "TSINFO: paket %s dibutuhkan %s dan telah ditandai untuk dihapus"
+-msgid "TSINFO: %s package requiring %s marked as erase"
++msgid "Update for %s. Doesn't fix requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:514
++#, python-format
++msgid "TSINFO: %s package requiring %s marked as erase"
++msgstr "TSINFO: paket %s dibutuhkan %s dan telah ditandai untuk dihapus"
++
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
 +msgstr "TSINFO: Pengusangan %s dengan %s untuk penyelesaian dep."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
 -msgstr ""
 +msgstr "TSINFO: Pembaruan %s untuk penyelesaian dep."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
 +msgstr "Tidak mampu menemukan pembaruan path untuk dep untuk: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
 -msgstr ""
@@ -71484,108 +74840,108 @@ index 2fbdf46..697d746 100644
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
 +msgstr "%s tersedia dalam paket-paket, namun telah terinstalasi, penghapusan."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
 +msgstr "Potensi penyelesaian paket %s memiliki instan lebih baru pada ts."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
 +msgstr "Potensi penyelesaian paket %s memiliki instan ter-instalasi yang lebih baru."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
 -msgstr ""
 +msgstr "%s telah berada pada ts, melewatkan yang ini"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
 -msgstr ""
 +msgstr "TSINFO: Penandaan %s sebagai update dari %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
 -msgstr ""
 +msgstr "TSINFO: Penandaan %s sebagai instalasi dari %s"
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
 -msgstr ""
 +msgstr "Sukses - transaksi kosong"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
 -msgstr ""
 +msgstr "Memulai kembali Loop"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
 -msgstr ""
 +msgstr "Proses Ketergantungan berakhir"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
 -msgstr ""
 +msgstr "Sukses - deps terselesaikan"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
 -msgstr ""
 +msgstr "Pemeriksaan deps untuk %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
 -msgstr ""
 +msgstr "pencarian %s sebagai sebuah kebutuhan dari %s"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
 -msgstr ""
 +msgstr "Menjalankan compare_providers() untuk %s"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
 -msgstr ""
 +msgstr "arch yang lebih baik, di dalam po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
 -msgstr ""
 +msgstr "%s obsoletes %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -71594,28 +74950,28 @@ index 2fbdf46..697d746 100644
 +msgstr "archdist dibandingan %s dengan %s pada %s\n  Terpilih: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
 -msgstr ""
 +msgstr "sourcerpm umum %s dan %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
 -msgstr ""
 +msgstr "paket dasar %s telah ter-instalasi untuk %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
 -msgstr ""
 +msgstr "prefiks umum dari %s diantara %s dan %s"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr ""
@@ -71623,179 +74979,187 @@ index 2fbdf46..697d746 100644
 +msgstr "menyediakan vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
 -msgstr ""
 +msgstr " Terpilih: %s"
-+
-+#: ../yum/depsolve.py:1532
+ 
+-#: ../yum/depsolve.py:1368
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "minimal dibutuhkan: %d"
- 
--#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1541
++
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
 -msgstr ""
 +msgstr " Terkalahkan(with %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
 -msgstr ""
 +msgstr "Urutan terbaik: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
--msgstr ""
 +msgstr "doConfigSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
++
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
+ msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
 -msgstr ""
 +msgstr "Repositori %r: Kesalahan parsing konfigurasi: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
 +msgstr "Nama repositori %r tidak terdapat di konfigurasi, menggunakan id"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
 -msgstr ""
 +msgstr "plugis telah di-inisiasi"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 +msgstr "doRpmDBSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
 -msgstr ""
 +msgstr "Melakukan pembacaan RPMDB lokal"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 +msgstr "doRepoSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 +msgstr "doSackSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
 -msgstr ""
 +msgstr "Menyiapkan Proses Sacks"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
 -msgstr ""
 +msgstr "obyek repo dari repo %s kekurangan sebuah metode _resetSack\n"
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
 -msgstr ""
 +msgstr "untuk itu, repo ini tidak dapat di-reset.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 +msgstr "doUpdateSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
 -msgstr ""
 +msgstr "Melakukan pembangunan obyek terbarui"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
 -msgstr ""
 +msgstr "doGroupSetup() akan dihilangkan dari versi berikutnya dari Yum.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
 -msgstr ""
 +msgstr "Mengambil metadata dari grup"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
--msgstr ""
 +msgstr "Melakukan penambahan berkas grup dari repositori: %s"
++
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
+ msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
 -msgstr ""
 +msgstr "Telah gagal melakukan penambahan berkas dari grup-grup untuk repositori: %s - %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
 -msgstr ""
 +msgstr "Grup-grup tidak Tersedia di dalam repositori manapun"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
 -msgstr ""
 +msgstr "Mengambil metadata dari pkgtags"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
 -msgstr ""
 +msgstr "Melakukan penambahan tags dari repositori: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
 -msgstr ""
 +msgstr "Telah gagal untuk menambah Pkg Tags untuk repositori: %s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
 -msgstr ""
 +msgstr "Meng-impor informasi tambahan dari daftar berkas"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
 -msgstr ""
 +msgstr "Program %s%s%s telah ditemukan di dalam paket yum-utils."
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -71803,27 +75167,60 @@ index 2fbdf46..697d746 100644
 +msgstr "Masih tersisa transaksi yang belum terselesaikan. Anda mungkin mempertimbangkan untuk menjalankan yum-complete-transaction terlebih dahulu, agar transaksi tersebut terselesaikan."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Melakukan pencarian sisa ketergantungan yang tidak diperlukan"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "Versi-versi multilib yang terproteksi: %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
 -msgstr ""
 +msgstr "Mencoba untuk menghapus \"%s\", yang terproteksi"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -71831,7 +75228,7 @@ index 2fbdf46..697d746 100644
 +msgstr "\nPaket-paket dilewati, dikarenakan permasalahan-permasalahan ketergantungan:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
 -msgstr ""
@@ -71839,52 +75236,52 @@ index 2fbdf46..697d746 100644
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
 +msgstr "** Ditemukan permasalahan rpmdb sebelumnya %d, keluaran dari 'yum check' adalah sebagai berikut:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
 -msgstr ""
 +msgstr "Peringatan: RPMDB telah diubah tanpa sepengetahuan yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
 -msgstr ""
 +msgstr "kebutuhan-kebutuhan yang dimaksud telah hilang"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
 -msgstr ""
 +msgstr "konflik telah di-instalasi"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
 +msgstr "Peringatan: scriptlet atau kesalahan tidak fatal lainnya telah terjadi selama transaksi."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
 -msgstr ""
 +msgstr "Transaksi tidak mampu dimulai:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
 -msgstr ""
 +msgstr "Tidak mampu menjalankan transaksi."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
 -msgstr ""
@@ -71893,7 +75290,7 @@ index 2fbdf46..697d746 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
 -msgstr ""
@@ -71905,7 +75302,7 @@ index 2fbdf46..697d746 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
 -msgstr ""
@@ -71913,7 +75310,7 @@ index 2fbdf46..697d746 100644
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr ""
@@ -71922,7 +75319,7 @@ index 2fbdf46..697d746 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr ""
@@ -71931,7 +75328,7 @@ index 2fbdf46..697d746 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 -msgstr ""
@@ -71941,7 +75338,7 @@ index 2fbdf46..697d746 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr ""
@@ -71949,7 +75346,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Tidak bisa memerikan apakah PID %s dalam kondisi aktif"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -71958,47 +75355,50 @@ index 2fbdf46..697d746 100644
 +msgstr "Paket tidak sesuai dengan maksud pengunduhan. Saran: jalankan yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
 -msgstr ""
 +msgstr "Tidak bisa melakukan checksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
 -msgstr ""
 +msgstr "Paket tidak sesuai dengan checksum"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
 +msgstr "paket gagal melakukan checksum, namun cache telah diaktifkan untuk %s"
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
 -msgstr ""
--
++msgstr "menggunakan salinan lokal dari %s"
+ 
 -#: ../yum/__init__.py:1991
 -#, python-format
 -msgid ""
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
-+msgstr "menggunakan salinan lokal dari %s"
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
  
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
 -msgstr ""
 +msgstr "Header belum komplit."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -72006,63 +75406,63 @@ index 2fbdf46..697d746 100644
 +msgstr "Header tidak berada dalam cache local, dan mode caching-only telah diaktifkan. Tidak bisa mengunduh %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
 -msgstr ""
 +msgstr "Kunci publik untuk %s belum ter-instalasi"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
 -msgstr ""
 +msgstr "Menemukan masalah di dalam membuka paket %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
 -msgstr ""
 +msgstr "Kunci publik untuk %s tidak bisa dipercaya"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
 -msgstr ""
 +msgstr "Paket %s belum ditandatangani"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
 -msgstr ""
 +msgstr "Tidak bisa menghapus %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
 -msgstr ""
 +msgstr "%s telah dihapus"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
 -msgstr ""
 +msgstr "Tidak bisa menghapus %s berkas %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
 -msgstr ""
 +msgstr "%s berkas %s telah dihapus"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -72071,21 +75471,21 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "berkas %d %s telah dihapus"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
 -msgstr ""
 +msgstr "Lebih dari satu kecocokan identik dalam sack untuk %s"
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
 -msgstr ""
 +msgstr "Tidak ada yang cocok %s.%s %s:%s-%s dari pembaruan"
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -72093,7 +75493,7 @@ index 2fbdf46..697d746 100644
 +msgstr "searchPackages() akan dihilangkan pada versi berikutnya dari Yum.                      Sebaiknya gunakan searchGenerator().\n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -72102,26 +75502,26 @@ index 2fbdf46..697d746 100644
 +msgstr[0] "Melakukan pencarian paket-paket %d"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
 -msgstr ""
 +msgstr "melakukan pencarian paket %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
 -msgstr ""
 +msgstr "melakukan pencarian di dalam entry berkas"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
 -msgstr ""
 +msgstr "melakukan pencarian di dalam entry-entry yang tersedia"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  msgid "No group data available for configured repositories"
 -msgstr ""
 +msgstr "Tidak tersedia data grup pada repositori terkonfigurasi"
@@ -72129,16 +75529,16 @@ index 2fbdf46..697d746 100644
 -#: ../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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
 -msgstr ""
 +msgstr "Nama grup %s tidak ada"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
 -msgstr ""
@@ -72146,83 +75546,96 @@ index 2fbdf46..697d746 100644
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Melewatkan paket %s dari grup %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
 -msgstr ""
 +msgstr "Melakukan penambahan paket %s dari grup %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
 -msgstr ""
 +msgstr "Tidak tersedia paket bernama %s untuk diinstalasi"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Peringatan: Grup %s tidak memiliki paket apapun."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
+ msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
 +msgstr "Grup %s memiliki paket kondisional %u, yang akan di-instalasi."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
 -msgstr ""
 +msgstr "Paket tuple %s tidak bisa ditemukan dalam packagesack"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
 -msgstr ""
 +msgstr "Paket tuple %s tidak bisa ditemukan dalam rpmdb"
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
 -msgstr ""
 +msgstr "Kekeliruan versi flag dari: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
--msgstr ""
 +msgstr "Tidak ditemukan Paket untuk %s"
++
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
+ msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
- msgid "Package Object was not a package object instance"
--msgstr ""
-+msgstr "Obyek Paket bukanlah sebuah obyek paket instan"
+-msgid "Package Object was not a package object instance"
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
+ msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4437
++msgid "Package Object was not a package object instance"
++msgstr "Obyek Paket bukanlah sebuah obyek paket instan"
++
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
 -msgstr ""
 +msgstr "Tidak ditentukan untuk instalasi"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
 -msgstr ""
@@ -72235,34 +75648,34 @@ index 2fbdf46..697d746 100644
 +msgstr "Melakukan pemeriksaan untuk penyedia virtual atau berkas-tersedia untuk %s"
  
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
 -msgstr ""
 +msgstr "Paket %s telah terinstalasi, namun tidak tersedia"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
 -msgstr ""
 +msgstr "Tidak tersedia paket untuk di-instalasi"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
 -msgstr ""
 +msgstr "Paket: %s - telah berada di dalam kumpulan transaksi"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
 -msgstr ""
 +msgstr "Paket %s yang telah usang oleh %s dimana telah ter-instalasi"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -72271,21 +75684,21 @@ index 2fbdf46..697d746 100644
 +msgstr "Paket %s telah diusangkan oleh %s, namun paket usang ini tidak menyediakan kebutuhan apapun"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
 +msgstr "Paket %s telah diusangkan oleh %s, mencoba untuk tetap melakukan instalasi %s"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
 -msgstr ""
 +msgstr "Paket %s telah ter-instalasi dan memiliki versi terbaru"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -72293,53 +75706,53 @@ index 2fbdf46..697d746 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
 -msgstr ""
 +msgstr "Melakukan pembaruan untuk semuanya"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
 +msgstr "Tidak melakukan Pembaruan untuk Paket yang sudah usang: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
 -msgstr ""
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Tidak ada kecocokan argumen: %s"
-+
-+#: ../yum/__init__.py:4431
+ 
+-#: ../yum/__init__.py:3838
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Tidak ada kecocokan paket untuk ditingkatkan: %s"
- 
--#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4477
++
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
 +msgstr "Paket telah usang: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
 -msgstr ""
 +msgstr "Tidak melakukan Pembaruan Paket yang sudah usang: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -72348,48 +75761,48 @@ index 2fbdf46..697d746 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr ""
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Tidak ada paket yang cocok untuk dihapus: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
 -msgstr ""
 +msgstr "Mengabaikan kernel yang sedang berjalan: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
 -msgstr ""
 +msgstr "Melakukan penghapusan %s dari transaksi"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
 -msgstr ""
 +msgstr "Tidak bisa membuka: %s. Dilewatkan."
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
 -msgstr ""
 +msgstr "Melakukan pemeriksaan %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
 -msgstr ""
 +msgstr "Tidak bisa melakukan localinstall deltarpm: %s. Dilewatkan."
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -72397,14 +75810,14 @@ index 2fbdf46..697d746 100644
 +msgstr "Tidak bisa menambah paket %s ke dalam transaksi. Arsitektur tidak sesuai: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
 +msgstr "Tidak bisa melakukan instalasi paket %s. Paket ini telah usang jika dibandingkan dengan paket %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -72413,7 +75826,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Paket %s tidak ter-instalasi, tidak bisa diperbarui. Jalankan yum install untuk tetap melakukan instalasi"
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -72422,101 +75835,101 @@ index 2fbdf46..697d746 100644
 +msgstr "Paket %s.%s tidak ter-instalasi, tidak bisa diperbarui. Jalankan yum install untuk tetap melakukan instalasi."
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
 -msgstr ""
 +msgstr "Mengeluarkan %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
 -msgstr ""
 +msgstr "Menandai %s untuk di-instalasi"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
 -msgstr ""
 +msgstr "Menandai %s sebagai pembaruan untuk %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
 -msgstr ""
 +msgstr "%s: tidak melakukan pembaruan terhadap paket yang sudah ter-instalasi"
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
 -msgstr ""
 +msgstr "Tidak bisa membuka berkas: %s. Dilewatkan."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 +msgstr "Permasalahan terjadi saat melakukan instalasi ulang: tidak ada paket yang cocok untuk dihapus"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
 +msgstr "Permasalahan terjadi saat melakukan instalasi ulang: tidak ada paket %s yang cocok untuk di-instalasi"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
 -msgstr ""
 +msgstr "Tidak tersedia paket untuk di-downgrade"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
 -msgstr ""
 +msgstr "Paket %s memperbolehkan instalasi ganda, dilewatkan"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
 -msgstr ""
 +msgstr "Tidak tersedia paket yang cocok dengan: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
 -msgstr ""
 +msgstr "Hanya pembaruan yang tersedia untuk paket: %s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
 -msgstr ""
 +msgstr "Gagal untuk downgrade: %s"
-+
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Gagal untuk upgrade: %s"
- 
--#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5265
++
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "Mendapatkan kembali kunci dari %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  msgid "GPG key retrieval failed: "
 -msgstr ""
 +msgstr "Pengambilan kunci GPG telah gagal:"
@@ -72524,34 +75937,34 @@ index 2fbdf46..697d746 100644
  #. 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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
 +msgstr "Tanda tangan kunci GPG pada kunci %s tidak cocok dengan Kunci CA untuk repo: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
 -msgstr ""
 +msgstr "Tanda tangan kunci GPG telah diverifikasi dengan Kunci CA"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
 -msgstr ""
 +msgstr "Kekeliruan Kunci GPG dari %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
 -msgstr ""
 +msgstr "Gagal melakukan parsing kunci GPG: kunci tidak memiliki nilai %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -72566,7 +75979,7 @@ index 2fbdf46..697d746 100644
 +msgstr "Melakukan impor %s kunci 0x%s:\n Idpengguna : \"%s\"\n Sidikjari  : %s\n Paket      : %s (%s)\n Dari       : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -72578,7 +75991,7 @@ index 2fbdf46..697d746 100644
 +" From       : %s"
 +msgstr "Melakukan impor %s kunci 0x%s:\n Idpengguna : \"%s\"\n Sidikjari  : %s\n Dari       : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -72589,33 +76002,33 @@ index 2fbdf46..697d746 100644
 +msgstr "\n\n\n Paket yang gagal adalah: %s\n Kunci-kunci GPG dikonfigurasikan sebagai: %s\n"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
 -msgstr ""
 +msgstr "Kunci GPG pada %s (0x%s) telah di-instalasi"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
 -msgstr ""
 +msgstr "Impor kunci telah gagal (code %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
 -msgstr ""
 +msgstr "Kunci telah sukses di-impor"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Tidak melakukan instalasi kunci apapun"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -72624,21 +76037,20 @@ index 2fbdf46..697d746 100644
 +msgstr "Kunci-kunci GPG yang ada dalam daftar repositori \"%s\" telah ter-instalasi, namun kunci-kunci yang ada tidak tepat diperuntukkan paket ini.\nPeriksa sekali lagi, URL kunci yang sesuai yang sudah dikonfigurasikan untuk repositori ini."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
 -msgstr ""
 +msgstr "Kunci yang di-import tidak bisa membantu, kunci keliru?"
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Tidak"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ya"
- 
--#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5475
++
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -72648,8 +76060,9 @@ index 2fbdf46..697d746 100644
 +" Failing repo is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Kunci CA: %s\n Repo yang gagal adalah: %s\n Kunci-kunci GPG dikonfigurasikan sebagai: %s\n"
-+
-+#: ../yum/__init__.py:5488
+ 
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
 -msgstr ""
@@ -72658,20 +76071,20 @@ index 2fbdf46..697d746 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr ""
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Kegagalan impor kunci %s"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
 -msgstr ""
 +msgstr "Tidak melakukan instalasi kunci apapun untuk repo %s"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -72680,138 +76093,138 @@ index 2fbdf46..697d746 100644
 +msgstr "Kunci-kunci GPG yang ada dalam daftar repositori \"%s\" telah ter-instalasi, namun kunci-kunci yang ada peruntukannya tidak tepat untuk paket ini.\nPeriksa sekali lagi, URL kunci yang sesuai yang sudah dikonfigurasikan untuk repositori ini."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
 -msgstr ""
 +msgstr "Tidak mampu menemukan mirror yang sesuai."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
 -msgstr ""
 +msgstr "Kesalahan-kesalahan telah terjadi ketika pengunduhan paket-paket."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
 -msgstr ""
 +msgstr "Mohon dilaporkan kesalahan ini pada %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
 -msgstr ""
 +msgstr "Kesalahan-kesalahan Uji Coba Transaksi:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
 -msgstr ""
 +msgstr "Tidak mampu mengatur cachedir: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +msgstr "Ketergantungan-ketergantungan belum terselesaikan. Tidak akan melakukan penyimpanan transaksi yang belum terselesaikan."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr ""
 +msgstr "Tidak bisa menyimpan file transaksi %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
 +msgstr "Tidak bisa mengakses/membaca transaksi tersimpan %s: %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
--msgstr ""
-+msgstr "rpmdb ver tidak sesuai dengan versi transaksi yang tersimpan,"
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " mengabaikan, sesuai dengan permintaan."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr " menggugurkan."
- 
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
 -msgstr ""
 +msgstr "tidak bisa menemukan tsflags, atau tsflags bukanlah integer."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
 -msgstr ""
 +msgstr "txmbr ditemukan dalam status terkini yang tidak dikenali: %s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
 -msgstr ""
 +msgstr "Tidak bisa menemukan txmbr: %s dalam status %s"
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
 -msgstr ""
 +msgstr "Tidak bisa menemukan txmbr: %s dari asal %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 +msgstr "Bagian-bagian Transaksi, relasi hilang atau ts telah dimodifikasi,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
--msgstr ""
 +msgstr " mengabaikan, sesuai permintaan. Anda harus melakukan redepsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s telah dikunjungi dan tidak bisa dihapus."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Memeriksa revdeps dari %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s telah revdep %s dimana di-instalasi oleh pengguna."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
+ msgstr ""
+ 
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s tidak memiliki revdeps yang di-instalasi oleh pengguna."
- 
++
  #. Mostly copied from YumOutput._outKeyValFill()
 -#: ../yum/plugins.py:209
 +#: ../yum/plugins.py:212
@@ -72926,7 +76339,6 @@ index 2fbdf46..697d746 100644
  
  #: ../yum/rpmtrans.py:80
  msgid "Repackaging"
--msgstr ""
 +msgstr "Mengulang pemaketan"
 +
 +#: ../yum/rpmtrans.py:149
@@ -72934,13 +76346,17 @@ index 2fbdf46..697d746 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verifikasi: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
 +"    * free   %s\n"
 +"    * needed %s"
 +msgstr "Kekurangan ruang pada direktori unduhan %s\n    * tersisa   %s\n    * yang dibutuhkan %s"
++
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
+ msgstr ""
  
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
@@ -72979,10 +76395,10 @@ index 2fbdf46..697d746 100644
 -
 +msgstr "Kesalahan didalam membuka rpm %s - kesalahan %s"
 diff --git a/po/id_ID.po b/po/id_ID.po
-index 964c239..aecbd5f 100644
+index 964c239..bff0196 100644
 --- a/po/id_ID.po
 +++ b/po/id_ID.po
-@@ -2,938 +2,957 @@
+@@ -2,938 +2,1040 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -72997,8 +76413,8 @@ index 964c239..aecbd5f 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -73009,7 +76425,7 @@ index 964c239..aecbd5f 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Memutakhirkan"
  
@@ -73020,31 +76436,31 @@ index 964c239..aecbd5f 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Termutakhirkan"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Terpasang"
  
@@ -73071,7 +76487,7 @@ index 964c239..aecbd5f 100644
  msgstr "Dihapus: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Menghapus"
  
@@ -73081,69 +76497,69 @@ index 964c239..aecbd5f 100644
  msgstr "Pembersihan"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Menyiapkan repositori"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Membaca metadata repositori dari berkas lokal"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Kesalahan Konfigurasi: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Kesalahan Opsi: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Terpasang: %s-%s di %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Anda perlu memberi beberapa perintah"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Persyaratan Disk:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -73153,101 +76569,122 @@ index 964c239..aecbd5f 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
++msgstr "Mencoba untuk menjalankan transaksi tetapi tidak ada yang harus dikerjakan. Keluar."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
+ msgstr ""
 -"Mencoba untuk menjalankan transaksi tetapi tidak ada yang harus dikerjakan. "
 -"Keluar."
-+msgstr "Mencoba untuk menjalankan transaksi tetapi tidak ada yang harus dikerjakan. Keluar."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Mengunduh Paket-paket:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Kesalahan Saat Mengunduh Paket-paket:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM perlu dimutakhirkan"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Laporkan kesalahan di %s ini"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Menjalankan Uji Transaksi"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Kesalahan Pengujian Transaksi:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Uji Transaksi Berhasil"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Menjalankan Transaksi"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Mungkin maksud Anda: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Tidak ada paket %s%s%s yang tersedia."
@@ -73255,7 +76692,12 @@ index 964c239..aecbd5f 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paket yang akan dipasang"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -73263,13 +76705,13 @@ index 964c239..aecbd5f 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Tak ada tindakan yang dilakukan"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paket telah ditandai untuk dimutakhirkan"
@@ -73278,12 +76720,12 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Tidak ada Paket yang ditandai untuk dimutakhirkan"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -73292,12 +76734,12 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paket ditandai untuk dihapus"
@@ -73306,27 +76748,27 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (dari %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Paket %s%s%s%s yang terpasang tidak tersedia."
@@ -73334,65 +76776,65 @@ index 964c239..aecbd5f 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paket yang akan dipasang ulang"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Tidak ada paket yang tersedia"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paket yang akan dipasang"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Cocok: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Peringatan: Tidak ada yang cocok: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Tidak ada yang cocok"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Tidak ada paket yang ditemukan untuk %s"
@@ -73402,94 +76844,114 @@ index 964c239..aecbd5f 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Membersihkan repo: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Membersihkan Semuanya"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Membersihkan Header"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Membersihkan Paket-paket"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Membersihkan metadata xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Membersihkan singgahan basis data"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Membersihkan metadata singgahan yang kadaluarsa"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Membersihkan data rpmdb yang disinggahkan"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Membersihkan pengaya"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Grup yang terpasang:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Grup yang Tersedia:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Selesai"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Peringatan: Grup %s tidak ada."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d Paket yang akan dipasang"
@@ -73498,18 +76960,24 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Tidak ada nama grup %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Tidak ada paket yang akan dihapus dari grup"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d Paket akan dihapus"
@@ -73518,37 +76986,37 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paket %s sudah diinstal, lewati"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opsi Pengaya"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Galat di perintah baris: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -73561,359 +77029,367 @@ index 964c239..aecbd5f 100644
 +msgstr "\n\n%s: opsi %s membutuhkan argumen"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "tampilkan pesan bantuan ini dan keluar"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "toleran terhadap kesalahan"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
 -msgstr ""
 -"jalankan sepenuhnya dari singgahan sistem, jangan memutakhirkan persinggahan"
 +msgstr "jalankan sepenuhnya dari singgahan sistem, jangan memutakhirkan persinggahan"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "lokasi berkas konfigurasi"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "waktu tunggu perintah maksimum"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "operasi senyap"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "jawab ya untuk semua pertanyaan"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "tampilkan versi Yum dan keluar"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"aktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
 +msgstr "aktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"nonaktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
 +msgstr "nonaktifkan satu atau lebih repositori (diperbolehkan menggunakan wildcard)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "nonaktifkan pengaya Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "nonaktifkan pemeriksaan tanda tangan gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "nonaktifkan pengaya berdasarkan nama"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "aktifkan pengaya berdasarkan nama"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mei"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Agu"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Des"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nama        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arst        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versi     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Rilis     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Ukuran        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repo        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Dari repo   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Waktu pemasangan: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Dipasang oleh: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Diubah oleh  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Ringkasan     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Lisensi     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Keterangan : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ya"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -73924,198 +77400,222 @@ index 964c239..aecbd5f 100644
 +msgstr "\nGrup: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " ID-Grup: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Deskripsi: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Paket-paket Wajib:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Paket-paket Opsional:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paket: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Lisensi     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Nama berkas    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Lainnya       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Ada kesalahan saat menghitung ukuran total pengunduhan"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Ukuran total: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Total ukuran pengunduhan: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Ukuran terpasang: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Ada kesalahan saat menghitung ukuran terpasang"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Memasang ulang"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Tidak terpasang"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paket"
 +msgid_plural "Packages"
 +msgstr[0] "Paket"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arst"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versi"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repositori"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Ukuran"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -74131,14 +77631,14 @@ index 964c239..aecbd5f 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Pasang   %5.5s Paket\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instal"
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
@@ -74146,7 +77646,7 @@ index 964c239..aecbd5f 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Hapus    %5.5s Paket\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr ""
  
@@ -74154,328 +77654,328 @@ index 964c239..aecbd5f 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Pasang Ulang %5.5s Paket\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Instal Ulang"
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Dihapus"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Ketergantungan Dihapus"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Ketergantungan Dipasang"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Ketergantungan Dimutakhirkan"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Diganti"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Gagal"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dua"
  
-@@ -941,7 +960,7 @@ msgstr "dua"
+@@ -941,7 +1043,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -949,543 +968,590 @@ msgid ""
+@@ -949,543 +1051,584 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "diinterupsi pengguna"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<unset>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistem"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Tanggal dan waktu"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Tindakan"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Diubah"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Tak ada ID transaksi yang diberikan"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Tidak ditemukan ID transaksi yang diberikan"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Ditemukan lebih dari satu ID transaksi!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Tidak ada ID transaksi, atau paket, yang diberikan"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Lebih Lama"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Lebih Baru"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ID Transaksi:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Waktu mulai     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Waktu selesai       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Pengguna           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Kode-Balikan    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Dibatalkan"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Kegagalan:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Sukses"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Perintah Baris   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transaksi dilakukan dengan:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Paket Diubah:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Paket Dilewati:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Permasalahan rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Keluaran scriptlet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -74484,17 +77984,17 @@ index 964c239..aecbd5f 100644
 -msgstr "Instal"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Hapus"
  
@@ -74507,224 +78007,225 @@ index 964c239..aecbd5f 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Mutakhirkan"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Waktu"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Hari terakhir"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Minggu lalu"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "2 minggu terakhir"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "3 bulan terakhir"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "6 bulan terakhir"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Setahun terakhir"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Lebih dari setahun yang lalu"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "terpasang"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "dihapus"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "dipasang ulang"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "termutakhirkan"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "usang"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Menjalankan pemeriksaan transaksi"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paket: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -74735,7 +78236,7 @@ index 964c239..aecbd5f 100644
 +msgstr "\n    Dibutuhkan: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -74746,7 +78247,7 @@ index 964c239..aecbd5f 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -74757,7 +78258,7 @@ index 964c239..aecbd5f 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -74768,38 +78269,38 @@ index 964c239..aecbd5f 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Dimutakhirkan Oleh"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Tersedia"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -74807,70 +78308,70 @@ index 964c239..aecbd5f 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Berjalan"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Tak dapat diinterupsi"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Tak diketahui"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Aplikasi lainnya adalah: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Aplikasi lainnya adalah: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memori : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Dijalankan: %s - %s yang lalu"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    State  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -74878,7 +78379,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -74886,7 +78387,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -74899,59 +78400,58 @@ index 964c239..aecbd5f 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Selesai!"
  
-@@ -1497,7 +1563,7 @@ msgstr ""
+@@ -1497,7 +1640,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -74960,7 +78460,7 @@ index 964c239..aecbd5f 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1514,454 +1580,488 @@ msgid ""
+@@ -1514,558 +1657,645 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -74977,51 +78477,71 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Nama berkas telah diteruskan ke shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -75033,112 +78553,112 @@ index 964c239..aecbd5f 100644
 +msgstr "Tidak ada repo yang aktif.\nJalankan \"yum repolist all\" untuk melihat repo apa yang Anda miliki.\nAnda dapat mengaktifkan repo dengan yum-config-manager --enable <repo>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKET..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Memasang paket di sistem Anda"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Menyiapkan Proses Pemasangan"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKET...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Memutakhirkan paket-paket di sistem Anda"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Menyiapkan Proses Pemutakhiran"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Paket Terpasang"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Paket Tersedia"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Paket Tambahan"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Paket Termutakhirkan"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Paket Usang"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Paket yang baru ditambah"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Tidak ada Paket yang cocok dalam daftar"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Daftar paket atau kelompok paket"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Hapus paket dari sistem Anda"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Menyiapkan Proses Penghapusan"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Menyiapkan Proses Grup"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr ""
  
@@ -75148,85 +78668,85 @@ index 964c239..aecbd5f 100644
 -
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instal RPM lokal"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Menyiapkan Proses Paket Lokal"
  
@@ -75235,183 +78755,183 @@ index 964c239..aecbd5f 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Pencarian Paket untuk Ketergantungan:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Jalankan shell yum interaktif"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Menyiapkan Shell Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Daftar ketergantungan paket"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Mencari ketergantungan: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Tampilkan repositori perangkat lunak yang terkonfigurasi"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "aktif"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "nonaktif"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "ID-Repo      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Nama-Repo    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Status-Repo  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Revisi-Repo: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Tag-Repo    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Ukuran-Repo    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Tak Pernah (terakhir: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -75419,7 +78939,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -75427,180 +78947,207 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Grup versi Yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grup   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Paket:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Terpasang:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Grup-Terpasang:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Tersedia"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Grup-Tersedia:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Tampilkan, atau gunakan, riwayat transaksi"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Anda tidak memiliki akses ke DB riwayat"
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Memeriksa masalah di rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1972,100 +2072,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -75609,7 +79156,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -75645,7 +79192,7 @@ index 964c239..aecbd5f 100644
  msgstr "Anggota: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s telah dikonversi untuk instalasi"
@@ -75702,7 +79249,7 @@ index 964c239..aecbd5f 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2073,991 +2183,1067 @@ msgstr ""
+@@ -2073,991 +2303,1138 @@ 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 :(
@@ -75713,130 +79260,140 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -75844,254 +79401,298 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -76099,7 +79700,7 @@ index 964c239..aecbd5f 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -76110,14 +79711,14 @@ index 964c239..aecbd5f 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -76125,7 +79726,7 @@ index 964c239..aecbd5f 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -76133,7 +79734,7 @@ index 964c239..aecbd5f 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -76142,14 +79743,14 @@ index 964c239..aecbd5f 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -76157,23 +79758,23 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -76184,70 +79785,73 @@ index 964c239..aecbd5f 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -76256,26 +79860,26 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -76284,111 +79888,127 @@ index 964c239..aecbd5f 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -76400,30 +80020,30 @@ index 964c239..aecbd5f 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -76431,123 +80051,123 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -76555,7 +80175,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -76563,118 +80183,118 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -76688,7 +80308,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -76700,7 +80320,7 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -76710,29 +80330,29 @@ index 964c239..aecbd5f 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -76740,20 +80360,20 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -76764,26 +80384,26 @@ index 964c239..aecbd5f 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -76791,117 +80411,121 @@ index 964c239..aecbd5f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -77001,7 +80625,7 @@ index 964c239..aecbd5f 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3066,6 +3252,19 @@ msgstr ""
+@@ -3066,6 +3443,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -77010,7 +80634,7 @@ index 964c239..aecbd5f 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -77018,25 +80642,29 @@ index 964c239..aecbd5f 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3094,5 +3293,3 @@ msgstr ""
+@@ -3094,5 +3488,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/it.po b/po/it.po
-index 44b6091..82e3427 100644
+index 44b6091..391f4ca 100644
 --- a/po/it.po
 +++ b/po/it.po
-@@ -2,943 +2,968 @@
+@@ -2,943 +2,1051 @@
  # 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-2012.
++# Guido Grazioli <guido.grazioli at gmail.com>, 2011-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -77046,8 +80674,8 @@ index 44b6091..82e3427 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Italian (http://www.transifex.net/projects/p/yum/team/it/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-09-11 16:25+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-20 23:34+0000\n"
 +"Last-Translator: Guido Grazioli <guido.grazioli at gmail.com>\n"
 +"Language-Team: Italian (http://www.transifex.com/projects/p/yum/language/it/)\n"
  "MIME-Version: 1.0\n"
@@ -77058,7 +80686,7 @@ index 44b6091..82e3427 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Aggiornamento"
  
@@ -77069,31 +80697,31 @@ index 44b6091..82e3427 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Aggiornato"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installato"
  
@@ -77120,7 +80748,7 @@ index 44b6091..82e3427 100644
  msgstr "Eliminato: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Rimozione in corso"
  
@@ -77130,69 +80758,69 @@ index 44b6091..82e3427 100644
  msgstr "Pulizia"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Comando \"%s\" già definito"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Settaggio repository"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Errore di configurazione: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Errore opzioni: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installato: %s-%s da %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Build    : %s su %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Committed: %s su %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "È necessario specificare un comando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "Comando sconosciuto: %s. Eseguire %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Requisiti disco:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr "  Servono almeno altri %dMB sul filesystem %s.\n"
@@ -77203,7 +80831,7 @@ index 44b6091..82e3427 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -77211,77 +80839,99 @@ index 44b6091..82e3427 100644
 -"Riepilogo errori\n"
 -"----------------\n"
 +msgstr "Riepilogo errori\n----------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Impossibile creare il file di lock; uscita"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Un'altra applicazione sta bloccando l'esecuzione di yum; arresto come configurato da exit_on_lock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "la versione futura di rpmdb non corrisponde alla versione della transazione salvata, "
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorato, come richiesto."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " esecuzione annullata."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Uscita richiesta dall'utente"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Download dei pacchetti:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Errore nel download dei pacchetti:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Esecuzione del controllo di transazione"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "ERRORE del controllo di transazione nei confronti di depsolve:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM deve essere aggiornato"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Riportare questo errore su %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Test di transazione in corso"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Errore nel controllo transazione:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Test di transazione eseguito con successo"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Transazione in corso"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -77291,18 +80941,18 @@ index 44b6091..82e3427 100644
 +msgstr "L'importazione automatica delle chiavi è disabilitata in modalità non interattiva.\nUsare \"-y\" per abilitarla."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Forse si intendeva: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Nessun pacchetto %s%s%s disponibile."
@@ -77310,7 +80960,12 @@ index 44b6091..82e3427 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Pacchetto(i) da installare"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Parametro per %s errato: %s."
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -77319,13 +80974,13 @@ index 44b6091..82e3427 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Niente da fare"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pacchetti marcati per l'aggiornamento"
@@ -77335,12 +80990,12 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetti marcati per l'aggiornamento"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Nessun pacchetto marcato per l'aggiornamento"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pacchetti marcati per la Distribution Synchronization"
@@ -77350,12 +81005,12 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetti marcati per la Distribution Synchronization"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Nessun pacchetto marcato per la Distribution Synchronization"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pacchetti marcati per la rimozione"
@@ -77365,14 +81020,14 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetto marcati per la rimozione"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -77380,13 +81035,13 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetti marcati per il downgrade"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (da %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Pacchetto installato %s%s%s%s non disponibile."
@@ -77394,7 +81049,7 @@ index 44b6091..82e3427 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Pacchetto(i) da reinstallare"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -77402,30 +81057,30 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetti da reinstallare"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nessun pacchetto specificato"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pacchetto(i) da installare"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "N/D trovati: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
 +msgstr "  Ricerca effettuata %ssolamente%s in nome e descrizione breve, usare \"search all\" per cercare in tutti i campi."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -77433,31 +81088,31 @@ index 44b6091..82e3427 100644
 +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:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Trovato: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
 +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:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Attenzione: Nessun pacchetto trovato per: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nessuna corrispondenza trovata"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nessun pacchetto trovato per %s"
@@ -77467,121 +81122,147 @@ index 44b6091..82e3427 100644
 +msgstr "Errore: Nessun pacchetto trovato per:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Pulizia dei repository:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Pulizia completa"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Pulizia header"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Pulizia pacchetti"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Pulizia metadati xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Pulizia cache database"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Pulizia metadati expire-cache"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Pulizia cache di rpmdb"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Pulizia plugin"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
 -msgstr ""
-+msgstr "Attenzione: nessun gruppo trovato per: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Gruppi environment installati:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Gruppi environment disponibili:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Gruppi installati:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Gruppi lingua installati:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Gruppi disponibili:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
 -msgstr ""
 +msgstr "Gruppi lingua disponibili:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Attenzione: nessun environment/gruppo trovato per: %s"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Fatto"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Attenzione: gruppo/environment %s non esiste."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Warning: Environment %s does non esiste."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Attenzione: Il gruppo %s non esiste."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Nessun pacchetto in alcun gruppo richiesto è disponibile per l'installazione o l'aggiornamento"
++
++#: ../cli.py:1885
++#, 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:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, 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"
++msgid "No Environment named %s exists"
++msgstr "L'Environment %s non esiste"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Non esiste nessun gruppo con nome %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Nessun pacchetto da rimuovere dai gruppi"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pacchetto(i) da eliminare"
@@ -77591,20 +81272,20 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d pacchetti da rimuovere"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Il pacchetto %s è già installato, verrà ignorato"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -77613,18 +81294,18 @@ index 44b6091..82e3427 100644
 +msgstr "Nessun altro %s installato, inserimento in lista per potenziale installazione"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opzioni plugin"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Errore di linea di comando: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -77637,355 +81318,363 @@ index 44b6091..82e3427 100644
 +msgstr "\n\n%s: l'opzione %s richiede un argomento"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot deve essere un percorso assoluto: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "mostra questo messaggio di aiuto ed esce"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "tollera gli errori"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "esegui esclusivamente in cache, senza aggiornarla"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "percorso del file di configurazione"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "tempo massimo di attesa comando"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "livello output di debug"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "livello output per gli errori"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "livello output di debug per rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "modalità silenziosa"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "mostra più messaggi di log"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "risponde si a tutte le domande"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "rispondi no a tutte le domande"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "mostra la versione di yum ed esce"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "imposta la root d'installazione"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "abilita uno o più repository (wildcard consentite)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "disabilita uno o più repository (wildcard consentite)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "esclude pacchetti per nome o glob"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "abilita l'elaborazione degli obsoleti durante l'aggiornamento"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "disabilita i plugin di Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "disabilita il controllo della firma gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "disabilita i plugin per nome"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "abilita i plugin per nome"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "ignora pacchetti con problemi di risoluzione dipendenze"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
 -msgstr "controlla se il colore è usato"
 +msgstr "imposta l'uso del colore"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "non aggiornare, scarica solamente"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "specifica una directory alternativa dove salvare i pacchetti"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "imposta configurazioni arbitrarie e opzioni dei repository"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Gen"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mag"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Giu"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Lug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Ago"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Set"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Ott"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dic"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Connessione ad un altro mirror in corso."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nome         : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arch         : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch        : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versione     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Rilascio     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Dimensione   : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repo         : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Dal repo     : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Committer    : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Data commit  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Data build   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Data inst.   : %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Installato da: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Modificato da: %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Sommario     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL          : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licenza      : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Descrizione  : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "s"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "si"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Procedere [s/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -77996,123 +81685,147 @@ index 44b6091..82e3427 100644
 +msgstr "\nGruppo: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Id-Gruppo: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Descrizione: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " Lingua: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Pacchetti necessari:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Pacchetti di default:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr "Pacchetti opzionali:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Pacchetti condizionali:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Pacchetti installati:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nGruppo Environment: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr " Environment-Id: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Gruppi obbligatori:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Gruppi opzionali:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Gruppi installati:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "pacchetto: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Nessuna dipendenza per questo pacchetto"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  dipendenze: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Dipendenza non soddisfatte"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Corrispondenza trovata in:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licenza     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Nome file   : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Fornisce    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Altro       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
 -msgstr ""
 -"Si è verificato un errore nel calcolo della dimensione totale di download"
 +msgstr "Si è verificato un errore nel calcolo della dimensione totale del download"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Dimensione totale: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Dimensione totale del download: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Dimensione installata: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
 -msgstr ""
 -"Si è verificato un errore nel calcolo della dimensione del pacchetto "
@@ -78120,48 +81833,48 @@ index 44b6091..82e3427 100644
 +msgstr "Si è verificato un errore nel calcolo della dimensione del pacchetto installato"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Reinstallazione"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Downgrade"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Installazioni per dipendenze"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Aggiornamenti per dipendenze"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Rimozioni per dipendenze"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Saltato (problemi di dipendenze)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Non installato"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Non disponibile"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Pacchetto"
 +msgid_plural "Packages"
@@ -78169,33 +81882,33 @@ index 44b6091..82e3427 100644
 +msgstr[1] "Pacchetto"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arch"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versione"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repository"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Dim."
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, 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:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -78211,7 +81924,7 @@ index 44b6091..82e3427 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Installa %5.5s pacchetti\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Install"
  
@@ -78219,7 +81932,7 @@ index 44b6091..82e3427 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Aggiorna %5.5s pacchetti\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
  
@@ -78227,7 +81940,7 @@ index 44b6091..82e3427 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Elimina %5.5s pacchetti\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Remove"
  
@@ -78235,7 +81948,7 @@ index 44b6091..82e3427 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Reinstalla %5.5s pacchetti\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Reinstall"
  
@@ -78243,58 +81956,58 @@ index 44b6091..82e3427 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Downgrade %5.5s pacchetti\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Pacchetto dipendente"
 +msgstr[1] "Pacchetti dipendenti"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Eliminato"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dipendenza rimossa"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dipendenza installata"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dipendenza aggiornata"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Sostituito"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Fallito"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "due"
  
-@@ -946,579 +971,610 @@ msgstr "due"
+@@ -946,579 +1054,604 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -78307,270 +82020,270 @@ index 44b6091..82e3427 100644
 +msgstr "\n Download interrotto, %spremi nuovamente (ctrl-c)%s entro %s%s%s secondi\nper uscire.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "interruzione utente"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Totale"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<non impostato>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistema"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Nessuna transazione"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "L'ID transazione, o il pacchetto specificato, non è corretto"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Linea di comando"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Utente loggato"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Data e ora"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Azione/i"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Modifiche"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "ID transazione non specificato"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "L'ID transazione specificato non è corretto"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "L'ID transazione specificato non è stato trovato"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Sono stati trovati ID transazione multipli!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "ID transazione o pacchetto non specificato"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Downgraded"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Meno recente"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Più recente"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ID transazione :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Ora inizio     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "rpmdb iniziale :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u secondi)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u minuti)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u ore)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u giorni)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Ora termine    :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "rpmdb finale   :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Utente         :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Return-Code    : "
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Interrotto"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Operazioni fallite:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Errore:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Completato"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Linea di comando :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transazione eseguita con:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Pacchetti modificati:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Pacchetti ignorati:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problemi di rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Output della scriptlet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Errori:"
  
@@ -78579,17 +82292,17 @@ index 44b6091..82e3427 100644
 -msgstr "Install"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Dep-Install"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Obsoleto"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Eliminato"
  
@@ -78602,230 +82315,232 @@ index 44b6091..82e3427 100644
 -msgstr "Downgrade"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Update"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Data"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Ultime 24 ore"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Ultima settimana"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Ultime 2 settimane"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Ultimi 3 mesi"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Ultimi 6 mesi"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Ultimi 12 mesi"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Più di un anno"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Transazione %s non trovata"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "ID transazione:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Informazioni addizionali sulla cronologia:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Pacchetto      :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Stato          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Dimensione     :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Build host     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Build time     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Packager       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Vendor         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licenza        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "RPM sorgente   :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Commit Time    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Committer      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Motivo         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Dal repository :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Installato da  :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Modficato da   :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installato"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "un aggiornamento"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "eliminato"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "reinstallato"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "un downgrade"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "reso obsoleto"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "aggiornato"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "reso obsoleto"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
 -msgstr ""
 +msgstr "---> Pacchetto %s.%s %s:%s-%s settato per essere %s"
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Esecuzione del controllo di transazione"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Riavvio della risoluzione delle dipendenze con i nuovi cambiamenti."
 +msgstr "--> Riavvio della risoluzione delle dipendenze con i nuovi cambiamenti."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Risoluzione delle dipendenze completata"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Elaborazione dipendenza: %s per il pacchetto: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Pacchetto mantenuto: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Pacchetto mantenuto: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Pacchetto mantenuto: %s per via di %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Dipendenza non risolta: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Pacchetto: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -78836,7 +82551,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n    Richiede: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -78847,7 +82562,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -78858,7 +82573,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -78869,33 +82584,33 @@ index 44b6091..82e3427 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Aggiornato da"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Downgraded da"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Reso obsoleto da"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Disponibile"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Analisi conflitto: %s va in conflitto con %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Inizializzazione della transazione con i pacchetti selezionati. "
@@ -78903,7 +82618,7 @@ index 44b6091..82e3427 100644
 +msgstr "--> Inizializzazione della transazione con i pacchetti selezionati. Attendere prego."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Download dell'header per includere %s nel set di transazione."
@@ -78911,70 +82626,70 @@ index 44b6091..82e3427 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verifica in corso"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "In esecuzione"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "In attesa"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Non interrompibile"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Traced/Interrotto"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Sconosciuto"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  L'altra applicazione è: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  L'altra applicazione è: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memoria : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Avviato: %s - %s fa"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Stato  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -78986,7 +82701,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n\nUscita forzata da utente"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -78998,7 +82713,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n\nUscita per broken pipe"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -79008,54 +82723,52 @@ index 44b6091..82e3427 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Un'altra applicazione sta bloccando l'esecuzione di yum; arresto come "
 -"configurato da exit_on_lock"
-+msgstr "Un'altra applicazione sta bloccando l'esecuzione di yum; arresto come configurato da exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Errore ritorno del plugin: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Errore di yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Errore: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Errore sconosciuto: Codice di uscita: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -79065,7 +82778,7 @@ index 44b6091..82e3427 100644
 +msgstr "\nDipendenze risolte"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Completo!"
  
@@ -79083,7 +82796,7 @@ index 44b6091..82e3427 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1533,585 +1589,604 @@ msgid ""
+@@ -1533,585 +1666,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -79117,51 +82830,71 @@ index 44b6091..82e3427 100644
  msgstr "Errore: occorre passare una lista di pkg a %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Errore: almeno due pacchetti sono richiesti per %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Errore: occorre passare il repoid. e un comando a %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Errore: occorre passare un singolo repoid. valido a %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Errore: il repository %s non è abilitato"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Errore: richiesto un elemento per testare il match"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  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:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Errore: il comando clean richiede l'opzione: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Errore: argomento per il comando clean non valido: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Nessun argomento per la shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Nome file passato alla shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -79173,112 +82906,112 @@ index 44b6091..82e3427 100644
 +msgstr "Non ci sono repository abilitati.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PACCHETTO..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Installa uno o più pacchetti nel sistema"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Impostazione processo di installazione"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PACCHETTO...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Aggiorna uno o più pacchetti nel sistema"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Impostazione processo di aggiornamento"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Sincronizza i pacchetti installati con le ultime versioni disponibili"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Impostazione processo di Distribution Synchronization"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Pacchetti installati"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Pacchetti disponibili"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Pacchetti extra"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Aggiornamenti disponibili"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Pacchetti resi obsoleti"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Pacchetti aggiunti di recente"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Nessun pacchetto presente in lista"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Elenca un pacchetto o un gruppo di pacchetti"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Elimina uno o più pacchetti dal sistema"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Impostazione processo di eliminazione"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Mostra o utilizza le informazioni dei gruppi"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Impostazione processo di gruppo"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Nessun gruppo sul quale eseguire il comando"
  
@@ -79289,7 +83022,7 @@ index 44b6091..82e3427 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Installa nel sistema i pacchetti di un gruppo"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Sottocomando di groups non corretto, usare: %s."
@@ -79297,82 +83030,82 @@ index 44b6091..82e3427 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Elimina dal sistema i pacchetti di un gruppo"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Non ci sono file groups installati."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Visualizza i dettagli di un gruppo di pacchetti"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Non si dispone dell'accesso al DB dei groups."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Genera la cache dei metadati"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Creazione dei file di cache per i metadati."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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"
 +msgstr "L'operazione impiegherà del tempo che dipende dalla velocità del computer"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Cache dei metadata creata"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Elimina i dati nella cache"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  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:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Controlla la disponibilità di aggiornamenti per i pacchetti"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Cerca il termine passato nei dettagli dei pacchetti"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Ricerca dei pacchetti: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Aggiorna i pacchetti tenendo conto degli obsoleti"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Impostazione processo di upgrade"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Installa un RPM in locale"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Impostazione processo per pacchetti in locale"
  
@@ -79381,150 +83114,150 @@ index 44b6091..82e3427 100644
 -msgstr "Determina quale pacchetto soddisfa la dipendenza specificata"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Ricerca dei pacchetti per le dipendenze:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Esegue una shell di yum interattiva"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Impostazione della shell di yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Elenca le dipendenze di un pacchetto"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Ricerca delle dipendenze: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Mostra i repository di software configurati"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "abilitato"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "disabilitato"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Id-Repo       : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Nome-Repo     : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Stato-Repo    : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Revisione-Repo: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tags     : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo-updated : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Repo-pkgs    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Dim.-Repo    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Aggiornato :"
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-mirrors : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Mai (ultimo: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Istantaneo (ultimo: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s secondi (ultimo: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Repo-expire  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-exclude : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-include :"
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repo-excluded: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Repo-filename: "
@@ -79532,33 +83265,33 @@ index 44b6091..82e3427 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "id repo"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "stato"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nome repo"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Mostra un'utile guida all'uso"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Nessun aiuto disponibile per %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -79570,7 +83303,7 @@ index 44b6091..82e3427 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -79582,151 +83315,186 @@ index 44b6091..82e3427 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Impostazione processo di reinstallazione"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "Reinstalla un pacchetto"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Impostazione processo di downgrade"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "Esegue il downgrade di un pacchetto"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Gruppi della versione di yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Gruppo  :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Pacchetti:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installato:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Group-Installed:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Disponibile:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Group-Available:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Visualizza e gestisci la cronologia delle transazioni"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transazioni :"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Ora inizio  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Ora fine    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Conteggio   :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Sotto comando per history non valido, usare: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Non si dispone dell'accesso alla cronologia."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Identifica gli errori nell'rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "carica una transazione salvata da un file"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Nessun file specificato per la transazione salvata."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "caricamento transazione da %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
 -msgstr ""
 +msgstr "Transazione caricata da %s con %s membri"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Semplice metodo per scambiare pacchetti, senza usare la shell"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Tratta un repo. come un gruppo di pacchetti, così da poterli installare/rimuovere tutti"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d pacchetto da aggiornare"
++msgstr[1] "%d pacchetti da aggiornare"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d pacchetto da rimuovere/reinstallare"
++msgstr[1] "%d pacchetti da rimuovere/reinstallare"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d pacchetto da rimuovere/sincronizzare"
++msgstr[1] "%d pacchetti da rimuovere/sincronizzare"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Sottocomando di %s non valido"
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -79741,33 +83509,25 @@ index 44b6091..82e3427 100644
 -msgstr ""
 -"Un'altra applicazione sta bloccando l'esecuzione di yum; in attesa che "
 -"esca..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Non si hanno i diritti di read/execute nella directory corrente, viene usata /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Nessun accesso getcwd() nella directory corrente, spostamento su /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
 -msgstr ""
-+msgstr "Impossibile creare il file di lock; uscita"
-+
-+#: ../yummain.py:134
-+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:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Nessun accesso getcwd() nella directory corrente, spostamento su /"
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Risoluzione dipendenze"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -79777,7 +83537,7 @@ index 44b6091..82e3427 100644
 +msgstr "La transazione è stata salvata, per eseguirla nuovamente:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -79818,7 +83578,7 @@ index 44b6091..82e3427 100644
  msgstr "Membro: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s convertito in installazione"
@@ -79875,7 +83635,7 @@ index 44b6091..82e3427 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Modalità per il pacchetto che fornisce %s: %s"
-@@ -2119,1036 +2194,1069 @@ msgstr "Modalità per il pacchetto che fornisce %s: %s"
+@@ -2119,1036 +2317,1140 @@ 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 :(
@@ -79887,20 +83647,30 @@ index 44b6091..82e3427 100644
 +msgstr "Tentativo di aggiornare %s per risolvere una dipendenza"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
 -msgstr ""
 +msgstr "Nessun percorso di aggiornamento trovato per %s. Aggiornamento fallito!"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Nessun percorso di aggiornamento trovato per %s. La causa è il requisito: %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Aggiornamento per %s. Non soddisfa il requisito: %s!"
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -79909,13 +83679,13 @@ index 44b6091..82e3427 100644
 +msgstr "TSINFO: Verrà reso obsoleto %s sostituendolo con %s per risolvere una dipendenza."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: Aggiornamento di %s per risolvere dip."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
@@ -79923,20 +83693,20 @@ index 44b6091..82e3427 100644
 +msgstr "Impossibile trovare un percorso di aggiornamento delle dipendenze per: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -79944,7 +83714,7 @@ index 44b6091..82e3427 100644
 +msgstr "Il potenziale pacchetto risolutore %s ha già una più recente istanza in ts."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -79953,75 +83723,75 @@ index 44b6091..82e3427 100644
 +msgstr "Il potenziale pacchetto risolutore %s ha una più recente istanza già installata."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Successo - transazione vuota"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Riavvio del ciclo"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Elaborazione delle dipendenze terminata"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Successo - dipendenze risolte"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Controllo delle dipendenze per %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "migliore architettura in po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s rende obsoleto %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -80032,25 +83802,25 @@ index 44b6091..82e3427 100644
 +msgstr "archdist ha comparato %s a %s su %s\n  Vincitore: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "sourcerpm comune %s e %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr " richiede almeno: %d"
@@ -80058,41 +83828,46 @@ index 44b6091..82e3427 100644
 +msgstr "fornisce vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Vincitore: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr " richiede almeno: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Perdente (con %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Ordine migliore: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Il repository non leggibile %s viene tralasciato"
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -80100,113 +83875,118 @@ index 44b6091..82e3427 100644
 +msgstr "Nella configurazione non è presente il nome del repo %r, viene usato l'id"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "plugin già inizializzati"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Lettura del RPMDB locale"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Impostazione dei Package Sack"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "quindi questo repository non può essere resettato.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Costruzione oggetto aggiornamenti"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Scaricamento metadati del gruppo"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Aggiunta file group dal repository: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Errore durante lo scaricamento del file group per il repository: %s"
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Nessun gruppo disponibile in alcun repository"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Scaricamento metadati pkgtags"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Aggiunta tag dal repository: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Import di informazioni addizionali sulla lista di file"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -80216,26 +83996,60 @@ index 44b6091..82e3427 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
 +msgstr "--> Ricerca di dipendenze non necessarie"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
 -msgstr ""
 +msgstr "Versioni multilib protette: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr "Trovati problemi di versioni multilib. Questo significa spesso che la causa si trova altrove e il controllo delle versioni multilib \nsta solo facendo emergere il problema. Esempio:\n\n1. Esiste un aggiornamento per %(name)s per cui mancano alcune dipendenze\nche sono richieste da un altro pacchetto. Yum cerca di risolvere il problema intallando\nuna vecchia versione di %(name)s per una differente architettura. Se si passa\nl'architettura sbagliata a exclude, yum allora ritorna il problema principale (quale\npacchetto richiede cosa). E' possibile ripetere l'aggiornamento con \n--exclude %(name)s.otherarch ...\nquesto dovrebbe mostrare un messaggio che riporta la causa principale del problema.\n\n2. Ci sono multiple architetture installate per il pacchetto %(name)s, ma yum vede un\nupgrade solo per una di esse. Se non è necessario avere tutte le architetture, è \npossibile rimuovere quella per qui manca l'aggiornamento, e tutto tornerà a funzionare.\n\n3. Esistono
  versioni duplicate del pacchetto %(name)s installate. E' possibile utilizzare\n\"yum check\" per visualizzare questi errori. \n\n... è altrimenti possibile usare --setopt=protected_multilib=false per evitare di eseguire\nil controllo, ma ciò non è quasi mai la corretta soluzione al problema poichè probabilmente\nqualcos'altro andrà in errore (e causerà ulteriori problemi).\n"
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -80245,14 +84059,14 @@ index 44b6091..82e3427 100644
 +msgstr "\nPacchetti ignorati a causa di problemi di dipendenze:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s da %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -80260,22 +84074,22 @@ index 44b6091..82e3427 100644
 +msgstr "** Trovati %d problemi pre-esistenti nel rpmdb, l'output di 'yum check' è:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Attenzione: RPMDB modificato al di fuori di yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "dipendenze mancanti"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "conflitto installato"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -80284,18 +84098,18 @@ index 44b6091..82e3427 100644
 +msgstr "Attenzione: durante la transazione si sono verificati errori di scriptlet o altri errori non fatali."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Non è stato possibile iniziare la transazione:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Impossibile eseguire la transazione."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Eliminazione del file di transazione %s fallita"
@@ -80303,7 +84117,7 @@ index 44b6091..82e3427 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s doveva essere installato, ma non sembra esserlo!"
@@ -80314,7 +84128,7 @@ index 44b6091..82e3427 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s doveva essere eliminato, ma non lo è stato!"
@@ -80332,32 +84146,32 @@ index 44b6091..82e3427 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Impossibile creare il lock su %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Non è possibile controllare se il PID %s è attivo"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -80368,23 +84182,23 @@ index 44b6091..82e3427 100644
 +msgstr "Il pacchetto non corrisponde al download desiderato. Suggerimento: eseguire yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Non è stato possibile calcolare il checksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Il pacchetto non corrisponde al checksum"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "utilizzo di una copia locale di %s"
@@ -80399,14 +84213,18 @@ index 44b6091..82e3427 100644
 -"Spazio insufficiente nella cartella di download %s\n"
 -"    * libero     %s\n"
 -"    * necessario %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "uscita per via dell'opzione --downloadonly"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "L'header non è completo."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -80416,55 +84234,55 @@ index 44b6091..82e3427 100644
 +msgstr "Header non presente in cache locale e modalità solo-cache abilitata. Impossibile scaricare %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problemi nell'apertura di %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Il pacchetto %s non è firmato"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Non posso rimuovere %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s eliminato"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Impossibile rimuovere %s file %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s file %s rimosso"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s file rimossi"
@@ -80474,19 +84292,19 @@ index 44b6091..82e3427 100644
 +msgstr[1] "%d %s file rimossi"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -80496,7 +84314,7 @@ index 44b6091..82e3427 100644
 +msgstr "searchPackages() verrà eliminato in una futura versione di yum. In sostituzione usare searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Ricerca dei pacchetti %d"
@@ -80506,114 +84324,130 @@ index 44b6091..82e3427 100644
 +msgstr[1] "Ricerca di %d pacchetti"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "ricerca del pacchetto %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "ricerca nelle file entries"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "ricerca nelle provides entries"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Salto del pacchetto %s dal gruppo %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Aggiunta del pacchetto %s dal gruppo %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
 -msgstr ""
-+msgstr "Attenzione: il gruppo %s non contiene alcun pacchetto."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Attenzione: il gruppo %s non contiene alcun pacchetto da installare."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
 -msgstr ""
 +msgstr "Il gruppo %s contiene %u pacchetti facoltativi, che potrebbero essere installati."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Viene tralasciato il gruppo %s dall'environment %s"
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Nessun pacchetto trovato per %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Attenzione: il gruppo Environment %s non esiste."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Pacchetto: %s - impossibile co-installare con %s"
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Non è specificato niente da installare"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Controllo dei virtual provide o file-provide per %s"
@@ -80625,30 +84459,30 @@ index 44b6091..82e3427 100644
 -msgstr "Nessuna corrispondenza per l'argomento: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Il pacchetto %s è installato e non disponibile"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Nessun pacchetto disponibile per l'installazione"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Pacchetto: %s - già nel set di transazione"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -80659,7 +84493,7 @@ index 44b6091..82e3427 100644
 +msgstr "Il pacchetto %s è reso obsoleto da %s, ma quest'ultimo non fornisce i provide richiesti"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -80668,13 +84502,13 @@ index 44b6091..82e3427 100644
 +msgstr "Il pacchetto %s è reso obsoleto da %s, tentativo di installare %s al suo posto"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -80683,48 +84517,48 @@ index 44b6091..82e3427 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Nessuna corrispondenza per l'argomento: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Nessun pacchetto trovato per l'aggiornamento: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -80732,43 +84566,43 @@ index 44b6091..82e3427 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nessun pacchetto selezionato per l'eliminazione"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Nessun pacchetto trovato per la rimozione: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Ignoro il kernel in esecuzione: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Rimozione di %s dalla transazione"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Analisi di %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -80778,7 +84612,7 @@ index 44b6091..82e3427 100644
 +msgstr "Impossibile aggiungere il pacchetto %s alla transazione. Architettura non compatibile: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -80787,7 +84621,7 @@ index 44b6091..82e3427 100644
 +msgstr "Impossibile installare il pacchetto %s. E' reso obsoleto dal pacchetto installato %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -80798,7 +84632,7 @@ index 44b6091..82e3427 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -80807,37 +84641,37 @@ index 44b6091..82e3427 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Esclusione di %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s contrassegnato per l'installazione"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "%s contrassegnato come aggiornamento di %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Impossibile aprire il file: %s. Verrà ignorato."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Problema nella reinstallazione: nessun pacchetto corrispondente per la "
@@ -80845,7 +84679,7 @@ index 44b6091..82e3427 100644
 +msgstr "Problema nella reinstallazione: nessun pacchetto corrispondente per la rimozione"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -80854,80 +84688,80 @@ index 44b6091..82e3427 100644
 +msgstr "Problema nella reinstallazione: nessun pacchetto corrispondente a %s per l'installazione"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Nessun pacchetto disponibile per il downgrade"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Nessuna corrispondenza per il pacchetto disponibile: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Downgrade fallito: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Errore nell'upgrade: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "Recupero chiave da %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
 +msgstr "La firma della chiave GPG %s non corrisponde alla chiave della CA per il repository: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Chiave GPG non valida da %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -80942,7 +84776,7 @@ index 44b6091..82e3427 100644
 +msgstr "Importazione della chiave %s 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Pacchetto  : %s (%s)\n Da         : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -80953,8 +84787,9 @@ index 44b6091..82e3427 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Importazione della chiave %s 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Da         : %s"
-+
-+#: ../yum/__init__.py:5379
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -80963,32 +84798,31 @@ index 44b6091..82e3427 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Il pacchetto fallito è: %s\n Chiavi GPG configurate come: %s\n"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Chiave importata correttamente"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Non è stata installata alcuna chiave"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -80999,20 +84833,20 @@ index 44b6091..82e3427 100644
 +msgstr "Le chiavi GPG elencate per il repository \"%s\" sono attualmente installate ma non sono corrette per questo pacchetto.\nControllare che gli URL delle chiavi di questo repository siano configurati correttamente."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "No"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Si"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -81023,7 +84857,7 @@ index 44b6091..82e3427 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Chiave CA: %s\n Il repo fallito è: %s\n Chiavi GPG configurate come: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "Chiave GPG in %s (0x%s) è già stata importata"
@@ -81031,20 +84865,20 @@ index 44b6091..82e3427 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Importazione chiave fallita"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Importazione della chiave %s fallita"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -81055,129 +84889,131 @@ index 44b6091..82e3427 100644
 +msgstr "Le chiavi GPG elencate per il repository \"%s\" sono attualmente installate ma non sono corrette.\nControllare che gli URL delle chiavi di questo repository siano configurati correttamente."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Impossibile trovare un mirror adatto."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  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:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Riportare questo errore su %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Errori nel test di transazione: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +msgstr "Dipendenze non risolte. La transazione con dipendenze non risolte non verrà salvata."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
 -msgstr ""
-+msgstr "la versione di rpmdb non corrisponde alla versione della transazione salvata, "
- 
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " ignorato, come richiesto."
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr " esecuzione annullata."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "la versione di rpmdb non corrisponde alla versione della transazione salvata, "
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
 -msgstr ""
 +msgstr "impossibile trovare tsflags o tsflags non intero."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
 +msgstr "Membri della transazione, ci sono relazioni mancanti oppure ts è stata modificata,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 -msgstr ""
 +msgstr " ignorati, come richiesto. E' necessario eseguire nuovamente depsolve."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s è già stato visitato e non può essere rimossi."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Esame delle revdeps di %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s ha la revdep %s che è stata installata dall'utente."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s è richiesto da un pacchetto che deve essere installato."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s non ha revdeps installate dall'utente."
@@ -81279,7 +85115,7 @@ index 44b6091..82e3427 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s fornisce %s, ma non è stato possibile trovarlo"
-@@ -3157,6 +3265,19 @@ msgstr "%s fornisce %s, ma non è stato possibile trovarlo"
+@@ -3157,6 +3459,23 @@ msgstr "%s fornisce %s, ma non è stato possibile trovarlo"
  msgid "Repackaging"
  msgstr "Reimpacchettamento"
  
@@ -81288,7 +85124,7 @@ index 44b6091..82e3427 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verifica: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -81296,10 +85132,14 @@ index 44b6091..82e3427 100644
 +"    * needed %s"
 +msgstr "Spazio insufficiente nella cartella di download %s\n    * libero     %s\n    * necessario %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Il pacchetto non corrisponde al download desiderato."
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3169,8 +3290,7 @@ msgstr "Controllo md5 dell'RPM %s fallito"
+@@ -3169,8 +3488,7 @@ msgstr "Controllo md5 dell'RPM %s fallito"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -81309,26 +85149,27 @@ index 44b6091..82e3427 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3186,5 +3306,3 @@ msgstr "Header %s danneggiato"
+@@ -3186,5 +3504,3 @@ msgstr "Header %s danneggiato"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Errore nell'apertura dell'rpm %s - errore %s"
 -
 -
 diff --git a/po/ja.po b/po/ja.po
-index a232b0c..53c18e0 100644
+index a232b0c..7fefa70 100644
 --- a/po/ja.po
 +++ b/po/ja.po
-@@ -2,935 +2,960 @@
+@@ -2,935 +2,1044 @@
  # 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, 2012.
++# Hajime Taira <htaira at redhat.com>, 2011-2012.
 +# Tadashi Jokagi <elf2000 at gmail.com>, 2012.
 +# Tadashi Jokagi <elf at elf.no-ip.org>, 2011.
-+# Tomoyuki KATO <tomo at dream.daynight.jp>, 2011, 2012.
++# Tadashi Jokagi <elf at poyo.jp>, 2013.
++# Tomoyuki KATO <tomo at dream.daynight.jp>, 2011-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -81338,9 +85179,9 @@ index a232b0c..53c18e0 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Japanese (http://www.transifex.net/projects/p/yum/team/ja/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-08-16 04:22+0000\n"
-+"Last-Translator: Hajime Taira <htaira at redhat.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-23 18:39+0000\n"
++"Last-Translator: Tadashi \"ELF\" Jokagi <elf at poyo.jp>\n"
 +"Language-Team: Japanese (http://www.transifex.com/projects/p/yum/language/ja/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -81350,7 +85191,7 @@ index a232b0c..53c18e0 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
 -msgstr "更新"
 +msgstr "更新します"
@@ -81362,32 +85203,32 @@ index a232b0c..53c18e0 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
  #: ../yum/rpmtrans.py:78
  msgid "Installing"
 -msgstr "インストールしています"
 +msgstr "インストール中"
  
 -#: ../callback.py:52 ../callback.py:58 ../output.py:1840 ../yum/rpmtrans.py:77
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "不要"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "更新"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "インストール"
  
@@ -81415,7 +85256,7 @@ index a232b0c..53c18e0 100644
  msgstr "削除しました: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
 -msgstr "削除"
 +msgstr "削除中"
@@ -81426,69 +85267,69 @@ index a232b0c..53c18e0 100644
  msgstr "整理中"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "コマンド「%s」はすでに定義済みです"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "リポジトリーの設定"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "ローカルファイルからリポジトリーのメタデータを読み込んでいます"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "設定エラー: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "オプションエラー: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "インストール: %s-%s (日時: %s)"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  構築      : %s  (日時: %s)"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  コミット  : %s (日時: %s)"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "いくつかのコマンドを指定する必要があります"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "コマンド「%s」が見つかりません。「%s --help」を実行してください。"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "ディスク要求:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr "  少なくとも %dMB の空き容量がファイルシステム %s で必要です。\n"
@@ -81498,7 +85339,7 @@ index a232b0c..53c18e0 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -81506,93 +85347,115 @@ index a232b0c..53c18e0 100644
 -"エラーの要約\n"
 -"-------------\n"
 +msgstr "エラーの要約\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "ロック ファイルの作成に失敗しました。終了します"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "別のアプリケーションが現在 yum のロックを持っています。exit_on_lock による設定が存在します"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr "トランザクションの実行を試みましたが、何もありませんでした。終了します。"
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " 中止しています。"
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "ユーザーコマンドを終了しています"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "パッケージをダウンロードしています:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "パッケージのダウンロードでエラー:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "トランザクションのチェックを実行してします。"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr "エラー: RPM の更新のためのハンドルを更新する必要があります"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "更新には RPM が必要です"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "%s にこのエラーを報告してください"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "トランザクションのテストを実行しています"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "トランザクションの確認エラー\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "トランザクションのテストを成功しました"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "トランザクションを実行しています"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * おそらくの意味: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "パッケージ %s%s%s は利用できません。"
@@ -81600,7 +85463,12 @@ index a232b0c..53c18e0 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "インストールするパッケージ"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -81608,13 +85476,13 @@ index a232b0c..53c18e0 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "何もしません"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d 個のパッケージが更新の設定しました。"
@@ -81623,13 +85491,13 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "%d 個のパッケージが更新対象としてマークされました"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
 -msgstr "更新と設定されたパッケージがありません。"
 +msgstr "更新対象とマークされたパッケージはありません。"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d 個のパッケージを同期配信に設定しました。"
@@ -81638,13 +85506,13 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "%d 個のパッケージがディストリビューション同期対象としてマークされています"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
 -msgstr "パッケージが同期配信に設定したパッケージはありません。"
 +msgstr "ディストリビューション同期対象にマークされたパッケージはありません。"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d 個のパッケージを削除に設定しました。"
@@ -81653,7 +85521,7 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "%d 個のパッケージが削除対象としてマークされました"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
 -msgstr "削除と設定したパッケージはありません。"
 +msgstr "削除対象とマークされたパッケージはありません。"
@@ -81661,20 +85529,20 @@ index a232b0c..53c18e0 100644
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "ダウングレードするパッケージ"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "ダウングレードする %d 個のパッケージ"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (%s から)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "インストール済みパッケージ %s%s%s%s は利用できません。"
@@ -81682,65 +85550,65 @@ index a232b0c..53c18e0 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "再インストールするパッケージ"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "再インストールする %d 個のパッケージ"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "パッケージが提供されていません。"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "インストールするパッケージ"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "一致: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "警告: 一致するものが見つかりません: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "見つかりませんでした"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "%s のパッケージが見つかりません"
@@ -81750,117 +85618,141 @@ index a232b0c..53c18e0 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "リポジトリーを清掃しています: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "すべて掃除しています"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "ヘッダーを掃除しています"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "パッケージを掃除しています"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "XML メタデータを掃除しています"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "データベースキャッシュを掃除しています"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "期限切れのメタデータキャッシュを掃除しています"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "キャッシュ済み rpmdb データを掃除しています"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "プラグインを掃除しています"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "警告: 一致するグループがありません: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "インストール済みグループ:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "インストール済みの言語グループ:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "利用可能なグループ"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "利用できる言語グループ:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "完了"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "警告: グループ %s が存在しません。"
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr "インストールまたは更新に利用できるいくつかの要求されたグループにパッケージがありません"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d 個のパッケージをインストールします"
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "インストールする %d 個のパッケージ"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d 個のパッケージをインストールします"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "グループ名 %s が存在しません"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "グループから削除するパッケージがありません"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d 個のパッケージを削除します"
@@ -81869,38 +85761,38 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "削除する %d 個のパッケージ"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
 -msgstr "パッケージ %s は既にインストールされているので飛ばします"
 +msgstr "パッケージ %s は、すでにインストールされているので飛ばします"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "プラグインのオプション"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "コマンドライン エラー: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -81913,356 +85805,365 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\n%s: オプション %s は引数が必要です "
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color がとることができる値な次のうちひとつです: auto、always、never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot は絶対パスでなければなりません: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "このヘルプ メッセージを表示して終了する"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "エラーを黙認する"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "キャッシュから完全に実行し、キャッシュを更新しません"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "構成ファイルの場所"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "コマンドの最大待ち時間"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "デバッグ情報の出力レベル"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "一覧/検索コマンドのリポジトリーの重複の表示"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "エラー出力レベル"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "rpm のデバッグ情報の出力レベル"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "静かに処理をする"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "冗長に処理をする"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "すべての問い合わせに「yes」で答える"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "すべての質問にいいえを回答します"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "Yum のバージョンを表示して終了する"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "インストールのベース ディレクトリーを設定する"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "ひとつ以上のリポジトリーを有効にする (ワイルドカード許可)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "ひとつ以上のリポジトリーを無効にする (ワイルドカード許可)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "名前かワイルドカードでパッケージを除外する"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr "main、あるリポジトリー、またはすべてからの除外を無効にします。"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "更新中に不要な処理を有効にします"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "Yum プラグインを無効にする"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "GPG 署名の確認を無効にする"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "名前でプラグインを無効にする"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "名前でプラグインを有効にする"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
 -msgstr "依存性に問題があるパッケージを飛ばす"
 +msgstr "依存性関連に問題があるパッケージを飛ばす"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "色を使うかどうか制御する"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr "yum 設定と repo ファイルに $releasever の値を設定する"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "全体設定とリポジトリー オプションの任意に設定する"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "1 月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "2 月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "3 月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "4 月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "5 月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "6 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "7 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "8 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "9 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "10 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "11 月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "12 月"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "他のミラーを試します。"
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "名前                : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
- msgstr "アーキテクチャ      : %s"
+-msgstr "アーキテクチャ      : %s"
++msgstr "アーキテクチャー    : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "エポック            : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "バージョン          : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "リリース            : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "容量                : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "リポジトリー        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "提供元リポジトリー  : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "コミット者          : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "コミット日時        : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "ビルド日時          : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "インストール日時    : %s "
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "インストール済み容量: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "変更者              : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "要約                : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL                 : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "ライセンス          : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "説明                : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "はい"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "いいえ"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
 -msgstr "これでいいですか? [y/N]"
 +msgstr "上記の処理を行います。よろしいでしょうか? [y/N]"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -82273,203 +86174,230 @@ index a232b0c..53c18e0 100644
 +msgstr "\nグループ: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " グループ ID: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " 説明: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " 言語: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " 強制的なパッケージ:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " 標準パッケージ:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " オプション パッケージ:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " 条件付パッケージ:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "パッケージ    : %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  このパッケージの依存はありません"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  依存性      : %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "  満たされていない依存性"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "一致          :"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "ライセンス    : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "ファイル名    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "その他        : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "総ダウンロード容量の計算中にエラーです。"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "合計容量: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "総ダウンロード容量: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
- msgstr "インストール済み容量: %s"
+-msgstr "インストール済み容量: %s"
++msgstr "インストール容量: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "インストール容量の計算中にエラーです。"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "再インストール中"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "ダウングレード中"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
 -msgstr "依存性関連でのインストールをします。"
 +msgstr "依存性関連でのインストールをします"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
 -msgstr "依存性関連での更新をします。"
 +msgstr "依存性関連での更新をします"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
 -msgstr "依存性関連での削除をします。"
 +msgstr "依存性関連での削除をします"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "飛ばしました (依存性の問題)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "未インストール"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "利用できません"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "パッケージ"
 +msgid_plural "Packages"
 +msgstr[0] "パッケージ"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
- msgstr "アーキテクチャ"
+-msgstr "アーキテクチャ"
++msgstr "アーキテクチャー"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "バージョン"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "リポジトリー"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "容量"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
- msgstr "     置き換えています  %s%s%s.%s %s\n"
+-msgstr "     置き換えています  %s%s%s.%s %s\n"
++msgstr "     %s%s%s.%s %s を入れ替えます\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -82485,7 +86413,7 @@ index a232b0c..53c18e0 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "インストール     %5.5s パッケージ\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "インストール"
  
@@ -82493,7 +86421,7 @@ index a232b0c..53c18e0 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "アップグレード   %5.5s パッケージ\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "更新"
  
@@ -82501,7 +86429,7 @@ index a232b0c..53c18e0 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "削除             %5.5s パッケージ\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "削除"
  
@@ -82509,7 +86437,7 @@ index a232b0c..53c18e0 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "再インストール   %5.5s パッケージ\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "再インストール"
  
@@ -82517,57 +86445,57 @@ index a232b0c..53c18e0 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "ダウングレード   %5.5s パッケージ\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "ダウングレード"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "個の依存関係のパッケージ"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "削除しました"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "依存性の削除をしました"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "依存性関連をインストールしました"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "依存性を更新しました"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "置換"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "失敗"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "2"
  
-@@ -938,561 +963,598 @@ msgstr "2"
+@@ -938,561 +1047,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -82579,269 +86507,269 @@ index a232b0c..53c18e0 100644
 +msgstr "\n現在のダウンロードをキャンセルしました。終了するには %s再度割り込み ([Ctrl][C]キー)%s を %s%s%s 秒以内に押してください。\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "ユーザーの割り込み"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "合計"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<未設定>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "システム"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "トランザクションがありません"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "指定されたトランザクション ID、またはパッケージがおかしいです"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "コマンドライン"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "ログイン ユーザー"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "日時"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "操作"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "変更"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "指定されたトランザクション ID がありません。"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "指定されたトランザクション ID がおかしいです"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "指定されたトランザクション ID が見つかりません"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "ひとつ以上のトランザクション ID が見つかりません!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "指定されたトランザクション ID、またはパッケージが見つかりません。"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "ダウングレード済み"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "より古い"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "より新しい"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "トランザクション ID :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "開始時間            :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "開始 rpmdb          :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u 秒)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u 分)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u 時間)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u 日)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "終了時間            :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "終了 rpmdb          :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "ユーザー            :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "終了コード          :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "中断しました"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "失敗:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "失敗しました:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "成功"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "コマンドライン      :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr "保存済みの追加の非標準な情報: %d"
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "トランザクションの実行:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "切り替えたパッケージ:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "パッケージを飛ばします:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb の問題:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "スクリプトの出力:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "エラー:"
  
@@ -82850,17 +86778,17 @@ index a232b0c..53c18e0 100644
 -msgstr "インストール"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "依存インストール"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "不要削除"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "削除"
  
@@ -82873,228 +86801,230 @@ index a232b0c..53c18e0 100644
 -msgstr "ダウングレード"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "更新"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "時間"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "昨日"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "先週"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "最近の 2 週間"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "最近の 3 ヶ月間"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "最近の 6 ヶ月間"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "昨年"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "1 年以上前"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "トランザクション %s が見つかりません。"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "トランザクション ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "追加の履歴情報が利用できます:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: この名前から追加のデータが見つかりません。"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "パッケージ     :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "状態           :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "容量           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "構築ホスト     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "構築日時       :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "パッケージ者  :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "ベンダー       :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "ライセンス     :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "ソース RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "コミット日時   :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "コミッター     :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "理由           :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "取得リポジトリ :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "インストール者 :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "変更者         :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "インストール"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "アップデート"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "削除"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "再インストール"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "ダウングレード"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "非推奨"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "更新"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "不要"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> トランザクションの確認を実行しています。"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> 新しい変更と依存性の解決を再開しています。"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> 依存性解決を終了しました。"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> 依存性の処理をしています: %s のパッケージ: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> 維持しています: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> 維持しています: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> 未解決の依存性: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "パッケージ: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -83105,7 +87035,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n     要求: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -83116,7 +87046,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -83127,7 +87057,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -83138,38 +87068,38 @@ index a232b0c..53c18e0 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "次のものにより更新された: "
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "次のものによりダウングレードされた: "
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "次のものにより不要にされた: "
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "利用可能"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> 衝突を処理しています: %s は %s と衝突しています"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> トランザクションセットに束ねるために %s のヘッダーをダウンロードしています"
@@ -83177,70 +87107,70 @@ index a232b0c..53c18e0 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "検証中"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "実行中"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "スリープ中"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "割り込み不可"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "ゾンビ"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "トレース/停止"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "不明"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr " 他のアプリケーション: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr " 他のアプリケーション: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "   メモリー: %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    開始   : %s - %s 秒経過"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    状態   : %s、PID: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -83252,7 +87182,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\nユーザーのキャンセルで終了しています"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -83264,7 +87194,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\nパイプが壊れたため終了しています"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -83277,49 +87207,48 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr "別のアプリケーションが現在 yum のロックを持っています。exit_on_lock による設定が存在します"
- 
+-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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "プラグインのエラー終了: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum エラー: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "エラー: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "不明なエラー: 終了コード: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -83329,11 +87258,11 @@ index a232b0c..53c18e0 100644
 +msgstr "\n依存性を解決しました"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "完了しました!"
  
-@@ -1504,7 +1566,7 @@ msgstr ""
+@@ -1504,7 +1644,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "このコマンドを実行するには root である必要があります。"
  
@@ -83342,7 +87271,7 @@ index a232b0c..53c18e0 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1521,460 +1583,488 @@ msgid ""
+@@ -1521,568 +1661,645 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -83360,51 +87289,71 @@ index a232b0c..53c18e0 100644
  msgstr "エラー: パッケージの一覧を %s に渡す必要があります"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "エラー: 一致する項目が必要です"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "エラー: グループ化グループの一覧が必要です"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "エラー: clean は引数をひとつ要求します: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "エラー: 不正な clean の引数です: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "シェルへの引数がありません"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "シェルに渡すファイル名: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr "シェルへの引数として渡したファイル %s は存在しません。"
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr "エラー: シェルへの引数としてひとつ以上のファイルを渡しました。"
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -83416,114 +87365,114 @@ index a232b0c..53c18e0 100644
 +msgstr "有効なリポジトリーがありません。\n 「yum repolist all」を実行し、所持するリポジトリーを参照してください。\n 「yum-config-manager --enable <repo>」でリポジトリーを有効にできます。"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "パッケージ..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "システムにパッケージをインストールする"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "インストール処理の設定をしています"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[パッケージ...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "システムのパッケージを更新する"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "更新処理の設定をしています"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "最新の利用可能なバージョンへインストール済みパッケージを同期する"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
 -msgstr "同期配信処理の準備をしています"
 +msgstr "ディストリビューション同期処理の準備をしています"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "パッケージもしくはパッケージのグループについての詳細を表示する"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "インストール済みパッケージ"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "利用可能なパッケージ"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "外部パッケージ"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "更新したパッケージ"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
 -msgstr "パッケージを不要にしています"
 +msgstr "不要になったパッケージ"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "最近追加したパッケージ"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "表示するパッケージはありません"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "パッケージグループの一覧を表示する"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "システムから削除するパッケージ"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "削除処理の設定をしています"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "グループ情報の表示または使用"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "グループ処理の設定をしています"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "コマンドを実行するグループがありません"
  
@@ -83534,7 +87483,7 @@ index a232b0c..53c18e0 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "システムのグループのパッケージをインストールする"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "無効なグループサブコマンドです、次を使用してください: %s。"
@@ -83542,79 +87491,79 @@ index a232b0c..53c18e0 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "システムからグループのパッケージを削除する"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "パッケージグループについての詳細を表示する"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "メタデータキャッシュを生成する"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "すべて飲めたデータファイルのキャッシュを作成します。"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr "これは、このコンピューターの速度に依存する時間をとるかもしれません"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "メタデータのキャッシュを作成しました"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "キャッシュデータを削除する"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "指定値を提供するパッケージを検索する"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "更新に利用できるパッケージを確認する"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "指定した文字列でパッケージの詳細を検索する"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "パッケージの検索中: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "不要になったパッケージを考慮しながらパッケージを更新する"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "更新処理の設定をしています"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "ローカル RPM のインストール"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "ローカルパッケージ処理の設定をしています"
  
@@ -83623,150 +87572,150 @@ index a232b0c..53c18e0 100644
 -msgstr "指定の依存性を提供するパッケージがどれか特定する"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "依存性のパッケージ検索:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "対話型の yum シェルを実行する"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Yum シェルの設定をしています"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "パッケージの依存性の一覧を表示する"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "依存性の検索中: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "ソフトウェアリポジトリーの構成を表示する"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "有効"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "無効"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "リポジトリー ID            : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "リポジトリーの名前         : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "リポジトリーの状態         : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "リポジトリーのリビジョン   : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "リポジトリーのタグ         : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "リポジトリー更新日         : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "リポジトリー内パッケージ数 : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "リポジトリー容量           : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "リポジトリー基準 URL       : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "リポジトリーメタリンク     : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  更新日                   : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "リポジトリーのミラー       : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "ずっと (最終: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "インスタント (最終: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s 秒 (最終: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "リポジトリーの期限         : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "リポジトリーの除外         : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "リポジトリーの内包         : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "リポジトリーの除外数       : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Repo ファイル名: "
@@ -83774,33 +87723,33 @@ index a232b0c..53c18e0 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "リポジトリー ID"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "状態"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "リポジトリー名"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "役立つ使い方のメッセージを表示する"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "%s のヘルプは利用できません"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -83812,7 +87761,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\n別名: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -83824,186 +87773,212 @@ index a232b0c..53c18e0 100644
 +msgstr "\n\n別名: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "再インストール処理の設定をしています"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "パッケージの再インストール"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "ダウングレード処理の設定をしています"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "パッケージのダウングレード"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr "ホストの利用できるリポジトリーのバージョンを表示する"
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum バージョン グループ"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " グループ                :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr "パッケージ               :"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "インストール済み         :"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "グループ インストール済み:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "利用可能                 :"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "利用可能なグループ       :"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "トランザクション履歴を表示、使用する"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "トランザクション:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "開始時間    :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "終了時間    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "回数        :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "使用した history のサブコマンドが正しくありません: %s"
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "履歴 DB にアクセスできません。"
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "rpmdb の問題を確認する"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "filename から保存済みトランザクションを読み込む"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "指定したトランザクション ファイルに保存していません"
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "%s からトランザクションを読み込んでいます"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1983,106 +2073,112 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
  #, python-format
  msgid " Yum checks failed: %s"
+-msgstr ""
 +msgstr " Yum のチェックに失敗failed: %s"
-+
-+#: ../yummain.py:110
-+msgid "No read/execute access in current directory, moving to /"
-+msgstr "現在のディレクトリに読み込み権/実行権がありません、/ に移動します"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
- msgstr ""
  
 -#: ../yummain.py:114
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "ロック ファイルの作成に失敗しました。終了します"
-+
-+#: ../yummain.py:134
- msgid ""
- "Another app is currently holding the yum lock; waiting for it to exit..."
- msgstr "別のアプリケーションが現在 yum のロックを持っています。終了するまで待っています..."
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "別のアプリケーションが現在 yum のロックを持っています。終了するまで待っています..."
++#: ../yummain.py:98
++msgid "No read/execute access in current directory, moving to /"
++msgstr "現在のディレクトリに読み込み権/実行権がありません、/ に移動します"
  
 -#: ../yummain.py:120
 -msgid "Can't create lock file; exiting"
--msgstr ""
--
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
+ msgstr ""
+ 
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "依存性の解決をしています"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -84012,7 +87987,7 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -84053,7 +88028,7 @@ index a232b0c..53c18e0 100644
  msgstr "メンバー: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s をインストールに変更しました"
@@ -84111,7 +88086,7 @@ index a232b0c..53c18e0 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2090,999 +2186,1067 @@ msgstr ""
+@@ -2090,999 +2307,1138 @@ 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 :(
@@ -84123,133 +88098,143 @@ index a232b0c..53c18e0 100644
 +msgstr "依存解決のために %s の更新を試みます"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
  #, python-format
- msgid "TSINFO: %s package requiring %s marked as erase"
--msgstr ""
-+msgstr "TSINFO: %s パッケージが削除として %s で必要としています"
+-msgid "TSINFO: %s package requiring %s marked as erase"
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:507
  #, python-format
- msgid "TSINFO: Obsoleting %s with %s to resolve dep."
--msgstr ""
-+msgstr "TSINFO: 依存性を解決するために %s を %s で非推奨にしています。"
+-msgid "TSINFO: Obsoleting %s with %s to resolve dep."
++msgid "Update for %s. Doesn't fix requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:514
++#, python-format
++msgid "TSINFO: %s package requiring %s marked as erase"
++msgstr "TSINFO: %s パッケージが削除として %s で必要としています"
++
++#: ../yum/depsolve.py:527
++#, python-format
++msgid "TSINFO: Obsoleting %s with %s to resolve dep."
++msgstr "TSINFO: 依存性を解決するために %s を %s で非推奨にしています。"
++
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
 -msgstr ""
 +msgstr "TSINFO: 依存性を解決するために %s を更新しています"
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr "依存する更新パスを見つけられません: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr "%s を提供するパッケージはすでにインストールされています。削除しています。"
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s はすでに ts にあります。これを飛ばします"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr "TSINFO: %s を更新として %s で設定しています"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "成功 - 空のトランザクション"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "ループを再開しています"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "依存性の処理を終了しています"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "成功 - 依存性を解決しました"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "%s の依存性を確認しています"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr "%s の要求として %s を検索しています"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "%s の compare_providers() を実行しています"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s は %s で不要です"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -84257,25 +88242,25 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "%s と %s の共通ソース RPM(SRPM)"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "ベースパッケージ %s は %s のためにインストールしています"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr "%s から %s と %s の共通接頭辞"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "最低限の要求: %d"
@@ -84283,153 +88268,163 @@ index a232b0c..53c18e0 100644
 +msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " 勝者: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "最低限の要求: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " 敗者(%d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "最適の順序: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr "doConfigSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "リポジトリー %r: 設定の解析中にエラー: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr "リポジトリー %r は構成中に名前がありませんので ID を使います"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "プラグインは既に初期化されています"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr "dbRpmDBSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "ローカルの RPMDB を読み込んでいます"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr "doRepoSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr "doSackSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "したがって、このリポジトリーはリセットできません。\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr "doUpdateSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "オブジェクトの更新を構築しています"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr "doGroupSetup() は Yum の将来のバージョンでなくなります。\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "グループメタデータを取得しています"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "リポジトリーからグループファイルを追加しています: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr "リポジトリーのグループファイルに追加できませんでした: %s - %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "いずれかのリポジトリーに利用できるグループはありません"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "メタデータ pkgtags を取得しています"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "リポジトリーからタグを追加しています: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr "リポジトリーからパッケージタグの追加に失敗しました: %s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "追加のファイル一覧情報にインポートしています"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -84438,25 +88433,59 @@ index a232b0c..53c18e0 100644
 +msgstr "終了していない残作業があります。それらを終了するために、まず yum-complete-transaction の実行を検討すべきかもしれません。"
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
  #, python-format
- msgid "Trying to remove \"%s\", which is protected"
--msgstr ""
-+msgstr "\"%s\" を削除しようとしています、保護されています"
+-msgid "Trying to remove \"%s\", which is protected"
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1257
++#, python-format
++msgid "Trying to remove \"%s\", which is protected"
++msgstr "\"%s\" を削除しようとしています、保護されています"
++
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -84466,7 +88495,7 @@ index a232b0c..53c18e0 100644
 +msgstr "\nパッケージは依存関係に問題があるため、飛ばします:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
 -msgstr ""
@@ -84474,45 +88503,45 @@ index a232b0c..53c18e0 100644
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "警告: RPMDB は yum 以外で変更されました。"
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "要求されたもの不足"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "インストール済みとの衝突"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr "警告: スクリプト、もしくはその他で処理の間に致命的ではないエラーが発生しました。"
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "トランザクションを解しできません:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "トランザクションを実行できません。"
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "トランザクションファイル %s の削除に失敗しました"
@@ -84520,7 +88549,7 @@ index a232b0c..53c18e0 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s のインストールを想定したがそうではなかった!"
@@ -84531,7 +88560,7 @@ index a232b0c..53c18e0 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s の削除を想定したがそうではなかった!"
@@ -84549,32 +88578,32 @@ index a232b0c..53c18e0 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr "%s でロックを作成できません: %s"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "%s のロックを開けません: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "PID %s がアクティブかどうかの確認に失敗しました"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -84582,23 +88611,23 @@ index a232b0c..53c18e0 100644
  msgstr "パッケージは予定したダウンロードと一致しません。 提案: 「yum --enablerepo=%s clean metadata」の実行"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "チェックサムの実行ができません"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "パッケージのチェックサムが一致しません"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "%s のローカルコピーを使う"
@@ -84609,73 +88638,76 @@ index a232b0c..53c18e0 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"ダウンロードディレクトリー %s の空きが不十分です\n"
 -"    * 空き容量 %s\n"
 -"    * 必要容量 %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "ヘッダーが完了していません。"
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, 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:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "%s の公開鍵がインストールされていません"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "パッケージ %s を開いている最中に問題です"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "%s の公開鍵が信頼されません"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "パッケージ %s は署名されていません"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "%s を削除できません"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s を削除しました"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "%s のファイル %s を削除できませんでした"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s のファイル %s を削除しました"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %sファイルを削除しました"
@@ -84684,19 +88716,19 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "%d 個の %s ファイルを削除しました"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -84706,7 +88738,7 @@ index a232b0c..53c18e0 100644
 +msgstr "searchPackages() は Yum の将来のバージョンでなくなります。                      代わりに searchGenerator() を使います。\n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "%d 個のパッケージを検索しています"
@@ -84715,112 +88747,128 @@ index a232b0c..53c18e0 100644
 +msgstr[0] "%d 個のパッケージを検索しています"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "パッケージ %s を検索しています"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "ファイルのエントリーから検索しています"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "提供されたエントリーを検索しています"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "グループ名 %s が存在しません"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
 -msgstr "パッケージ%s はグループ %s で設定されていません"
 +msgstr "パッケージ%s はグループ %s でマークされていません"
- 
--#: ../yum/__init__.py:2887
++
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
-+
-+#: ../yum/__init__.py:3382
+ 
+-#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "パッケージ %s をグループ %s から追加しています"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "インストールに利用できるパッケージ名 %s がありません"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "%s のパッケージが見つかりません"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "パッケージ オブジェクトはパッケージ オブジェクト インスタンスではありません"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "インストールへの指定がありません"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "%s の仮想提供かファイル提供を確認しています"
@@ -84832,30 +88880,30 @@ index a232b0c..53c18e0 100644
 -msgstr "引数に一致しません: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "パッケージ %s はインストール済みか利用できません"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "インストールに利用できるパッケージはありません"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "パッケージ: %s - すでにトランザクション設定をしています。"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr "パッケージ %s は既にインストール済みの %s によって不要扱いになりました。"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -84863,70 +88911,70 @@ index a232b0c..53c18e0 100644
  msgstr "パッケージ %s は %s によって不要になりました。しかし、不要のパッケージは要求を提供していません。"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr "パッケージ %s はインストール済みか最新バージョンです"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "すべて更新しています"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr "既に不要なパッケージの更新はありません: %s.%s %s:%s-%s"
 +msgstr "不要なパッケージの更新はありません: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "引数に一致しません: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "アップグレードするために一致するパッケージがありません: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 -msgstr "パッケージは既に不要です: %s.%s %s:%s-%s"
 +msgstr "パッケージはすでに不要です: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
 -msgstr "既に不要なパッケージの更新はありません: %s"
 +msgstr "不要なパッケージの更新はありません: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr "既にアップデートされているのでパッケージをアップデートしません: %s.%s %s:%s-%s"
@@ -84935,57 +88983,58 @@ index a232b0c..53c18e0 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "削除に一致するパッケージはありません"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "削除するために一致するパッケージがありません: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "実行中のカーネルを飛ばします: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "トランザクションの中から %s を削除しています。"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr "ファイルが開けません:  %s を飛ばします。"
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "%s を調べています: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
 -msgstr ""
 +msgstr "デルタ RPM をローカルインストールできません: %s。スキップしています。"
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
- msgstr "トランザクションにパッケージ %s を追加できません。アーキテクチャに互換性がありません: %s"
+-msgstr "トランザクションにパッケージ %s を追加できません。アーキテクチャに互換性がありません: %s"
++msgstr "トランザクションにパッケージ %s を追加できません。アーキテクチャーに互換性がありません: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr "パッケージ %s をインストールできません。それはパッケージ %s により不要になっています。"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -84993,7 +89042,7 @@ index a232b0c..53c18e0 100644
  msgstr "パッケージ %s はインストールされていないので更新できません。代わりに「yum install」を実行してインストールしてください。"
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -85001,118 +89050,118 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "%s の除外中"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s をインストール済みとして設定しています"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "次のリポジトリーへの更新として %s を設定します: %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: インストールされたパッケージを更新しません。"
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "ファイル %s が開けません。飛ばします。"
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "再インストール中に問題: 削除するパッケージがありません"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr "再インストールでの問題: インストールのための %s に一致するパッケーがありません"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "ダウングレードに利用できるパッケージはありません"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "パッケージ %s は複数インストールが許可されています。飛ばします"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "利用できるパッケージに一致しません: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr "アップグレードにのみ利用できるパッケージ: %s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "ダウングレードに失敗: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "更新に失敗しました: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "%s から鍵を取得中です。"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "%s からの GPG 鍵が正しくありません: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr "GPG 鍵の解析に失敗しました: 鍵は値 %s を持っていません"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -85126,7 +89175,7 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -85135,9 +89184,10 @@ index a232b0c..53c18e0 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -85145,32 +89195,31 @@ index a232b0c..53c18e0 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr "GPG 鍵 %s (0x%s) はすでにインストールしています"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "鍵のインポートに失敗しました (コード: %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "鍵のインポートに成功しました"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -85178,20 +89227,20 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr "鍵のインポートを助けられません。鍵が壊れていませんか?"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "いいえ"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "はい"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -85202,7 +89251,7 @@ index a232b0c..53c18e0 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG 鍵 %s (0x%s) はすでにインポートしています"
@@ -85210,19 +89259,19 @@ index a232b0c..53c18e0 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "鍵のインポートに失敗しました"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "キー %s のインポートに失敗しました"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -85230,120 +89279,123 @@ index a232b0c..53c18e0 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "適当なミラーを見つけることができませんでした。"
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "パッケージのダウンロード中にエラーに遭遇しました。"
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "%s にこのエラーを報告してください"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "テストトランザクションでエラー: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr "cackedir が設定できません: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr "トランザクションファイル %s が保存できません。: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr "保存されているトランザクションファイル %s にアクセスできません。: %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "保存されているトランザクションファイルの rpmdb のバージョンがマッチしていません。"
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr "保存されているトランザクションファイルの rpmdb のバージョンがマッチしていません。"
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
--#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " 中止しています。"
+-
+-#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
 -msgstr ""
 +msgstr "txmbr を見つけられませんでした: 起点から %s: %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 +msgstr " 要求により、無視しています。依存性を再解決しなければいけません!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
  msgstr ""
@@ -85443,7 +89495,7 @@ index a232b0c..53c18e0 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s は %s を提供していますが、見つかりません。"
-@@ -3091,6 +3255,19 @@ msgstr "%s は %s を提供していますが、見つかりません。"
+@@ -3091,6 +3447,23 @@ msgstr "%s は %s を提供していますが、見つかりません。"
  msgid "Repackaging"
  msgstr "再パッケージをしています"
  
@@ -85452,7 +89504,7 @@ index a232b0c..53c18e0 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "検証: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -85460,20 +89512,24 @@ index a232b0c..53c18e0 100644
 +"    * needed %s"
 +msgstr "ダウンロードディレクトリー %s の空きが不十分です\n    * 空き容量 %s\n    * 必要容量 %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3119,5 +3296,3 @@ msgstr "ヘッダー %s は損傷があります"
+@@ -3119,5 +3492,3 @@ msgstr "ヘッダー %s は損傷があります"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "RPM %s へのアクセスでエラー - %s エラー"
 -
 -
 diff --git a/po/lt_LT.po b/po/lt_LT.po
-index 4a1d933..d55cb3b 100644
+index 4a1d933..f0c9981 100644
 --- a/po/lt_LT.po
 +++ b/po/lt_LT.po
-@@ -2,944 +2,980 @@
+@@ -2,944 +2,1063 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -85490,9 +89546,9 @@ index 4a1d933..d55cb3b 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/yum/team/lt_LT/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-04-09 19:26+0000\n"
-+"Last-Translator: aurisc4 <aurisc4 at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/yum/language/lt_LT/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -85502,7 +89558,7 @@ index 4a1d933..d55cb3b 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Atnaujinama"
  
@@ -85513,31 +89569,31 @@ index 4a1d933..d55cb3b 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Atnaujinta"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Įdiegta"
  
@@ -85564,7 +89620,7 @@ index 4a1d933..d55cb3b 100644
  msgstr "Pašalinta: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Šalinama"
  
@@ -85574,69 +89630,69 @@ index 4a1d933..d55cb3b 100644
  msgstr "Valymas"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Komanda „%s“ jau apibrėžta"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Nustatomos saugyklos"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Skaitoma saugyklų informacija iš vietinių failų"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Konfigūracijos klaida: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Parinkčių klaida: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Įdiegta: %s-%s %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Sukurta  : %s %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Pateikta : %s %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Reikia pateikti kokią nors komandą"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "Nėra komandos: %s. Naudokite %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Disko reikalavimai:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr "  Reikia bent %dMB daugiau vietos failų sistemoje %s.\n"
@@ -85648,7 +89704,7 @@ index 4a1d933..d55cb3b 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -85658,80 +89714,102 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Klaidos santrauka\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Nepavyko sukurti užrakto failo; išeinama"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Kita programa šiuo metu turi yum užraktą; išeinama, kaip nustatyta parametru exit_on_lock"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
 -msgstr "Bandoma paleisti transakciją, bet nėra veiksmų. Išeinama."
 +msgstr "Bandoma paleisti tranzakciją, bet nėra veiksmų. Išeinama."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " nepaisoma, kaip nurodyta."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " atšaukiama."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Išeinama po naudotojo komandos"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Parsiunčiami paketai:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Klaida parsiunčiant paketus:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr "Vykdomas transakcijos tikrinimas"
 +msgstr "Vykdomas tranzakcijos tikrinimas"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr "KLAIDA su transakcijos ir priklausomybių tikrinimu:"
 +msgstr "KLAIDA su tranzakcijos ir priklausomybių tikrinimu:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM turi būti atnaujintas"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Praneškite apie šią klaidą adresu %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
 -msgstr "Vykdomas transakcijos tikrinimas"
 +msgstr "Vykdomas tranzakcijos tikrinimas"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
 -msgstr "Transakcijos tikrinimo klaida:\n"
 +msgstr "Tranzakcijos tikrinimo klaida:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
 -msgstr "Transakcijos tikrinimas sėkmingas"
 +msgstr "Tranzakcijos tikrinimas sėkmingas"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
 -msgstr "Vykdoma transakcija"
 +msgstr "Vykdoma tranzakcija"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -85741,18 +89819,18 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Atsisakoma automatiškai importuoti raktus, kai vykdoma neprižiūrint.\nNaudokite „-y“ veiksenos pakeitimui."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Gal turėjote omenyje:"
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Nėra prieinamo paketo %s%s%s."
@@ -85760,23 +89838,28 @@ index 4a1d933..d55cb3b 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paketas(-ai) diegimui"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d paketas įdiegimui"
 +msgstr[1] "%d paketai įdiegimui"
 +msgstr[2] "%d paketų įdiegimui"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nėra ką atlikti"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paketas(-ai) pažymėti atnaujinimui"
@@ -85787,12 +89870,12 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų pažymėtas atnaujinimui"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Nėra paketų, pažymėtų atnaujinimui"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d paketas(-ai) pažymėtas(-i) distribucijos sinchronizavimui"
@@ -85803,12 +89886,12 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų pažymėtas distribucijos sinchronizacijai"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Nėra paketų, pažymėtų distribucijos sinchronizavimui"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paketas(-ai) pažymėtas(-i) pašalinimui"
@@ -85819,14 +89902,14 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų pažymėtas pašalinimui"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -85835,13 +89918,13 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų grąžinimui"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (iš %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Įdiegtas paketas %s%s%s%s neprieinamas."
@@ -85849,7 +89932,7 @@ index 4a1d933..d55cb3b 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paketas(-ai) pakartotiniam diegimui"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -85858,23 +89941,23 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų pakartotiniam diegimui"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nėra pateiktų paketų"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paketas(-ai) diegimui"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr "Paieškos atitikmenu: %s"
 +msgstr "Paieškos atitikmenų: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -85883,7 +89966,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "  %sTik%s pavadinimo ir santraukos atitikmenys, naudokite „search all“ paieškai visur."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -85893,13 +89976,13 @@ index 4a1d933..d55cb3b 100644
 +msgstr "  %sTik%s pilno pavadinimo ir santraukos atitikmenys, naudokite „search all“ paieškai visur."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Atitinka: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -85908,18 +89991,18 @@ index 4a1d933..d55cb3b 100644
 +msgstr "  %sDaugiausia%s pavadinimo ir santraukos atitikmenys, naudokite „search all“ paieškai visur."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Įspėjimas: nerasta atitikmenų: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nerasta atitikmenų"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nerasta paketų užklausai %s"
@@ -85929,116 +90012,143 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Klaida: nerasta paketų paieškai:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Išvalomos saugyklos:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Išvaloma viskas"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Išvalomos antraštės"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Išvalomi paketai"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Išvalomi xml metaduomenys"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Išvalomas duomenų bazės podėlis"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Išvalomas pasenę podėlio metaduomenys"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Išvalomi podėlio rpmdb duomenys"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Išvalomi įskiepiai"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Įspėjimas: nėra grupių atitikmenų: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Įspėjimas: nėra grupių atitikmenų: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Įdiegto grupės:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Įdiegtos kalbų grupės:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Prieinamos grupės:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Prieinamos kalbų grupės:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Atlikta"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Įspėjimas: nėra grupės %s."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d diegtinas(-i) paketai(-ai)"
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d paketas įdiegimui"
 +msgstr[1] "%d paketai įdiegimui"
 +msgstr[2] "%d paketų įdiegimui"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d diegtinas(-i) paketai(-ai)"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Nėra grupės %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Nėra paketų pašalinimui iš grupių"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d paketas(-ai) pašalinimui"
@@ -86049,37 +90159,37 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d paketų pašalinimui"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paketas %s jau įdiegtas, praleidžiama"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, 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:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Įskiepių parinktys"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Komandinės eilutės klaida: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -86092,356 +90202,363 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n\n%s: %s parinktis reikalauja argumento"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--installroot turi būti absoliutus kelias: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "rodyti šį pagalbos pranešimą ir išeiti"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "toleruoti klaidas"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "vykdyti tik iš sistemos podėlio jo neatnaujinant"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "konfigūracijos failo vieta"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "didžiausias komandos laukimo laikas"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "derinimo išvesties lygmuo"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "rodyti dublikatus saugyklose, sąrašo/paieškos komandose"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "klaidų išvesties lygmuo"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "derinimo išvesties lygmuo rpm komandai"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "tyli operacija"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "išsami operacija"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "atsakyti „taip“ į visus klausimus"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "atsakyti ne į visus klausimus"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "rodyti Yum versiją ir išeiti"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "nustatyti diegimo šaknį"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "leisti vieną ar daugiau saugyklų (leidžiami pakaitos simboliai)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "drausti vieną ar daugiau saugyklų (leidžiami pakaitos simboliai)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "išskirti paketą(-us) pagal pavadinimą arba globalų vardą"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
 -msgstr "drausti iškyrimą iš pagrindinio saugyklai arba viskam"
 +msgstr "drausti išskyrimą iš pagrindinio saugyklai arba viskam"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "leisti pasenusių apdorojimą atnaujinimo metu"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "drausti Yum įskiepius"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "drausti gpg parašo tikrinimą"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "drausti įskiepius pagal pavadinimą"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "leisti įskiepius pagal pavadinimą"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "praleisti paketus su priklausomybių tikrinimo problemomis"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "valdyti, ar naudojama spalva"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
--"nustatyti $releasever reikšmę yum konfigūracijoje ir saugyklų failuose"
 +msgstr "nustatyti $releasever reikšmę yum konfigūracijoje ir saugyklų failuose"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
+-"nustatyti $releasever reikšmę yum konfigūracijoje ir saugyklų failuose"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "nustatyti savavališkas konfigūracijos ir saugyklų parinktis"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Sau"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Vas"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Kov"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Bal"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Ge"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Bir"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Lie"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Rug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Rgs"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Spa"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Lap"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Gr"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Bandoma kita dubliuojamoji tinklavietė"
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Pavadinimas : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Architektūra: %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epocha      : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versija     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Leidimas    : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Dydis       : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Saugykla    : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Iš saugyklos   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Pateikėjas  : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Pateikta    : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Sukūrimo laikas: %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Įdiegimo laikas: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Įdiegė      : %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Pakeitė     : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Santrauka   : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licencija   : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Aprašymas   : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "t"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "taip"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ne"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Ar tai tinka [t/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -86452,166 +90569,190 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\nGrupė: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Grupės id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Aprašymas: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr "Kalba: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Privalomi paketai:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Numatytieji paketai:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Papildomi paketai:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Sąlyginiai paketai:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Įdiegti paketai:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paketas: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Šis paketas neturi priklausomybių"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  priklausomybė: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Nepatenkinta priklausomybė"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Atitinka:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licencija   : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Failo pavadinimas: %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Suteikia    :"
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Kita        : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Įvyko klaida skaičiuojant visą parsiuntimo dydį"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Visas dydis: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Visas parsiuntimo dydis: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Įdiegimo dydis: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Įvyko klaida skaičiuojant įdiegimo dydį"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Perdiegiama"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Grąžinama"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Diegiamos priklausomybės"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Atnaujinama priklausomybėms"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Šalinama dėl priklausomybių"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Praleista (priklausomybių problemos)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Neįdiegtas"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Neprieinama"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paketas"
 +msgid_plural "Packages"
@@ -86620,33 +90761,33 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "Paketų"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Architektūra"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versija"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Saugykla"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Dydis"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "      pakeičiama  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -86662,7 +90803,7 @@ index 4a1d933..d55cb3b 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Įdiegti   %5.5s pektą(-us)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Įdiegti"
  
@@ -86670,7 +90811,7 @@ index 4a1d933..d55cb3b 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Atnaujinti %5.5s paketą(-us)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Atnaujinti"
  
@@ -86678,7 +90819,7 @@ index 4a1d933..d55cb3b 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Pašalinti %5.5s paketą(-us)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Pašalinti"
  
@@ -86686,7 +90827,7 @@ index 4a1d933..d55cb3b 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Perdiegti %5.5s paketą„-u)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Perdiegti"
  
@@ -86694,59 +90835,59 @@ index 4a1d933..d55cb3b 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Grąžinti %5.5s paketą(-us)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Grąžinti"
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Priklausomas paketas"
 +msgstr[1] "Priklausomi paketai"
 +msgstr[2] "Priklausomų paketų"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Pašalinta"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Priklausomybė pašalinta"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Priklausomybė įdiegta"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Priklausomybė atnaujinta"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Pakeista"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Nepavyko"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "du"
  
-@@ -947,565 +983,598 @@ msgstr "du"
+@@ -947,565 +1066,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -86759,272 +90900,272 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n Dabartinis parsiuntimas atšauktas, %snutraukite (ctrl-c) vėl%s per %s%s%s sekundes\nišėjimui.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "naudotojo nutraukimas"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Iš viso"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<atstatyti>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistema"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr "Praleidžiama persidengianti transakcija %d, apjungta į %d"
 +msgstr "Praleidžiama persidengianti tranzakcija %d, apjungta į %d"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr "Nėra transakcijų"
 +msgstr "Nėra tranzakcijų"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
 -msgstr "Pateikti blogi transakcijų ID arba paketai"
 +msgstr "Pateikti blogi tranzakcijų ID arba paketai"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Komandų eilutė"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Prisijungęs naudotojas"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Data ir laikas"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Veiksmas(-ai)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Pakeista"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
 -msgstr "Nepateiktas transakcijos ID"
 +msgstr "Nepateiktas tranzakcijos ID"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
 -msgstr "Pateiktas blogas transakcijos ID"
 +msgstr "Pateiktas blogas tranzakcijos ID"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
 -msgstr "Nerastas pateiktas transakcijos ID"
 +msgstr "Nerastas pateiktas tranzakcijos ID"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
 -msgstr "Rastas daugiau nei vienas transakcijos ID!"
 +msgstr "Rastas daugiau nei vienas tranzakcijos ID!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
 -msgstr "Nepateiktas transakcijos ID arba paketas"
 +msgstr "Nepateiktas tranzakcijos ID arba paketas"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Grąžintas"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Senesnis"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Naujesnis"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
 -msgstr "Transakcijos ID:"
 +msgstr "Tranzakcijos ID:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Pradžios laikas:"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Pradėti rpmdb  :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u sekundžių)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minučių)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u valandų)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u dienų)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Pabaigos laikas:"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Baigti rpmdb   :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Naudotojas     :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Grąžinimo kodas:"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Nutraukta"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Klaidos:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Klaida:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Sėkminga"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Komandų eilutė :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
 -msgstr "Transakcija atlikta su:"
 +msgstr "Tranzakcija atlikta su:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Pakeisti paketai:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Praleisti paketai:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb problemos:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scenarijaus išvestis:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Klaidos:"
  
@@ -87033,17 +91174,17 @@ index 4a1d933..d55cb3b 100644
 -msgstr "Įdiegti"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Įdiegti priklausomybes"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Pažymima pasenusiu"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Pašalinti"
  
@@ -87056,229 +91197,231 @@ index 4a1d933..d55cb3b 100644
 -msgstr "Grąžinti"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Atnaujinti"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Laikas"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Vakar"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Praėjusią savaitę"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Praėjusias 2 savaites"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Praėjusius 3 mėnesius"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Praėjusius 6 mėnesius"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Praėjusiais metais"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Daugiau nei prieš metus"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
 -msgstr "Nerasta transakcija %s"
 +msgstr "Nerasta tranzakcija %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
 -msgstr "Transakcijos ID:"
 +msgstr "Tranzakcijos ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Prieinama papildoma istorijos informacija:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: nerasta papildomų duomenų su šiuo pavadinimu"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paketas        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Būsena         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Dydis          :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Sukūrimo vieta :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Sukūrimo laikas:"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Supakavo       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Tiekėjas       :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licencija      :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Išeities RPM   :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Įdėjimo laikas :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Įdėjo          :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Priežastis     :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Iš saugyklos   :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Įdiegė         :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Pakeitė        :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "įdiegta"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "atnaujinimas"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "pašalinta"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "perdiegta"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "grąžinimas"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "žymima pasenusiu"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "atnaujinta"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "pažymėta pasenusiu"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
 -msgstr "--> Vykdomas transakcijos tikrinimas"
 +msgstr "--> Vykdomas tranzakcijos tikrinimas"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
 -msgstr ""
 -"--> Iš naujo paleidžiamas priklausomybių sprendimas su naujais pakeitimais"
 +msgstr "--> Iš naujo paleidžiamas priklausomybių sprendimas su naujais pakeitimais"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Baigtas priklausomybių sprendimas"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Apdorojama priklausomybė: %s paketui: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Paliekamas paketas: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Paliekamas paketas: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Nerasta priklausomybė: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paketas: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -87289,7 +91432,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n    Reikalauja: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -87300,7 +91443,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -87311,7 +91454,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -87322,111 +91465,111 @@ index 4a1d933..d55cb3b 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Atnaujino"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Grąžino"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Pažymėjo pasenusiu"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Prieinamas"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Sprendžiamas konfliktas: %s konfliktuoja su %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr "--> Tęsiama transakcija su pasirinktais paketais. Palaukite."
 +msgstr "--> Tęsiama tranzakcija su pasirinktais paketais. Palaukite."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr "---> Grąžinama %s antraštė įpakavimui į transakcijos aibę."
 +msgstr "---> Grąžinama %s antraštė įpakavimui į tranzakcijos aibę."
-+
+ 
+-#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Tikrinama"
- 
--#: ../utils.py:99
-+#: ../utils.py:129
++
++#: ../utils.py:123
  msgid "Running"
  msgstr "Vykdoma"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Miegama"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Nepertraukiama"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombis"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Sekamas/Sustabdytas"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Nežinomas"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Kita programa yra: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Kita programa yra: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "  Atmintis : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "   Paleista: %s - prieš %s"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Būsena : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -87438,7 +91581,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n\nIšeinama naudotojui nutraukus"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -87450,7 +91593,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n\nIšeinama dėl nutraukto konvejerio"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -87460,54 +91603,52 @@ index 4a1d933..d55cb3b 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Kita programa šiuo metu turi yum užraktą; išeinama, kaip nustatyta parametru"
 -" exit_on_lock"
-+msgstr "Kita programa šiuo metu turi yum užraktą; išeinama, kaip nustatyta parametru exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit klaida: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum klaida: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Klaida: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -87517,11 +91658,11 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\nIšspręstos priklausomybės"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Baigta!"
  
-@@ -1517,7 +1586,7 @@ msgstr " Mini naudojimas:\n"
+@@ -1517,7 +1663,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."
  
@@ -87530,7 +91671,7 @@ index 4a1d933..d55cb3b 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1532,479 +1601,493 @@ msgid ""
+@@ -1532,479 +1678,551 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -87564,54 +91705,74 @@ index 4a1d933..d55cb3b 100644
  msgstr "Klaida: %s reikia perduoti paketų sąrašą"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
 -msgstr "Klaida: reikia atitikimens"
 +msgstr "Klaida: reikia atitikmens"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Klaida: reikia grupės arba grupių sąrašo"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Klaida: clean reikalauja parinkties: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Klaida: netinkamas clean argumentas: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Nėra argumento apvalkalui"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Failo pavadinimas, perduotas apvalkalui: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
 -msgstr ""
 -"Klaida: daugiau nei vienas failas perduotas kaip argumentas apvalkalui."
 +msgstr "Klaida: daugiau nei vienas failas perduotas kaip argumentas apvalkalui."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -87623,112 +91784,112 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Nėra įjungtų saugyklų.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKETAS..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Įdiegti paketą arba paketus jūsų sistemoje"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Nustatomas diegimo procesas"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKETAS...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Atnaujinti paketą arba paketus jūsų sistemoje"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Nustatomas atnaujinimo procesas"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Sinchronizuoti įdiegtus paketus į naujausias prieinamas versijas"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Nustatomas distribucijos sinchronizacijos procesas"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "Rodyti informaciją apie paketą arba paketų grupę"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Įdiegti paketai"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Prieinami paketai"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Papildomi paketai"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Atnaujinti paketai"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Paketai žymimi pasenusiais"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Neseniai pridėti paketai"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Nėra atitinkančių paketų išvardinimui"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Išvardinti paketus arba paketų grupes"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Pašalinti paketą arba paketus iš sistemos"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Nustatomas šalinimo procesas"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Rodyti arba naudoti grupių informaciją"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Nustatomas grupės procesas"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Nėra grupių, kurioms vykdyti komandą"
  
@@ -87739,7 +91900,7 @@ index 4a1d933..d55cb3b 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Įdiegti grupės paketus jūsų sistemoje"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Netinkama grupių po-komanda, naudokite: %s."
@@ -87747,79 +91908,79 @@ index 4a1d933..d55cb3b 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Nėra įdiegtų grupių failo."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Parodyti informaciją apie paketų grupę"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Jūs neturite prieigos prie grupių DB."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Generuoti metaduomenų podėlį"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Kuriami podėlio failai visiems metaduomenų failams."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metaduomenų podėlis sukurtas"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Pašalinti podėlio duomenis"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Rasti, kuris paketas teikia pateiktą reikšmę"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Tikrinti prieinamus paketų atnaujinimus"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Ieškoti paketų informacijos pateiktai eilutei"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Ieškoma paketų:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Atnaujinti paketus įvertinant pasenusius"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Nustatomas atnaujinimo procesas"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Įdiegti vietinį RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Nustatomas vietinio paketo procesas"
  
@@ -87828,151 +91989,151 @@ index 4a1d933..d55cb3b 100644
 -msgstr "Nustatyti, kuris paketas teikia pateiktą priklausomybę"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Ieškoti paketų priklausomybei:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Paleisti interaktyvų yum apvalkalą"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Nustatomas Yum apvalkalas"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Išvardinti paketo priklausomybes"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Randamos priklausomybės:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Rodyti nustatytas programinės įrangos saugyklas"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "įjungta"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "išjungta"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Saugyklos id : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Saugyklos pavadinimas: "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Saugyklos būsena: "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
 -msgstr "Saugyklos poversijis: "
 +msgstr "Saugyklos po-versija: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Saugyklos žymos: "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Saugyklos distribucijos žymos: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Saugykla atnaujinta: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Saugyklos paketai: "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Saugyklos dydis: "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Saugyklos bazinis url: "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Saugyklos metasaitas: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Atnaujinta : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Saugyklos tinklavietės: "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Niekada (paskutinis: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Neatdėliotinas (paskutinis: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekundė(s) (paskutinis: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Saugykla pasensta: "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Saugykla išskiria: "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Saugykla įtraukia: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Saugykloje išskirta: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Saugyklos failas: "
@@ -87980,33 +92141,33 @@ index 4a1d933..d55cb3b 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "Saugyklos id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "būsena"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "saugyklos pavadinimas"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Parodyti naudingą naudojimo pranešimą"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Nėra pagalbos veiksmui %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -88018,7 +92179,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n\nalternatyvūs vardai: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -88030,156 +92191,194 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\n\nalternatyvus vardas: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Nustatomas perdiegimo procesas"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "perdiegti paketą"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Nustatomas grąžinimo procesas"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "grąžinti paketą"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr "Parodyti mašinos ir prieinamų saugyklų versiją."
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr "Yum versijų grupės:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grupė   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr "  Paketai:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "  Įdiegti:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Įdiegti per grupes:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Prieinami:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Prieinami per grupes:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
 -msgstr "Parodyti arba naudoti transakcijų istoriją"
 +msgstr "Parodyti arba naudoti tranzakcijų istoriją"
- 
--#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Tranzakcijos:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Pradžia     :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Pabaiga     :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Kartai      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
-+
-+#: ../yumcommands.py:2606
+ 
+-#: ../yumcommands.py:1432
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Netinkama istorijos po-komanda, naudokite: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Jūs neturite priėjimo prie istorijos DB."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Ieškoti problemų rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr "įkelti išsaugotą transakciją iš failo"
 +msgstr "įkelti išsaugotą tranzakciją iš failo"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr "Nenurodytas įšsaugotos transakcijos failas."
 +msgstr "Nenurodytas įšsaugotos tranzakcijos failas."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr "įkeliama transakcija iš %s"
 +msgstr "įkeliama tranzakcija iš %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
 -msgstr "Transakcija, įkelta iš %s su %s nariais"
 +msgstr "Tranzakcija, įkelta iš %s su %s nariais"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
-@@ -2012,105 +2095,110 @@ msgstr "Transakcija, įkelta iš %s su %s nariais"
+@@ -2012,105 +2230,101 @@ msgstr "Transakcija, įkelta iš %s su %s nariais"
  msgid " Yum checks failed: %s"
  msgstr " Yum ckeck nepavyko: %s"
  
@@ -88187,32 +92386,25 @@ index 4a1d933..d55cb3b 100644
 -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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Nėra skaitymo/rašymo prieigos esamame kataloge, perkeliama į /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Nepavyko sukurti užrakto failo; išeinama"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Nėra getcwd() prieigos esamame kataloge, pereinama į /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Nepavyko sukurti užrakto failo; išeinama"
  
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Spredžiamos priklausomybės"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -88224,7 +92416,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Jūsų tranzakcija buvo įrašyta, paleiskite iš jaujo su: yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -88264,7 +92456,7 @@ index 4a1d933..d55cb3b 100644
  msgstr "Narys: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s pakeistas diegimui"
@@ -88321,7 +92513,7 @@ index 4a1d933..d55cb3b 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Veiksena paketui, teikiančiam %s: %s"
-@@ -2118,1028 +2206,1071 @@ msgstr "Veiksena paketui, teikiančiam %s: %s"
+@@ -2118,1028 +2332,1142 @@ 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 :(
@@ -88332,131 +92524,141 @@ index 4a1d933..d55cb3b 100644
  msgstr "Bandoma atnaujinti %s priklausomybių išsprendimui"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr "Nerasta %s atnaujinimo kelių. Klaida!"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s jau ts, praleidžiama"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
 -msgstr "Sėkminga - tuščia transakcija"
 +msgstr "Sėkminga - tuščia tranzakcija"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Iš naujo paleidžiamas ciklas"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Užbaigiamas priklausomybių procesas"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Sėkminga - priklausomybės išspręstos"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Ieškoma %s priklausomybių"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "%s vykdoma compare_providers()"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "po %s geresnė architektūra"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s žymi pasenusiu %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -88467,25 +92669,25 @@ index 4a1d933..d55cb3b 100644
 +msgstr "archdist palygino %s su %s vietoje %s\n  Nugalėtojas: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "bendras išeities rpm %s ir %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "bazinis paketas %s įdiegtas paketui %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "reikalauja mažiausiai: %d"
@@ -88493,153 +92695,163 @@ index 4a1d933..d55cb3b 100644
 +msgstr "suteikia vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Nugalėtojas: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "reikalauja mažiausiai: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Pralaimėtojas (su %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Geriausia tvarka: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "Saugykla %r: klaida skaitant konfigūraciją: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "įskiepiai jau pakrauti"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Skaitoma vietinė RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Nustatomos paketų aibės"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Kuriami atnaujinimo objektai"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Gaunami grupės metaduomenys"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Pridedamas grupės failas iš saugyklos: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Nėra prieinamų grupių jokioje saugykloje"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Gaunami pkgtags metaduomenys"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Pridedamos žymos iš saugyklos: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importuojama papildoma failų sąrašų informacija"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -88649,24 +92861,58 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Yra likusių nebaigtų tranzakcijų. Jūs turbūt norite paleisti yum-complete-transaction joms užbaigti."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Randamos nereikalingos paliktos priklausomybės"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Apsaugotos daugiabibliokekės versijos: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -88676,35 +92922,35 @@ index 4a1d933..d55cb3b 100644
 +msgstr "\nPaketai, praleisti dėl priklausomybių problemų:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s iš %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, 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:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Įspėjimas: RPMDB pakeista už yum ribų."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "trūksta reikalavimų"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "įdiegtas konfliktas"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -88713,20 +92959,20 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Įspėjimas: scenarijaus arba kitos negalutinės klaidos įvyko tranzakcijos metu."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
 -msgstr "Transakcijos paleisti nepavyko:"
 +msgstr "Tranzakcijos paleisti nepavyko:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
 -msgstr "Nepavyko paleisti transakcijos."
 +msgstr "Nepavyko paleisti tranzakcijos."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
 -msgstr "Nepavyko pašalinti transakcijos failo %s"
@@ -88735,7 +92981,7 @@ index 4a1d933..d55cb3b 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s turėjo būti įdiegtas, bet nebuvo!"
@@ -88746,7 +92992,7 @@ index 4a1d933..d55cb3b 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s turėjo būti pašalintas, bet nebuvo!"
@@ -88764,32 +93010,32 @@ index 4a1d933..d55cb3b 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr "Nepavyko sukurti užrakto %s: %s"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Nepavyko atverti užrakto %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Nepavyksta patikrinti, ar PID %s yra aktyvus"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -88800,23 +93046,23 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Paketai nesutampa su pageidautu parsiuntimu. Pasiūlymas: paleisti yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Nepavyko patikrinti kontrolinės sumos"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paketo kontrolinė suma nesutampa"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "naudojama vietinė %s kopija"
@@ -88827,18 +93073,21 @@ index 4a1d933..d55cb3b 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Nepakanka vietos parsiuntimų kataloge %s\n"
 -"    * laisva %s\n"
 -"    * reikia %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Antraštė nepilna."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -88848,55 +93097,55 @@ index 4a1d933..d55cb3b 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "%s viešas raktas neįdiegtas"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problema atveriant paketą %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "%s viešasis raktas nepatikimas"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Paketas %s nepasirašytas"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Nepavyksta pašalinti %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s pašalintas"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Nepavyksta pašalinti %s failo %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s failas %s pašalintas"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s failai pašalinti"
@@ -88907,19 +93156,19 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "%d %s failų pašalintas"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -88929,7 +93178,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "searchPackages() bus pašalinta ateities Yum versijose.                      Naudokite searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Ieškoma %d paketų"
@@ -88940,111 +93189,128 @@ index 4a1d933..d55cb3b 100644
 +msgstr[2] "Ieškoma %d paketų"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "ieškoma paketo %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "ieškoma failų įrašuose"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "ieškoma teikimo įrašuose"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Praleidžiamas paketas %s iš grupės %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Pridedamas paketas %s iš grupės %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Įspėjimas: grupė %s neturi jokių paketų."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Įspėjimas: grupė %s neturi jokių paketų."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Nerastas paketas %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Paketo objektas nebuvo paketo objekto egzempliorius"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nieko nenurodyta įdiegti"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Tikrinamas virtualus tiekimas arba failo tiekimas %s"
@@ -89056,31 +93322,31 @@ index 4a1d933..d55cb3b 100644
 -msgstr "Nėra atitikmens argumentui: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Paketas %s įdiegtas ir neprieinamas"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Nėra paketo(-ų), prieinamo diegimui"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
 -msgstr "Paketas: %s - jau transakcijos aibėje"
 +msgstr "Paketas: %s - jau tranzakcijos aibėje"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -89091,67 +93357,67 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Paketas %s pažymėtas pasenusiu paketo %s, bet žymėjimas pasenusiu neatitinka reikalavimų"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Nėra atitikmens argumentui: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Nerasta paketo atnaujinimui: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -89159,44 +93425,44 @@ index 4a1d933..d55cb3b 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nėra paketo atitikmens pašalinimui"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Nerasta paketo pašalinimui: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Praleidžiama ir vykdomas branduolys: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
 -msgstr "Pašalinamas %s iš transakcijos"
 +msgstr "Pašalinamas %s iš tranzakcijos"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Tikrinama %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -89205,7 +93471,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Nepavyksta pridėti paketo %s į tranzakciją. Nesuderinama architektūra: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -89213,7 +93479,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Nepavyksta įdiegti paketo %s. Jis pažymėtas pasenusiu įdiegto paketo %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -89224,7 +93490,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Paketas %s neįdiegtas, negalima jo atnaujinti. Paleiskite yum install jo įdiegimui."
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -89235,118 +93501,118 @@ index 4a1d933..d55cb3b 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Išskiriamas %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Žymimas %s įdiegimui"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "Žymimas %s kaip %s atnaujinimas"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Nepavyksta atverti failo: %s. Praleidžiama."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Nėra paketo(-ų) grąžinimui"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Nėra atitikmens prieinamam paketui: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Nepavyko grąžinti: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Nepavyko atnaujinti: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Gaunamas raktas iš %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Netinkamas GPG raktas iš %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -89365,7 +93631,7 @@ index 4a1d933..d55cb3b 100644
 +msgstr "Importuojamas %s raktas 0x%s:\n Naudotojas : „%s“\n Atspaudas  : %s\n Paketas    : %s (%s)\n Iš         : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -89379,9 +93645,8 @@ index 4a1d933..d55cb3b 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Importuojamas %s raktas 0x%s:\n Naudotojas : „%s“\n Atspaudas  : %s\n Iš         : %s"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -89390,30 +93655,31 @@ index 4a1d933..d55cb3b 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Nepavykęs paketas: %s\n GPG raktai yra sukonfigūruoti kaip: %s\n"
-+
-+#: ../yum/__init__.py:5393
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Raktas sėkmingai importuotas"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Neįdiegta jokių raktų"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -89424,20 +93690,20 @@ index 4a1d933..d55cb3b 100644
 +msgstr "GPG raktai, išvardinti „%s“ saugyklai, jau yra įdiegti, bet nėra teisingi šiam paketui.\nPatikrinkite, ar teisingi URL yra nustatyti šiai saugyklai."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Ne"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Taip"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -89448,7 +93714,7 @@ index 4a1d933..d55cb3b 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA raktas: %s\n Nepavykusi saugykla: %s\n GPG raktai yra sukonfigūruoti kaip: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG raktas iš %s (0x%s) jau importuotas"
@@ -89456,19 +93722,19 @@ index 4a1d933..d55cb3b 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Rakto importas nepavyko"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Rakto %s importavimas nepavyko"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -89479,123 +93745,127 @@ index 4a1d933..d55cb3b 100644
 +msgstr "GPG raktai, išvardinti „%s“ saugyklai, jau yra įdiegti, bet nėra teisingi.\nPatikrinkite, ar teisingi URL yra nustatyti šiai saugyklai."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Nepavyksta rasti tinkamos dubliuojančios tinklavietės."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Kilo klaidų parsiunčiant paketus."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Praneškite apie šią klaidą adresu %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
 -msgstr "Transakcijos testavimo klaidos: "
 +msgstr "Tranzakcijos testavimo klaidos: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr "Priklausomybės neįšspręsto. Neišsaugoma neišspręsta transakcija."
 +msgstr "Priklausomybės neįšspręsto. Neišsaugoma neišspręsta tranzakcija."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr "Nepavyko išsaugoti transakcijos į failą %s: %s"
 +msgstr "Nepavyko išsaugoti tranzakcijos į failą %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr "Nepavyko pasiekti/perskaityti išsaugotos transakcijos %s : %s"
-+msgstr "Nepavyko pasiekti/perskaityti išsaugotos tranzakcijos %s : %s"
- 
+-
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
 -msgstr "rpmdb versija nesutampa su išsaugotos transakcijos versija, "
-+msgstr "rpmdb versija nesutampa su išsaugotos tranzakcijos versija, "
- 
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " nepaisoma, kaip nurodyta."
+-msgid " ignoring, as requested."
+-msgstr " nepaisoma, kaip nurodyta."
++msgstr "Nepavyko pasiekti/perskaityti išsaugotos tranzakcijos %s : %s"
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " atšaukiama."
+-msgid " aborting."
+-msgstr " atšaukiama."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr "Trūksta transakcijos narių, ryšių arba transakcija buvo pakeista,"
 +msgstr "Trūksta tranzakcijos narių, ryšių arba transakcija buvo pakeista,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " nepaisoma, kaip nurodyta. Jūs turite išspręsti priklausomybes!"
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s jau buvo aplankytas ir negali būti pašalintas."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Tikrinama %s revdeps"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s turi revdep %s, kuri yra naudotojo įdiegta."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s neturi naudotojo įdiegtų revdeps."
@@ -89697,7 +93967,7 @@ index 4a1d933..d55cb3b 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s teikia %s, bet nepavyksta jo rasti"
-@@ -3148,6 +3279,19 @@ msgstr "%s teikia %s, bet nepavyksta jo rasti"
+@@ -3148,6 +3476,23 @@ msgstr "%s teikia %s, bet nepavyksta jo rasti"
  msgid "Repackaging"
  msgstr "Perpakuojama"
  
@@ -89706,7 +93976,7 @@ index 4a1d933..d55cb3b 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Patikrinti: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -89714,10 +93984,14 @@ index 4a1d933..d55cb3b 100644
 +"    * needed %s"
 +msgstr "Nepakanka vietos parsiuntimų kataloge %s\n    * laisva %s\n    * reikia %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3160,8 +3304,7 @@ msgstr "RPM %s neatitinka md5 tikrinimo"
+@@ -3160,8 +3505,7 @@ msgstr "RPM %s neatitinka md5 tikrinimo"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -89727,17 +94001,17 @@ index 4a1d933..d55cb3b 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3177,5 +3320,3 @@ msgstr "Sugadinta antraštė %s"
+@@ -3177,5 +3521,3 @@ msgstr "Sugadinta antraštė %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Klaida atveriant rpm %s - klaida %s"
 -
 -
 diff --git a/po/mr.po b/po/mr.po
-index 5163eab..2f2620d 100644
+index 5163eab..ac51b9e 100644
 --- a/po/mr.po
 +++ b/po/mr.po
-@@ -2,427 +2,455 @@
+@@ -2,427 +2,506 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -89751,8 +94025,8 @@ index 5163eab..2f2620d 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Marathi (http://www.transifex.net/projects/p/yum/team/mr/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Marathi (http://www.transifex.com/projects/p/yum/language/mr/)\n"
  "MIME-Version: 1.0\n"
@@ -89763,7 +94037,7 @@ index 5163eab..2f2620d 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -89774,31 +94048,31 @@ index 5163eab..2f2620d 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -89825,7 +94099,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -89835,69 +94109,69 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -89908,121 +94182,147 @@ index 5163eab..2f2620d 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -90032,12 +94332,12 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -90047,12 +94347,12 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -90062,14 +94362,14 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -90077,13 +94377,13 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -90091,7 +94391,7 @@ index 5163eab..2f2620d 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -90099,58 +94399,58 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -90159,115 +94459,140 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, 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:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -90277,392 +94602,400 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +458,452 @@ msgid ""
+@@ -430,438 +509,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -90670,165 +95003,189 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -90836,387 +95193,387 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +911,58 @@ msgid ""
+@@ -869,57 +994,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +970,7 @@ msgstr ""
+@@ -927,7 +1053,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +978,542 @@ msgid ""
+@@ -935,484 +1061,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -91225,17 +95582,17 @@ index 5163eab..2f2620d 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -91248,224 +95605,225 @@ index 5163eab..2f2620d 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -91473,7 +95831,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -91481,7 +95839,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -91489,7 +95847,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -91497,38 +95855,38 @@ index 5163eab..2f2620d 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -91536,70 +95894,70 @@ index 5163eab..2f2620d 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -91607,7 +95965,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -91615,68 +95973,67 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1521,47 @@ msgid ""
+@@ -1420,47 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1573,7 @@ msgstr ""
+@@ -1472,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -91685,7 +96042,7 @@ index 5163eab..2f2620d 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1590,488 @@ msgid ""
+@@ -1489,555 +1667,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -91702,51 +96059,71 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -91754,200 +96131,200 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -91956,183 +96333,183 @@ index 5163eab..2f2620d 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -92140,7 +96517,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -92148,180 +96525,210 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -92330,7 +96737,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -92366,7 +96773,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -92423,7 +96830,7 @@ index 5163eab..2f2620d 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2193,1069 @@ msgstr ""
+@@ -2045,991 +2316,1140 @@ 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 :(
@@ -92434,130 +96841,140 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -92565,254 +96982,298 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -92820,7 +97281,7 @@ index 5163eab..2f2620d 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -92831,14 +97292,14 @@ index 5163eab..2f2620d 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -92846,7 +97307,7 @@ index 5163eab..2f2620d 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -92854,7 +97315,7 @@ index 5163eab..2f2620d 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -92863,14 +97324,14 @@ index 5163eab..2f2620d 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -92878,23 +97339,23 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -92905,70 +97366,73 @@ index 5163eab..2f2620d 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -92978,26 +97442,26 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -93007,111 +97471,127 @@ index 5163eab..2f2620d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -93123,30 +97603,30 @@ index 5163eab..2f2620d 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -93154,123 +97634,123 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -93278,7 +97758,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -93286,118 +97766,118 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -93411,7 +97891,7 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -93420,9 +97900,10 @@ index 5163eab..2f2620d 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -93430,32 +97911,31 @@ index 5163eab..2f2620d 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -93463,20 +97943,20 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -93487,26 +97967,26 @@ index 5163eab..2f2620d 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -93514,117 +97994,121 @@ index 5163eab..2f2620d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -93724,7 +98208,7 @@ index 5163eab..2f2620d 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3264,19 @@ msgstr ""
+@@ -3038,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -93733,7 +98217,7 @@ index 5163eab..2f2620d 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -93741,20 +98225,24 @@ index 5163eab..2f2620d 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3305,3 @@ msgstr ""
+@@ -3066,5 +3503,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/ms.po b/po/ms.po
-index 2b9119e..40f414c 100644
+index 2b9119e..f93023c 100644
 --- a/po/ms.po
 +++ b/po/ms.po
-@@ -2,427 +2,446 @@
+@@ -2,427 +2,497 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -93767,8 +98255,8 @@ index 2b9119e..40f414c 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -93779,7 +98267,7 @@ index 2b9119e..40f414c 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -93790,31 +98278,31 @@ index 2b9119e..40f414c 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -93841,7 +98329,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -93851,69 +98339,69 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -93923,120 +98411,146 @@ index 2b9119e..40f414c 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
 +#, python-format
-+msgid "%d package to install"
-+msgid_plural "%d packages to install"
-+msgstr[0] ""
++msgid "Bad %s argument %s."
+ msgstr ""
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:900 ../yumcommands.py:3331
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -94045,12 +98559,12 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -94059,12 +98573,12 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -94073,27 +98587,27 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -94101,65 +98615,65 @@ index 2b9119e..40f414c 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -94168,114 +98682,139 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
--msgstr ""
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -94284,392 +98823,400 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +449,451 @@ msgid ""
+@@ -430,438 +500,483 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ya"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "t"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "tidak"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Adakah ini ok [y/T]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -94677,551 +99224,575 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
 +msgstr[0] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versi"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Saiz"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +901,57 @@ msgid ""
+@@ -869,57 +984,57 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +959,7 @@ msgstr ""
+@@ -927,7 +1042,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +967,542 @@ msgid ""
+@@ -935,484 +1050,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -95230,17 +99801,17 @@ index 2b9119e..40f414c 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -95253,224 +99824,225 @@ index 2b9119e..40f414c 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -95478,7 +100050,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -95486,7 +100058,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -95494,7 +100066,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -95502,38 +100074,38 @@ index 2b9119e..40f414c 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -95541,70 +100113,70 @@ index 2b9119e..40f414c 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -95612,7 +100184,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -95620,68 +100192,67 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1510,47 @@ msgid ""
+@@ -1420,47 +1593,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1562,7 @@ msgstr ""
+@@ -1472,7 +1639,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -95690,7 +100261,7 @@ index 2b9119e..40f414c 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1579,488 @@ msgid ""
+@@ -1489,555 +1656,645 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -95707,51 +100278,71 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -95759,200 +100350,200 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -95961,183 +100552,183 @@ index 2b9119e..40f414c 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -96145,7 +100736,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -96153,180 +100744,207 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2071,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -96335,7 +100953,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -96371,7 +100989,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -96428,7 +101046,7 @@ index 2b9119e..40f414c 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2182,1067 @@ msgstr ""
+@@ -2045,991 +2302,1138 @@ 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 :(
@@ -96439,130 +101057,140 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -96570,254 +101198,298 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -96825,7 +101497,7 @@ index 2b9119e..40f414c 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -96836,14 +101508,14 @@ index 2b9119e..40f414c 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -96851,7 +101523,7 @@ index 2b9119e..40f414c 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -96859,7 +101531,7 @@ index 2b9119e..40f414c 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -96868,14 +101540,14 @@ index 2b9119e..40f414c 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -96883,23 +101555,23 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Tidak dapat melaksanakan checksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "menggunakan salinan tempatan bagi %s"
@@ -96910,70 +101582,73 @@ index 2b9119e..40f414c 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Pengepala tidak lengkap."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Masalah membuka pakej %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Pakej %s tidak ditandatangan"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Tidak dapat membuang %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Tidak dapat membuang %s fail %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s fail %s dibuang"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s fail dibuang"
@@ -96982,26 +101657,26 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Mencari %d pakej"
@@ -97010,111 +101685,127 @@ index 2b9119e..40f414c 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "mencari pakej %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Tiada Pakej dijumpai untuk %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -97126,30 +101817,30 @@ index 2b9119e..40f414c 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -97157,123 +101848,123 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Memeriksa %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -97281,7 +101972,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -97289,118 +101980,118 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Menanda %s untuk dipasang"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Tidak dapat membuka fail: %s. Melangkau."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -97414,7 +102105,7 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -97423,9 +102114,10 @@ index 2b9119e..40f414c 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -97433,32 +102125,31 @@ index 2b9119e..40f414c 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Kekunci berjaya diimport"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -97466,20 +102157,20 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -97490,26 +102181,26 @@ index 2b9119e..40f414c 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -97517,117 +102208,121 @@ index 2b9119e..40f414c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Ralat Ujian Transaksi:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -97727,7 +102422,7 @@ index 2b9119e..40f414c 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3251,19 @@ msgstr ""
+@@ -3038,6 +3442,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -97736,7 +102431,7 @@ index 2b9119e..40f414c 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -97744,20 +102439,24 @@ index 2b9119e..40f414c 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3292,3 @@ msgstr "Pengepala Rosak %s"
+@@ -3066,5 +3487,3 @@ msgstr "Pengepala Rosak %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Ralat membuka rpm %s - ralat %s"
 -
 -
 diff --git a/po/nb.po b/po/nb.po
-index d2ee996..84f440e 100644
+index d2ee996..656e27e 100644
 --- a/po/nb.po
 +++ b/po/nb.po
-@@ -2,940 +2,967 @@
+@@ -2,940 +2,1050 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -97770,8 +102469,8 @@ index d2ee996..84f440e 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -97782,7 +102481,7 @@ index d2ee996..84f440e 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Oppdaterer"
  
@@ -97793,31 +102492,31 @@ index d2ee996..84f440e 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Oppdatert"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installert"
  
@@ -97844,7 +102543,7 @@ index d2ee996..84f440e 100644
  msgstr "Fjernet: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Fjerner"
  
@@ -97854,69 +102553,69 @@ index d2ee996..84f440e 100644
  msgstr "Rydder opp"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Kommando «%s» er allerede definert"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Konfigurerer lagre"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Feil i konfigurasjon: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Feil i flagg: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "Installert: %s-%s til %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Bygd      : %s til %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "Sendt inn: %s til %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Du må oppgi en kommando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Krav til disk:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -97927,83 +102626,104 @@ index d2ee996..84f440e 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "Sammendrag for feil\n---------------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
+ msgstr ""
 -"Sammendrag for feil\n"
 -"---------------------\n"
-+msgstr "Sammendrag for feil\n---------------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Avslutter på grunn av kommando fra bruker"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Laster ned pakker:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Kunne ikke laste ned pakkene:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Vennligst rapporter denne feilen i %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Kjører test på transaksjonen"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Feil ved test av transaksjonen:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Test av transaksjonen var vellykket"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Utfører transaksjonen"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -98013,18 +102733,18 @@ index d2ee996..84f440e 100644
 +msgstr "Nekter å importere nøkler automatisk ved kjøring uten oppsyn.\nBruk «-y» for å overstyre."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Du mente kanskje:"
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Pakke %s%s%s er ikke tilgjengelig."
@@ -98032,7 +102752,12 @@ index d2ee996..84f440e 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Pakke(r) som skal installeres"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -98041,13 +102766,13 @@ index d2ee996..84f440e 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Ingenting å gjøre"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pakker merket for oppdatering"
@@ -98057,12 +102782,12 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Ingen pakker merket for oppdatering"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -98072,12 +102797,12 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pakker merket for fjerning"
@@ -98087,14 +102812,14 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -98102,13 +102827,13 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (fra %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Den installerte pakken %s%s%s%s er ikke tilgjengelig."
@@ -98116,7 +102841,7 @@ index d2ee996..84f440e 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Pakke(r) som skal ominstalleres"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -98124,58 +102849,58 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Ingen pakker ble tilbudt"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pakke(r) som skal installeres"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Advarsel: Ingen treff funnet for: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Fant ingen treff"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Ingen pakke ble funnet for %s"
@@ -98185,89 +102910,109 @@ index d2ee996..84f440e 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Rydder opp alt"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Rydder opp pakkehoder"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Rydder opp pakker"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Rydder opp i XML-metadata"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Rydder opp i mellomlager for database"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Rydder opp i metadata for expire-cache"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Rydder opp i programtillegg"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Installerte grupper:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Tilgjengelig grupper:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Ferdig"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Advarsel: Gruppe %s eksisterer ikke."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"Ingen pakker tilgjengelig for installering eller oppdatering i aktuelle "
@@ -98275,7 +103020,7 @@ index d2ee996..84f440e 100644
 +msgstr "Ingen pakker tilgjengelig for installering eller oppdatering i aktuelle grupper"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d pakke(r) vil bli installert"
@@ -98285,18 +103030,24 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Det finnes ingen gruppe med navn %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Ingen pakker å fjerne fra grupper"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pakker vil bli fjernet"
@@ -98306,20 +103057,20 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Pakke %s er allerede lagt inn, hopper over"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -98328,18 +103079,18 @@ index d2ee996..84f440e 100644
 +msgstr "Ingen annen %s er lagt inn, legger til pakke til liste over potensielle pakker"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Programtilleggs valg"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Feil med kommandolinje: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -98352,353 +103103,361 @@ index d2ee996..84f440e 100644
 +msgstr "\n\n%s: flagg %s krever et argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "vis denne hjelpteksten og avslutt"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "vær tolerant ved feil"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "plassering av konfigurasjonsfil"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maksimaltid for å vente på kommando"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nivå for tilbakemeldinger ved avlusing"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "mengde tilbakemelding ved feil"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "stille operasjon"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "vis ekstra informasjon"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "svar Ja til alle spørsmål"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "vis Yum-versjon og avslutt"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "sett rot for installasjonen"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "legger til et eller flere lager (jokertegn er tillatt)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "slå av et eller flere lager (jokertegn er tillatt)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "overse pakke(r) ved navn eller mønster"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "ta med foreldede pakker i beregningen ved oppdatering"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "ikke bruk programtilleggene til Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "ikke sjekk GPG-signaturer"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "slå av tillegg til yum etter navn"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "slå av programtillegg til yum etter navn"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "hopp over pakker som har problemer med avhengigheter"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontroller om farger er brukt"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "mai"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "aug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "des"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Prøver et annet speil."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Arkiv      : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "Nettadresse        : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Beskrivelse : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "j"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ja"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nei"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Er dette ok [j/N]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -98709,165 +103468,189 @@ index d2ee996..84f440e 100644
 +msgstr "\nGruppe:%s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr "GruppeId:%s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Beskrivelse: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr "Obligatoriske pakker:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr "Standard pakker:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr "Valgfrie pakker:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr "Betingede pakker:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "pakke: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr " Ingen avhengigheter for denne pakka"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr " avhengighet: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr " avhengighet som ikke kunne tilfredstilles"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Treff fra:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Lisens     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Filnavn     : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Andre ting       : %s"
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Totale størrelse: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Totale størrelse på pakker som hentes: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Ominstallerer"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Nedgraderer"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Legges inn på grunn avhengigheter"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Oppdateres på grunn avhengigheter"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Fjernes på grunn avhengigheter"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Hoppet over (problemer med avhengigheter)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Pakke"
 +msgid_plural "Packages"
@@ -98875,33 +103658,33 @@ index d2ee996..84f440e 100644
 +msgstr[1] "Pakke"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arkitektur"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versjon"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Pakkeoversikt"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Størrelse"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -98916,86 +103699,86 @@ index d2ee996..84f440e 100644
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Fjernet"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Fjernet på grunn avhengighet"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Lagt inn på grunn av avhengighet"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Oppdatert på grunn avhengighet"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Erstattet"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Feilet"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "to"
  
-@@ -943,501 +970,550 @@ msgstr "to"
+@@ -943,501 +1053,550 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -99008,262 +103791,262 @@ index d2ee996..84f440e 100644
 +msgstr "\n Pågående nedlastning er avbrutt, %s avbryt (ved å trykke Ctrl-C) %s ganger til innen %s%s%s sekunder\nfor å avslutte.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "avbrutt av bruker"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Totalt"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -99272,17 +104055,17 @@ index d2ee996..84f440e 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -99295,224 +104078,225 @@ index d2ee996..84f440e 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installert"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "fjernet"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "oppdatert"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "foreldet"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Utfører sjekk av transaksjonen"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Starter løsing av avhengigheter på nytt med endringer"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Alle avhengigheter er løst"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Beregner avhengighet: %s for pakke: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Avhengigheter som ikke kunne bli tilfredstilt: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -99520,7 +104304,7 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -99528,7 +104312,7 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -99536,7 +104320,7 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -99544,38 +104328,38 @@ index d2ee996..84f440e 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Beregner konflikter: %s er i konflikt med %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> Fyller transaksjonen med valgte pakker. Vennligst vent."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Henter ned filhode for pakke %s for å fylle transaksjonen."
@@ -99583,70 +104367,70 @@ index d2ee996..84f440e 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Kjører"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Sover"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Sporet/Stoppet"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Ukjent"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Det andre programmet er: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Det andre programmet er: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Minne : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Startet for %s - %s siden"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Status  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -99658,7 +104442,7 @@ index d2ee996..84f440e 100644
 +msgstr "\n\nAvslutter etter ønske"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -99670,57 +104454,56 @@ index d2ee996..84f440e 100644
 +msgstr "\n\nAvslutter på grunn av brutt rør"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1445,49 +1521,47 @@ msgid ""
+@@ -1445,49 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Feil: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Ukjent feil: feilkode: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -99730,11 +104513,11 @@ index d2ee996..84f440e 100644
 +msgstr "\nAlle avhengigheter er løst"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Ferdig!"
  
-@@ -1499,7 +1573,7 @@ msgstr ""
+@@ -1499,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Du må være rootbruker for å utføre denne kommandoen."
  
@@ -99743,7 +104526,7 @@ index d2ee996..84f440e 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1514,471 +1588,490 @@ msgid ""
+@@ -1514,579 +1665,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -99774,40 +104557,60 @@ index d2ee996..84f440e 100644
  msgstr "Feil: du må oppgi en liste med pakker som skal %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Feil: trenger noe å sammenligne med"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Feil: trenger en gruppe eller en liste med grupper"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Feil: clean trenger minst et argument: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Feil: ugyldig argument gitt til kommandoen clean: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Ingen argumenter ble gitt til kommandoen shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Følgende filnavn ble sendt til skallet: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
@@ -99815,12 +104618,12 @@ index d2ee996..84f440e 100644
 +msgstr "Filen %s som ble gitt som argument til kommandoen shell eksisterer ikke."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -99828,112 +104631,112 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKKE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Legg inn en eller flere pakker på systemet"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Forberedelser for installasjon"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKKE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Oppdater en eller flere pakker på systemet"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Forberedelser for oppdatering"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Pakker som er installert"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Tilgjengelige pakker"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Tilleggspakker"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Oppdaterte pakker"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Utdaterte pakker"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Pakker som nylig er lagt til"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Ingen passende pakker å liste opp"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Lag en liste med pakker eller grupper av pakker"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Fjern en eller flere pakker fra systemet"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Klargjør for fjerning av pakker"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Klargjør grupper med pakker"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Ingen gruppe er valgt for aktuell kommando"
  
@@ -99944,7 +104747,7 @@ index d2ee996..84f440e 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Legger inn pakkene i en gruppe på systemet"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -99952,79 +104755,79 @@ index d2ee996..84f440e 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Fjern pakkene i en gruppe fra systemet"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Viser detaljer om en gruppe av pakker"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Lag mellomlager med metadata"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Lager mellomlager for samtlige filer med metadata."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Mellomlager er ferdig lagd"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Fjern mellomlager med metadata"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Finn hvilken pakke som inneholder etterspurt verdi"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Se etter tilgjengelige pakkeoppdateringer"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Søker etter oppgitt streng i pakkedetaljene"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Søker i pakker: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Oppdater pakker og ta hensyn til pakker som blir utdatert"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Klargjør for oppdatering"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Legger inn en RPM fra filsystemet"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Klargjøring for pakker på lokalt filsystem"
  
@@ -100033,183 +104836,183 @@ index d2ee996..84f440e 100644
 -msgstr "Finner hvilken pakke som tilbyr den gitte avhengigheten"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Søker i pakker etter avhengighet:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Kjører det interaktive Yum-skallet"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Klargjør Yum-skallet"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Vis avhengigheter for en pakke"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Finner avhengigheter: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Viser de pakkeoversiktene som er satt opp"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "aktiv"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "inaktiv"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Arkivrevisjon: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Arkivdistribusjonsmerkelapper:"
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Arkivmetalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Oppdatert    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "arkiv id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "arkiv navn"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Viser en hjelpetekst"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Ingen hjelp er tilgjengelig for %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -100221,7 +105024,7 @@ index d2ee996..84f440e 100644
 +msgstr "\n\nalias:"
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -100233,181 +105036,211 @@ index d2ee996..84f440e 100644
 +msgstr "\n\nalias:"
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Klargjør for å legge inn pakke(r) på nytt"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "ominstaller en pakke "
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Klargjør for oppdatering"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "nedgrader en pakke"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installert:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Tilgjengelig:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1989,104 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() 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:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+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:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Løser avhengigheter"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -100416,7 +105249,7 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -100456,7 +105289,7 @@ index d2ee996..84f440e 100644
  msgstr "Medlem: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s ble omdannet til installering"
@@ -100513,7 +105346,7 @@ index d2ee996..84f440e 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Modus for pakke som tilbyr %s: %s"
-@@ -2094,1016 +2193,1069 @@ msgstr "Modus for pakke som tilbyr %s: %s"
+@@ -2094,1016 +2316,1140 @@ 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 :(
@@ -100524,50 +105357,60 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -100575,81 +105418,81 @@ index d2ee996..84f440e 100644
 +msgstr "Pakke %s som potensielt løser opp avhengighet har nyere instans in ts."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Suksess - transaksjonen er tom"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Starter sløyfe på nytt"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Beregning av avhengighet avsluttes"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Suksess - alle avhengigheter er tilfredstilt"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Sjekker avhengigheter for %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "bedre arch i po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s faser ut %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -100660,178 +105503,188 @@ index d2ee996..84f440e 100644
 +msgstr "archdist sammenlignet %s med %s på %s\n Vinner: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "felles kilderpm %s og %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Beste rekkefølge: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "tillegg til yum er allerede initiert"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Leser inn lokal RPM-database"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Lager sekker med pakker"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "derfor kan ikke denne pakkeoversikten nullstilles\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Bygger opp oppdateringsobjekt"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Henter metadata for grupper"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Legger til gruppefil fra pakkeoversikt: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Ingen grupper tilgjengelig fra noen lagre"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Henter mer informasjon om fil-lister"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -100841,24 +105694,58 @@ index d2ee996..84f440e 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -100868,35 +105755,35 @@ index d2ee996..84f440e 100644
 +msgstr "\nPakker som ble oversett på grunn av problemer med avhengigheter:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s fra %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -100905,18 +105792,18 @@ index d2ee996..84f440e 100644
 +msgstr "Advarsel: et scriptlet eller andre ikkekritiske feil oppstod under transaksjonen."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Kunne ikke fjerne transaksjonsfil %s"
@@ -100924,7 +105811,7 @@ index d2ee996..84f440e 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s var ment til å bli installert men er ikke!"
@@ -100935,7 +105822,7 @@ index d2ee996..84f440e 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s var ment til å bli fjernet men er ikke!"
@@ -100953,32 +105840,32 @@ index d2ee996..84f440e 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Kunne ikke sjekke om PID %s er aktiv"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -100986,23 +105873,23 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Kunne ikke beregne sjekksum"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Pakken har ikke korrekt sjekksum"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "bruker lokal kopi av %s"
@@ -101013,18 +105900,21 @@ index d2ee996..84f440e 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Det er ikke nok ledig plass i nedlastingskatalogen %s\n"
 -"    * ledig   %s \n"
 -"    * trenger %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Filhode er ikke fullstendig."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -101034,55 +105924,55 @@ index d2ee996..84f440e 100644
 +msgstr "Filhode er ikke tilgjengelig lokalt og mellomlager-modus er aktivert Kan ikke hente ned %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problem ved åpning av pakke %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Pakken %s er ikke signert"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Kan ikke fjerne %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s fjernet"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Kan ikke fjerne %s fra fil %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s fil %s er fjernet"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s filer fjernet"
@@ -101092,19 +105982,19 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -101114,7 +106004,7 @@ index d2ee996..84f440e 100644
 +msgstr "searchPackages() vil forsvinne i en kommende utgave av Yum.\nBruk heller searchGenerator()\n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Søker etter %d pakker"
@@ -101124,111 +106014,127 @@ index d2ee996..84f440e 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "søker etter pakke %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "søker i filoversikt"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "søker i oppføringer av tilbud"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "pakke %s var ikke med i gruppe %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Legger til pakke %s fra gruppe %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Ingen pakke for %s er funnet"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Pakkeobjekt var ikke en pakkeobjektinstans"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Ingenting oppgitt for installasjon"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Sjekker for virtuelle tilbydere eller tilbydere av filer for %s"
@@ -101240,30 +106146,30 @@ index d2ee996..84f440e 100644
 -msgstr "Ingen treff for argument: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Pakke %s er installert og ikke tilgjengelig"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Ingen pakke(r) er tilgjengelig for installering"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Pakke: %s - allerede i transaksjonensettet"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -101271,67 +106177,67 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Ingen treff for argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -101339,43 +106245,43 @@ index d2ee996..84f440e 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Kunne ikke finne noen passende pakke for fjerning"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Undersøker: %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -101385,13 +106291,13 @@ index d2ee996..84f440e 100644
 +msgstr "Kan ikke legge til pakke %s til transaksjonen. Det er ikke en kompatibel arkitektur: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -101402,7 +106308,7 @@ index d2ee996..84f440e 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -101410,118 +106316,118 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Ekskluderer %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Setter av %s for kommende installering"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Kunne ikke åpne fil: %s. Hopper over."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Ingen pakke(r) er tilgjengelig for nedgradering"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Ingen treff for tilgjengelig pakke: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -101535,7 +106441,7 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -101546,7 +106452,7 @@ index d2ee996..84f440e 100644
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -101557,29 +106463,29 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Nøkler ble lagt inn med suksess"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -101592,20 +106498,20 @@ index d2ee996..84f440e 100644
 +msgstr "GPG-nøkkelen for pakkeoversikten %s er allerede lagt inn, men\nnøkkelen passer ikke til den aktuelle pakka fra samme oversikt.\nSjekk at korrekt URL (gpgkey opsjonen) er oppgitt for denne\npakkeoversikten."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -101616,7 +106522,7 @@ index d2ee996..84f440e 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG-nøkkel ved %s (0x%s) er allerede importert"
@@ -101624,19 +106530,19 @@ index d2ee996..84f440e 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Import av nøkkel feilet"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -101644,117 +106550,121 @@ index d2ee996..84f440e 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Kunne ikke finne passende filspeil"
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Det oppstod feil ved nedlastning av pakker."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Vennligst send en feilrapport til %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Feil ved testtransaksjon: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -101856,7 +106766,7 @@ index d2ee996..84f440e 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3112,6 +3264,19 @@ msgstr ""
+@@ -3112,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr "Pakker på nytt"
  
@@ -101865,7 +106775,7 @@ index d2ee996..84f440e 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -101873,10 +106783,14 @@ index d2ee996..84f440e 100644
 +"    * needed %s"
 +msgstr "Det er ikke nok ledig plass i nedlastingskatalogen %s\n    * ledig   %s \n    * trenger %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3140,5 +3305,3 @@ msgstr "Filhode til %s er ødelagt"
+@@ -3140,5 +3503,3 @@ msgstr "Filhode til %s er ødelagt"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Kunne ikke åpen rpm pakke %s - feilen er %s"
@@ -101884,22 +106798,22 @@ index d2ee996..84f440e 100644
 -
 diff --git a/po/nl.po b/po/nl.po
 new file mode 100644
-index 0000000..81328f7
+index 0000000..4d07fc4
 --- /dev/null
 +++ b/po/nl.po
-@@ -0,0 +1,3308 @@
+@@ -0,0 +1,3506 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
 +# 
 +# Translators:
-+# Richard E. van der Luit <nippur at fedoraproject.org>, 2011, 2012.
++# Richard E. van der Luit <nippur at fedoraproject.org>, 2011-2013.
 +msgid ""
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-03 10:07+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 16:51+0000\n"
 +"Last-Translator: Richard E. van der Luit <nippur at fedoraproject.org>\n"
 +"Language-Team: Dutch (http://www.transifex.com/projects/p/yum/language/nl/)\n"
 +"MIME-Version: 1.0\n"
@@ -101908,7 +106822,7 @@ index 0000000..81328f7
 +"Language: nl\n"
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Bijwerken"
 +
@@ -101916,26 +106830,26 @@ index 0000000..81328f7
 +msgid "Erasing"
 +msgstr "Wissen"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Installeren"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Aangemerkt als verouderd"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Bijgewerkt"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Gewist"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Geïnstalleerd"
 +
@@ -101957,7 +106871,7 @@ index 0000000..81328f7
 +msgid "Erased: %s"
 +msgstr "Verwijderd: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Verwijderen"
 +
@@ -101965,58 +106879,58 @@ index 0000000..81328f7
 +msgid "Cleanup"
 +msgstr "Opruimen"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "Opdracht \"%s\" is al gedefinieerd"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Opzetten "
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
-+msgstr "Repository metadata inlezen van lokale bestanden"
++msgstr "Repositorymetadata inlezen van lokale bestanden"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Configuratiefout: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Optiefout: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "  Geïnstalleerd: %s-%s op %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr "  Gebouwd    : %s op %s"
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr "  Ingediend: %s op %s"
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Je moet een commando ingeven"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Een dergelijk commando bestaat niet: %s. Gebruik a.u.b. %s - help"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Hardeschijf-vereisten:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -102025,323 +106939,374 @@ index 0000000..81328f7
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Samenvatting Fouten\n-------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Kan geen lock-bestand aanmaken; verlaten"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Een andere toepassing heeft op dit moment yum gelocked; Stoppen zoals geconfigureerd door exit_on_lock"
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr "Aan het proberen de transactie uit te voeren, maar er is niets te doen. Ik hou er mee op."
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "aanstaande rpmdb-versie kwam niet overeen met opgeslagen  transactieversie,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " negeren, zoals gevraagd."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "afbreken."
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Ophouden op commando van gebruiker "
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Downloaden Pakketten:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Fout Downloaden Pakketten:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr "Uitvoeren Transactie Check"
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "FOUT U moet rpm bijwerken om het op te lossen:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr "FOUT bij transactiecheck ten opzichte van afhankelijkheidsoplossing:"
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "RPM moet worden bijgewerkt"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Meld deze fout in %s a.u.b."
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "Uitvoeren Transactie Test"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "Transactie Check Fout:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "Transactie Test geslaagd"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "Uitvoeren Transactie"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr "Weiger om automatisch sleutels te importeren tijdens onbewaakt uitvoeren. \nGebruik \"-y\" om dit te overrulen."
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "  * Misschien heb je hier bedoeld: "
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr "Pakket(ten) %s %s %s beschikbaar, maar niet geïnstalleerd."
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr "Geen pakket %s %s %s beschikbaar."
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Slecht %s argument %s."
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d pakket om te installeren"
 +msgstr[1] "%d pakketten om te installeren"
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Niets te doen"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
 +msgstr[0] "%d pakket gemarkeerd voor update"
 +msgstr[1] "%d pakketten gemarkeerd voor update"
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Geen pakketten gemarkeerd voor Bijwerken"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
 +msgstr[0] "%d pakket gemarkeerd voor Distributie Synchronisatie"
 +msgstr[1] "%d pakketten gemarkeerd voor Distributie Synchronisatie"
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Geen pakketten gemarkeerd voor Distributie Synchronisatie"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
 +msgstr[0] "%d pakketten gemarkeerd voor verwijdering"
 +msgstr[1] "%d pakketten gemarkeerd voor verwijdering"
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Geen pakketten gemarkeerd voor verwijdering"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "%d pakket te downgraden"
 +msgstr[1] "%d pakketten te downgraden"
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr " (van %s)"
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr "Geïnstalleerd pakket %s %s %s %s niet beschikbaar."
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "%d pakket te herinstalleren"
 +msgstr[1] "%d pakketten te herinstalleren"
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr "Geen Pakketten Opgeleverd"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pakket(ten) te installeren"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr "N/S Matched: %s"
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Naam en opsomming matches %sonly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Volledige naam en opsomming matches %sonly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr "Passend: %s"
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr "  Naam en opsomming matches %smostly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr "Waarschuwing: Er zijn geen resultaten gevonden voor: %s"
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Geen resultaten gevonden"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr "Fout: Geen pakketten gevonden voor:\n  %s"
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Opschonen repo's:"
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Alles opruimen"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Headers opruimen"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Pakketten opruimen"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Xml metadata "
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Database cache schonen"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr "Expire-cache metadata "
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr "Cache rpmdb data "
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Plugins schonen"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
-+msgstr "Waarschuwing: Geen groep komt overeen: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Geïnstalleerde omgevingsgroepen:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Beschikbare omgevingsgroepen:"
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Geïnstalleerd Groepen:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr "Geïnstalleerde Taalgroepen:"
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Beschikbare groepen:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr "Beschikbare Taal Groepen:"
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Waarschuwing: Geen omgevingen/groepen komen overeen: %s"
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Klaar"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Waarschuwing: Groep/Omgeving %s bestaat niet."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Waarschuwing: Omgeving %s bestaat niet."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr "Waarschuwing: Groep %s bestaat niet."
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr "Geen pakketten in welke gewenste groep dan ook beschikbaar om te installeren of bij te werken"
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d pakket te installeren"
 +msgstr[1] "%d pakketten te installeren"
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr "Er bestaat geen omgeving met de naam %s"
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr "Geen enkele groep met de naam %s bestaat"
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr "Geen pakketten om uit de groepen te verwijderen"
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
 +msgstr[0] "%d pakket te verwijderen"
 +msgstr[1] "%d pakketten te verwijderen"
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr "Pakket %s is reeds geïnstalleerd, overslaan"
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr "Afwijzen van niet-vergelijkbare pkg %s.%s"
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr "Geen ander %s geïnstalleerd, wordt toegevoegd aan de lijst van potentieel te installeren"
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Plugin Opties"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr "Command line error: %s"
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -102349,452 +107314,484 @@ index 0000000..81328f7
 +"%s: %s option requires an argument"
 +msgstr "\n\n%s: %s optie vereist een argument"
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr "--color   kies uit: auto, always, never"
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr "--installroot moet een absoluut pad zijn: %s"
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "Dit helpbericht tonen en afsluiten"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "fout-tolerant zijn"
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "draai volledig uit systeemcache, werk cachegeheugen niet bij"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "locatie config-bestand"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr "maximale wachttijd commando"
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr "debugging output niveau"
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr "laat dubbelen zien, in de repo's, in lijst/zoek-opdrachten"
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr "fouten output niveau"
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr "debugging output level voor rpm"
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr "stille uitvoering"
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr "verbose uitvoering"
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr "antwoord ja op alle vragen"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "antwoord nee voor alle vragen"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr "Toon Yum versie en sluit af"
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr "installatie root instellen"
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr "aanzetten één of meerdere repositories (wildcards toegestaan)"
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr "uitschakelen één of meerdere repositories (wildcards toegestaan)"
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr "uitsluiten pakket(ten) op naam of globaal"
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr "uitschakelen Uitsluiting van 'main', voor een repo of voor alles"
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr "aanzetten Verwerking verouderde pakketten tijdens updates"
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr "uitschakelen Yum plug-ins"
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr "uitschakelen GPG signature controleren"
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr "uitschakelen plugins op naam"
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr "aanzetten plugins op naam"
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr "sla pakketten met afhankelijkheidsproblemen over"
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr "bepalen of kleur wordt gebruikt"
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr "instellen waarde van $releasever in yum config en repo-bestanden"
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "niet updaten, alleen downloaden"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "geeft een andere map op om pakketten in op te slaan"
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr "instellen arbitraire config en repo-opties"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Jan"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Feb"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Mrt"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Apr"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "Mei"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr "Jun"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr "Jul"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr "Aug"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr "Sep"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr "Okt"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr "Nov"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr "Dec"
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr "Proberen andere mirror..."
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr "Naam        : %s %s %s"
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr "Arch        : %s"
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr "Epoch       : %s"
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr "Versie      : %s"
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr "Release     : %s"
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr "Grootte     : %s"
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr "Repo        : %s"
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr "Van  repo   : %s"
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr "Indiener    : %s"
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr "Ingediend op: %s"
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr "Bouwtijd    : %s"
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr "Installeertijd    : %s"
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr "Geïnstalleerd door: %s"
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr "Gewijzigd door    : %s"
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr "Samenvatting: "
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr "URL         : %s"
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr "Licentie    : "
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr "Beschrijving: "
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr "y"
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr "yes"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr "n"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr "no"
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr "Is dit ok [y / N]:"
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr "\nGroep: %s"
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr " Group-Id: %s"
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr " Beschrijving: %s"
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr " Taal: %s"
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr " Verplichte pakketten:"
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr "Standaard Pakketten:"
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr " Optionele pakketten:"
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr " Voorwaardelijke Pakketten:"
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Geïnstalleerde Pakketten:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nOmgevingsgroep: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "Omgevings-id: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Verplichte groepen:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Optionele groepen:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Geïnstalleerde groepen:"
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr "pakket: %s"
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr "  Geen afhankelijkheden voor dit pakket"
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr "  afhankelijkheid: %s"
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr "   Onvervulde afhankelijkheid"
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr "Match uit:"
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr "Licentie    : %s"
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr "Bestandsnaam: %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Levert    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr "Andere      : "
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr "Er is een fout opgetreden bij de berekening van de totale download-grootte"
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr "Totale grootte: %s"
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr "Totale download grootte: %s"
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr "Geïnstalleerde grootte: %s"
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr "Er was een fout bij het berekenen van geïnstalleerde grootte"
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr "Herinstalleren"
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr "Downgrading"
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr "Installeren vanwege afhankelijkheden"
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr "Updaten vanwege afhankelijkheden"
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr "Verwijderen vanwege afhankelijkheden"
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr "Overgeslagen (afhankelijkheidsproblemen)"
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr "Niet geïnstalleerd"
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr "Niet beschikbaar"
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] "Pakket"
 +msgstr[1] "Pakketten"
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr "Arch"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr "Versie"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr "Repository"
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr "Grootte"
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr "    vervangen van %s%s%s.%s%s\n"
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -102802,58 +107799,58 @@ index 0000000..81328f7
 +"%s\n"
 +msgstr "\nTransactie Samenvatting\n%s\n"
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installeren"
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Verwijderen"
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Herinstalleren"
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Afhankelijk pakket"
 +msgstr[1] "Afhankelijke pakketten"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr "Verwijderd"
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr "Afhankelijkheid verwijderd"
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr "Afhankelijkheid geïnstalleerd"
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr "Afhankelijkheid bijgewerkt"
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr "Vervangen"
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr "Mislukt"
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr "twee"
 +
@@ -102861,7 +107858,7 @@ index 0000000..81328f7
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -102869,542 +107866,542 @@ index 0000000..81328f7
 +"to exit.\n"
 +msgstr "\nHuidige download geannuleerd, %sinterrupt (ctrl-c) nogmaals%s binnen %s%s%s seconden \nom af te sluiten.\n"
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr "onderbreking door gebruiker"
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr "Totaal"
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr "I"
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr "O"
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr "E"
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr "R"
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr "D"
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr "U"
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr "<unset>"
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr "Systeem"
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr "Overslaan van samengevoegde transactie %d tot %d, omdat dat overlapt"
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr "Geen transacties"
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr "Slechte transactie-ID's, of pakket(ten), gegeven"
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr "Commando lijn"
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr "Login gebruiker"
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr "ID"
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr "Datum en tijd"
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr "Actie(s)"
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr "Veranderd"
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr "Geen transactie-ID opgegeven"
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr "Onjuiste transactie-ID opgegeven"
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr "Opgegeven transactie-ID niet gevonden"
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr "Vond meer dan één transactie ID!"
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr "Geen transactie-ID, of pakket, opgegeven"
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr "Downgraded"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr "Ouder"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr "Nieuwer"
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr "Transactie-ID:"
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr "Starttijd      :"
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr "Begin rpmdb    :"
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr "(%u seconden)"
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr "(%u minuten)"
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr "(%u uur)"
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr "(%u dagen)"
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr "Eindtijd       :"
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr "Einde rpmdb    :"
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr "Gebruiker      :"
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr "Return-Code    :"
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr "Afgebroken"
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr "Mislukkingen:"
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr "Falen:"
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr "Succes"
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr "Commando Lijn   :"
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr "Extra niet-standaardinfo opgeslagen: %d"
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr "Transactie uitgevoerd met:"
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr "Pakketten veranderd:"
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr "Pakketten overgeslagen:"
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr "Rpmdb Problemen:"
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr "Scriptlet output:"
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr "Fouten:"
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr "Dep-Installeren"
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr "Als verouderd aanmerken"
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr "Wissen"
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr "Update"
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr "Tijd"
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr "Gisteren"
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr "Vorige week"
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr "Laatste 2 weken"
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr "Laatste 3 maanden"
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr "Laatste 6 maanden"
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr "Afgelopen jaar"
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr "Ruim een ​​jaar geleden"
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr "Geen transactie %s gevonden"
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr "Transactie-ID:"
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr "Beschikbare extra historische informatie:"
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr "%s: Geen aanvullende gegevens gevonden met deze naam"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Pakket         :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Status         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Grootte        :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Build host     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Build time     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Packager       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Verkoper       :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licentie       :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Source RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Commit Tijd    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Committer      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Reden          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Van repo       :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Geïnstalleerd door:"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Gewijzigd door :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr "geïnstalleerd"
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr "een update"
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr "gewist"
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr "opnieuw geïnstalleerd"
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr "een downgrade"
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr "als verouderd aanmerken"
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr "bijgewerkt"
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr "als verouderd aangemerkt"
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr "---> Pakket %s.%s %s:%s-%s wordt %s"
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr "--> Transactiecontrole uitvoeren"
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr "--> Herstarten Oplossen Afhankelijkheden met de nieuwe gegevens"
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr "--> Klaar met oplossen afhankelijkheden"
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr "--> Verwerking afhankelijkheid: %s voor pakket: %s"
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
-+msgstr "--> Behouden pakket: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Behouden van pakket: %s vanwege %s"
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr "--> Onopgeloste afhankelijkheid: %s"
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr "Pakket: %s"
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr "\n     Vereist: %s"
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr "\n    %s: %s (%s)"
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr "\n        %s"
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr "\n        Niet gevonden"
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr "Bijgewerkt door"
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr "Downgraded door"
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr "Nieuwer pakket is:"
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr "Beschikbaar"
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr "--> Verwerking Conflict: %s %s conflicteren"
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr "--> De transactieset wordt met de geselecteerde pakketten gevuld. Een ogenblikje geduld."
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr "---> Downloaden header voor %s om in de transactie op te nemen."
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verifiëren"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr "Uitvoeren"
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr "Slapen"
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr "Ononderbroken"
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr "Zombie"
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr "Getraceerd / Gestopt"
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr "Onbekend"
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr "  De andere toepassing is: PackageKit"
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr "  De andere toepassing is: %s"
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr "    Memory : %5s RSS (%5sB VSZ)"
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr "    Gestart: %s - %s geleden"
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr "    Status  : %s, pid: %d"
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr "\n\nBeëindigen vanwege afbreken door gebruiker"
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr "\n\nBeëindigen vanwege Broken Pipe"
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -103412,47 +108409,41 @@ index 0000000..81328f7
 +"%s"
 +msgstr "\n\n%s"
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr "Een andere toepassing heeft op dit moment yum gelocked; Stoppen zoals geconfigureerd door exit_on_lock"
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr "PluginExit Fout: %s"
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr "Yum Fout: %s"
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr "Fout: %s"
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr " Je zou kunnen proberen met behulp van --skip-broken het probleem te omzeilen"
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr " Je zou kunnen proberen: rpm -Va --nofiles --nodigest"
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr "Onbekende fout(en): Exit Code: %d:"
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr "\nAfhankelijkheden opgelost"
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr "Compleet!"
 +
@@ -103491,518 +108482,564 @@ index 0000000..81328f7
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr "Fout: Lijst van Pkgs nodig om door te geven aan %s"
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Fout: Tenminste twee pakketten nodig om %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Fout: Moet een repo-id en commando doorgeven aan %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Fout: Moet een enkel, geldig repo-id doorgeven aan %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Fout: Repo %s is niet ingeschakeld"
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr "Fout: Item om te vergelijken nodig"
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr "Fout: Een groep of lijst van groepen nodig"
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr "Fout: clean vereist een optie: %s"
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Fout: ongeldige clean argument: %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr "Geen argument voor shell"
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr "Bestandsnaam doorgegeven aan shell: %s"
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr "Bestand %s gegeven als argument aan shell bestaat niet."
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr "Fout: meer dan één bestand gegeven als argument aan shell."
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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 "Er zijn geen ingeschakeld repo's. \nRun \"yum repolist all\" om de repo's die je hebt te zien. \nJe kunt de repo's met yum-config-manager --enable <repo> instellen"
 +
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr "PAKKET..."
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr "Installeer een pakket of pakketten op je systeem"
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr "Opzetten van installatieproces"
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr "[PAKKET...]"
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr "Update een pakket of pakketten op je systeem"
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr "Opzetten van update-proces"
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr "Synchroniseren geïnstalleerde pakketten naar de nieuwste beschikbare versies"
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr "Opzetten van distributie synchronisatie proces"
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr "Weergeven details van pakket of een groep pakketten"
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr "Geïnstalleerde pakketten"
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr "Beschikbare pakketten"
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr "Extra pakketten"
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr "Bijgewerkte pakketten"
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr "Als verouderd aangemerkte pakketten"
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr "Onlangs toegevoegde pakketten"
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr "Geen passende pakketten om te tonen"
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr "Toon een pakket of groepen van pakketten"
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr "Verwijderen van pakket of pakketten van je systeem"
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr "Opzetten Verwijder-proces"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Toon, of gebruik, de groepen-informatie"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr "Opzetten van Groep-proces"
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr "Geen groepen waarop commando uit te voeren is"
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Ongeldige groepen sub-commando, gebruik: %s."
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Er bestaat geen geïnstalleerd groepenbestand"
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "U hebt geen toegang tot de groepen DB"
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr "Genereer de metadata-cache"
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr "Maken van cache-bestanden voor alle metadata bestanden."
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr "Dit kan enige tijd duren afhankelijk van de snelheid van deze computer"
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr "Metadata Cache gemaakt"
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr "Verwijderen gegevens in het cachegeheugen"
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr "Uitzoeken welk pakket de opgegeven waarde bevat"
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr "Controleren beschikbaarheid update-pakketten"
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr "Doorzoeken pakketdetails voor de opgegeven string"
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr "Zoeken Pakketten: "
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr "Bijwerken pakketten met verouderde pakketten meerekenend"
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr "Opzetten van Upgrade Proces"
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr "Installeren lokale RPM"
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr "Opzetten Lokaal Pakket Proces"
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr "Opzoeken pakketten wegens afhankelijkheid:"
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr "Run een interactieve yum shell"
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr "Opzetten van Yum Shell"
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr "Toon pakketafhankelijkheden"
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr "Opzoeken van afhankelijkheden:"
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr "Toon de geconfigureerde software repositories"
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr "ingeschakeld"
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr "uitgeschakeld"
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr "Repo-id      : "
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr "Repo-naam    : "
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr "Repo-status  : "
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr "Repo-revisie : "
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr "Repo-tags    : "
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr "Repo-distro-tags: "
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr "Repo-updated : "
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr "Repo-pkgs    : "
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr "Repo-grootte : "
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr "Repo-baseurl : "
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr "Repo-metalink: "
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr "  Bijgewerkt : "
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr "Repo-mirrors : "
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr "Nooit (laatste: %s)"
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr "Instant (laatste: %s)"
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr "%s second(en) (vorige: %s)"
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr "Repo-expiratie: "
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr "Repo-uitsluiting : "
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr "Repo-inbegrepen: "
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr "Repo-uitgesloten: "
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr "Repo-bestandsnaam:"
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr "repo id"
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr "status"
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr "repo naam"
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr "Toon een hulpvaardig gebruiksbericht"
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr "Geen hulp beschikbaar voor %s"
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr "\naliassen: "
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr "\n\nalias: "
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr "Opzetten herinstallatieproces"
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr "Herinstalleer een pakket"
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr "Opzetten van Downgrade Proces"
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr "downgraden van een pakket"
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr "Toon een versie voor de machine en/of beschikbare repos."
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr " Yum versie groepen:"
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr " Groep   :"
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr " Pakketten:"
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr "Geïnstalleerd:"
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr "Groep-Geïnstalleerd:"
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr "Beschikbaar:"
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr "Groep-Beschikbaar:"
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr "Toon, of gebruik, de transactiegeschiedenis"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transacties:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Begin tijd  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Eindtijd    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Telling     :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr "Ongeldig geschiedenis sub-commando, gebruik: %s."
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr "Je hebt geen toegang tot de geschiedenis-DB."
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr "Controleer op problemen in de rpmdb"
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr "laad opgeslagen transactie uit bestandsnaam"
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr "Geen opgeslagen transactie bestand gespecificeerd."
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr "laden transactie van %s"
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr "Transactie geladen van %s met %s leden"
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Makkelijke manier om pakketten te wisselen, in plaats van de shell te gebruiken."
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Beschouw een repo als een groep pakketten, waardoor we ze allemaal kunnen installeren/verwijderen"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d pakket te updaten"
++msgstr[1] "%d pakketten te updaten"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d pakket te verwijderen/te herinstalleren"
++msgstr[1] "%d pakketten te verwijderen/te herinstalleren"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d pakket te verwijderen/sync"
++msgstr[1] "%d pakketten te verwijderen/sync"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Geen geldig sub-commando van %s"
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr " Yum controles is mislukt: %s"
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Geen lezen/uitvoeren rechten in de huidige directory, verhuizen naar /"
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Geen getcwd() toegang in huidige directory, ik ga naar /"
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "Kan geen lock-bestand aanmaken; verlaten"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Een andere toepassing blokkeert op dit moment yum; aan het wachten tot het afsluit ..."
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr "Oplossen van afhankelijkheden"
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr "Je transactie was gesaved, voer opnieuw uit met:\n yum load-transaction %s"
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -104032,7 +109069,7 @@ index 0000000..81328f7
 +msgid "Member: %s"
 +msgstr "Lid: %s"
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr "%s omgezet om te installeren"
@@ -104089,326 +109126,380 @@ index 0000000..81328f7
 +msgid "Trying to update %s to resolve dep"
 +msgstr "Proberen om, door %s bij te werken, afhankelijkheden op te lossen"
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr "Geen update paden gevonden voor %s. Faal!"
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Geen update-paden gevonden voor %s. Mislukt vanwege vereiste: %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Update voor %s. Repareert niet vereiste: %s!"
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr "TSINFO: %s pakket dat %s nodig heeft is gemarkeerd als wissen"
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr "TSINFO: Vervangen %s door %s om afhankelijkheid op te lossen."
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr "TSINFO: Bijwerken %s om afhankelijkheid op te lossen."
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr "Kan geen update-pad voor afhankelijkheden vinden voor: %s"
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr "Snelselectie %s, benodigd voor %s"
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr "%s is aanwezig in klaargezette pakketten, maar is al geïnstalleerd, verwijderen."
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr "Van potentieel afhankelijkheidoplossend pakket %s is nieuwere versie in ts aanwezig"
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr "Van potentieel afhankelijkheidoplossend pakket %s is al een nieuwere versie geïnstalleerd"
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr "%s reeds in transactieset, deze wordt overgeslagen"
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr "TSINFO: Markeren %s als update voor %s"
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr "TSINFO: Markeren %s als installatie voor %s"
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr "Succes - lege transactie"
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr "Herstarten Loop"
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr "Proces Afhankelijkheid beëindigen"
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr "Succes - afhankelijkheden opgelost"
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr "Controleren afhankelijkheden voor %s"
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr "Zoeken naar %s als een vereiste voor %s"
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr "Uitvoeren compare_providers() voor %s"
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr "betere arch in po %s"
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr "%s is nieuwer dan %s"
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr "archdist vergeleek %s met %s op %s\n  Winnaar: %s"
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr "gemeenschappelijke sourcerpm %s en %s"
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr "basispakket %s is geïnstalleerd voor %s"
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr "gemeenschappelijke prefix van %s tussen %s en %s"
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr "levert vercmp: %s"
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr " Winnaar: %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "vereist minimaal: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr " Verliezer (met %d): %s"
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr "De beste keus: %s"
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr "doConfigSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Overslaan onleesbare repository %s"
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr "Repository %r: Fout parsing config: %s"
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr "Van repository %r ontbreekt naam in configuratie, id wordt gebruikt"
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr "plugins al geïnitialiseerd"
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr "doRpmDBSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr "Lezen lokale RPMDB"
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr "doRepoSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr "doSackSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr "Opzetten van Pakkethouders"
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr "repo object voor repo %s ontbeert een _resetSack methode\n"
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr "daarom kan deze repo niet gereset worden.\n"
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr "doUpdateSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr "Opbouwen updates object"
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr "doGroupSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr "Verkrijgen groep metadata"
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr "Toevoegen van groep-bestand uit repository: %s"
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Groepbestand ophalen voor repository %s is niet gelukt"
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr "Niet gelukt groepen-bestand toe te voegen voor repository: %s - %s"
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr "Geen Groepen beschikbaar in welke repository dan ook"
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr "Verkrijgen pkgtags metadata"
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr "Toevoegen van tags van repository: %s"
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr "Niet gelukt Pkg Tags toe te voegen voor repository: %s -%s"
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr "Importeren van extra filelist informatie"
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr "Het programma %s%s%s is gevonden in het yum-utils pakket."
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr "Er zijn onvoltooid gebleven transactiehandelingen. Je zou kunnen overwegen om yum-complete-transaction eerst uit te voeren om deze af te maken."
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr "--> Vinden van overbodige achtergebleven afhankelijkheden"
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
-+msgstr "Beschermde multilib versies: %s!=%s"
++msgstr "Beschermde multilib-versies: %s!=%s"
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr " 'Multilib-versie'-probleem gevonden. Dit betekent meestal dat de\nhoofdoorzaak ergens anders ligt en 'multilib versie'-controle er\nslechts op wijst dat er een probleem is, b.v.:\n\n  1. U hebt een upgrade voor %(name)s. Deze mist een afhanke-\n     lijkheid dat een ander pakket nodig heeft. Yum probeert dit op te\n     lossen met het installeren van een oudere versie van %(name)s met\n     een andere architectuur. Indien u de foute architectuur uitsluit\n     meldt yum u wat de hoofdoorzaak is (welk pakket wat\n     nodig heeft). U kunt proberen de upgrade opnieuw te doen met\n     --exclude %(name)s.otherarch ... dit zou een foutmelding moeten\n     geven met de hoofdoorzaak van het probleem vermeld.\n\n  2. U hebt meerdere architecturen van %(name)s geïnstalleerd, maar\n     yum kan alleen een upgrade van één van beide zien.\n     Indien u beide architecturen niet meer wilt/nodig hebt, kunt\n     u degene met de missende afhankelijkheid verwijderen en alles\n
      zal weer werken.\n\n  3. U hebt al identieke versies van %(name)s geïnstalleerd.\n     U kunt \"yum check\" gebruiken om yum deze fouten te laten melden.\n\n...u kunt ook --setopt=protected_multilib=false gebruiken om deze\ncheck uit te schakelen. Dit is echter vrijwel nooit een goede oplossing,\nomdat iets anders zeer waarschijnlijk niet goed zal gaan (meestal \ngeeft dat veel, veel meer problemen).\n\n"
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr "Proberen \"%s\" te verwijderen, welke wordt beschermd"
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr "\nPakketten overgeslagen vanwege afhankelijkheidsproblemen:"
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr "    %s van %s"
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr "** %d reeds bestaande rpmdb problem(en) gevonden, 'yum check' output geeft:"
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr "Waarschuwing: RPMDB buiten yum om veranderd."
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr "ontbrekende vereist"
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr "geïnstalleerd conflict"
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr "Waarschuwing: scriptlet of andere niet-fatale fouten opgetreden tijdens de transactie."
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr "Transactie kon niet worden gestart:"
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr "Transactie kon niet worden uitgevoerd."
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, python-format
 +msgid "Failed to remove transaction file %s"
 +msgstr "Niet gelukt transactiebestand %s te verwijderen"
 +
 +#. maybe a file log here, too
 +#. but raising an exception is not going to do any good
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr "%s zou worden geïnstalleerd, maar werd het niet!"
@@ -104418,462 +109509,482 @@ index 0000000..81328f7
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr "%s moest worden verwijderd, maar werd het niet!"
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr "Bestaande lock %s: een ander exemplaar wordt uitgevoerd met PID %s."
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr "Kon geen lock maken op %s: %s"
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Kon lock %s niet openen: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Kon niet vaststellen of PID %s actief is"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, python-format
 +msgid ""
 +"Package does not match intended download. Suggestion: run yum "
 +"--enablerepo=%s clean metadata"
 +msgstr "Pakket komt niet overeen met voorgenomen download. Suggestie: voer yum --enablerepo=%s clean metadata uit"
 +
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr "Kon checksum niet uitvoeren"
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr "Pakket komt niet overeen met checksum"
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr "pakket ontbeert checksum, maar caching is ingeschakeld voor %s"
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr "lokale kopie van %s wordt gebruikt"
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "afsluiten omdat  --downloadonly is opgegeven"
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr "Header is niet compleet."
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr "Header niet in lokale cache aanwezig en caching-only modus ingeschakeld. Kan %s niet downloaden"
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr "Publieke sleutel voor %s is niet geïnstalleerd"
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr "Probleem met openen van pakket %s"
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr "Publieke sleutel voor %s is niet vertrouwd"
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr "Pakket %s is niet ondertekend"
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr "Kan %s niet verwijderen"
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr "Verwijderd %s"
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr "Kan niet verwijderen %s bestand %s"
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr "%s bestand verwijderd %s"
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
 +msgstr[0] "%d %s bestand verwijderd"
 +msgstr[1] "%d %s bestanden verwijderd"
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr "Meer dan één identieke match in houder voor %s"
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr "Niets komt overeen met %s.%s%s:%s-%s van update"
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr "searchPackages() zal verdwijnen in een toekomstige versie van Yum.                      Gebruik searchGenerator()  \n"
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
 +msgstr[0] "Zoeken %d pakket"
 +msgstr[1] "Zoeken %d pakketten"
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr "zoeken pakket %s"
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr "zoeken in file entries"
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr "zoeken in provides entries"
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr "Geen groepsgegevens beschikbaar voor geconfigureerde repositories"
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr "Er bestaat geen groep met de naam %s"
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr "pakket %s is niet gemarkeerd in groep %s"
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Pakket %s van groep %s wordt overgeslagen"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr "Toevoegen van pakket %s uit de groep %s"
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr "Geen pakket met de naam %s beschikbaar om te worden geïnstalleerd"
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
-+msgstr "Waarschuwing: Groep %s heeft geen pakketten."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Waarschuwing: Groep %s heeft geen pakketten om te installeren."
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr "Groep %s heeft %u voorwaardelijk pakketten, welke zouden kunnen worden geïnstalleerd."
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Groep %s wordt weggelaten uit omgeving %s"
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr "Pakket-tupel %s kon niet in pakkethouder gevonden worden"
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr "Pakket-tupel %s kon niet in rpmdb gevonden worden"
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr "Ongeldige versie vlag van: %s"
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr "Geen pakket gevonden voor %s"
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Waarschuwing: Omgevingsgroep %s bestaat niet."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Pakket: %s - kan niet co-installeren met %s"
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr "Pakket Object was niet een pakket objectinstantie"
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr "Niets aangemerkt om te installeren"
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr "Controleren op virtuele levering dan wel bestand-levering voor %s"
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr "Pakket %s geïnstalleerd en niet beschikbaar"
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr "Geen pakket(ten) beschikbaar om te installeren"
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr "Pakket: %s  - reeds in transactie set"
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr "Pakket %s is ouder dan %s, dat reeds is geïnstalleerd"
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr "Pakket %s is ouder dan %s, maar nieuwer pakket voldoet niet aan de vereisten"
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr "Pakket %s is ouder dan %s, zal dientengevolge pogen %s te installeren"
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr "Pakket %s is reeds geïnstalleerd en de meest recente versie"
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr "Pakket dat overeenkomt met %s is al geïnstalleerd. Controleren op update."
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr "Updaten Alles"
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Niet Bijwerken pakket dat al verouderd is: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Geen resultaat voor argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Geen pakket aangetroffen om te upgraden: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Pakket is al verouderd: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr "Niet Bijwerken pakket dat verouderd is: %s"
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr "Niet Bijwerken pakket dat al bijgewerkt is: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Geen pakket aangetroffen om te verwijderen: %s"
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr "Overslaan van -draaiende- kernel: %s"
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr "Verwijderen van %s uit de transactie"
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr "Kan niet openen: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr "Onderzoeken %s: %s"
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr "Niet gelukt deltarpm lokaal te installeren: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr "Kan pakket %s niet toevoegen aan transactie. Geen compatibele architectuur: %s"
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr "Kan pakket %s niet installeren. Het al geïnstalleerde pakket %s is nieuwer"
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr "Pakket %s is niet geïnstalleerd, en kan dus ook niet vernieuwd worden. Voer in de plaats daarvan yum install uit, om te installeren."
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, python-format
 +msgid ""
 +"Package %s.%s not installed, cannot update it. Run yum install to install it"
 +" instead."
 +msgstr "Pakket %s.%s is niet geïnstalleerd, kan het dus niet vernieuwen. Voer in de plaats daarvan yum install uit om te installeren."
 +
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr "Uitsluiten %s"
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr "Markeren %s om te installeren"
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr "Markeren %s als een update voor %s"
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr "%s: is geen update voor geïnstalleerd pakket."
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr "Kan bestand niet openen: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr "Probleem met herinstalleren: geen overeenkomstig pakket gevonden om eerst te verwijderen"
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr "Probleem met herinstalleren: geen overeenkomstig pakket %s gevonden om opnieuw te installeren "
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr "Geen pakket(ten) beschikbaar om te downgraden"
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr "Pakket %s is toegestaan ​​meerdere installaties te hebben, wordt overgeslagen"
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr "Geen match voor beschikbaar pakket: %s"
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr "Upgrade alleen beschikbaar voor het pakket: %s"
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr "Mislukt downgraden: %s"
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Bijwerken mislukt van: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr "Ophalen sleutel uit %s"
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +msgid "GPG key retrieval failed: "
 +msgstr "GPG sleutel ophalen mislukte:"
 +
 +#. if we decide we want to check, even though the sig failed
 +#. here is where we would do that
-+#: ../yum/__init__.py:5306
++#: ../yum/__init__.py:5766
 +#, python-format
 +msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 +msgstr "GPG key signature van sleutel %s komt niet overeen met de CA Key van repo: %s"
 +
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr "GPG key geverifieerd middels CA Key(s)"
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr "Ongeldige GPG sleutel van %s: %s"
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr "GPG sleutel parsing faalde: sleutel heeft geen waarde %s"
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -104883,7 +109994,7 @@ index 0000000..81328f7
 +" From       : %s"
 +msgstr "Importeren %s sleutel 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Pakket     : %s (%s)\n Van        : %s"
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -104892,7 +110003,7 @@ index 0000000..81328f7
 +" From       : %s"
 +msgstr "Importeren %s sleutel 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Van        : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -104902,44 +110013,44 @@ index 0000000..81328f7
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Falende pakket is: %s\n GPG Sleutels zijn geconfigureerd als: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr "GPG sleutel %s (0x%s) is al geïnstalleerd"
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr "Importeren sleutel is mislukt (code %d)"
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr "Sleutel succesvol geïmporteerd"
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr "Er werden geen sleutels geïnstalleerd"
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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 "De GPG sleutels vermeld voor de \"%s\" repository zijn al geïnstalleerd, maar ze zijn niet correct voor dit pakket. \nControleer of de juiste sleutel-URL's zijn geconfigureerd voor deze repository."
 +
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr "Import van sleutel(s) heeft niet geholpen, verkeerde sleutel(s)?"
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nee"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ja"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -104950,123 +110061,120 @@ index 0000000..81328f7
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA Sleutel: %s\n Falende repo is: %s\n GPG Sleutels zijn geconfigureerd als: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr "GPG-sleutel op %s (0x%s) is reeds geïmporteerd"
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Import sleutel %s faalde"
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr "Er werden geen sleutels geïnstalleerd voor repo %s"
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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 "De GPG sleutels vermeld voor de \"%s\" repository zijn al geïnstalleerd, maar ze zijn niet correct. \nControleer of de juiste sleutel-URL's zijn geconfigureerd voor deze repository."
 +
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr "Niet in staat om een ​​geschikte mirror te vinden."
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr "Fouten tegengekomen tijdens het downloaden van pakketten."
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr "Meld deze fout a.u.b. op %s"
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr "Test Transactie Fouten: "
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr "Kon cachedir niet instellen: %s"
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr "Afhankelijkheden niet opgelost. Zal een transactie met onopgeloste afhankelijkheden niet opslaan."
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr "Kon transactiebestand %s niet opslaan: %s"
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr "Kon geen toegang krijgen tot/lezen opgeslagen transactie %s: %s"
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr "rpmdb versie gaat niet samen met de bewaarde transactieversie,"
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
-+msgstr " negeren, zoals gevraagd."
-+
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
-+msgstr "afbreken."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "rpmdb versie kwam niet overeen met opgeslagen transactie versie,"
 +
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr "kan tsflags of tsflags niet vinden, geen integer."
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr "Trof txmbr in onbekende huidige status aan: %s"
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr "Kon txmbr niet vinden: %s in status %s"
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr "Kon txmbr niet vinden: %s van herkomst: %s"
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr "Transactie-leden, relaties ontbreken of ts is gewijzigd,"
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr " negeren, zoals gevraagd. U moet afhankelijkheden opnieuw oplossen!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s is al bezocht en kan niet worden verwijderd."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Onderzoeken revdeps van %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s heeft revdep %s en was gebruiker-geïnstalleerd."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s moet voor dit pakket al zijn geïnstalleerd"
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s heeft geen door gebruiker geïnstalleerd revdeps."
@@ -105160,7 +110268,7 @@ index 0000000..81328f7
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verifiëer: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -105168,6 +110276,10 @@ index 0000000..81328f7
 +"    * needed %s"
 +msgstr "Onvoldoende ruimte in download directory %s\n    * vrij     %s\n    * nodig %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Pakket komt niet overeen met bedoelde download"
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -105198,22 +110310,22 @@ index 0000000..81328f7
 +msgstr "Fout bij het openen van rpm %s - fout %s"
 diff --git a/po/nl_NL.po b/po/nl_NL.po
 new file mode 100644
-index 0000000..4ad6275
+index 0000000..5b4f752
 --- /dev/null
 +++ b/po/nl_NL.po
-@@ -0,0 +1,3308 @@
+@@ -0,0 +1,3506 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
 +# 
 +# Translators:
-+# Richard E. van der Luit <nippur at fedoraproject.org>, 2011, 2012.
++# Richard E. van der Luit <nippur at fedoraproject.org>, 2011-2012.
 +msgid ""
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-03 10:08+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 16:53+0000\n"
 +"Last-Translator: Richard E. van der Luit <nippur at fedoraproject.org>\n"
 +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/yum/language/nl_NL/)\n"
 +"MIME-Version: 1.0\n"
@@ -105222,7 +110334,7 @@ index 0000000..4ad6275
 +"Language: nl_NL\n"
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Bijwerken"
 +
@@ -105230,26 +110342,26 @@ index 0000000..4ad6275
 +msgid "Erasing"
 +msgstr "Wissen"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Installeren"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Aangemerkt als verouderd"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Bijgewerkt"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Gewist"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Geïnstalleerd"
 +
@@ -105271,7 +110383,7 @@ index 0000000..4ad6275
 +msgid "Erased: %s"
 +msgstr "Verwijderd: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Verwijderen"
 +
@@ -105279,58 +110391,58 @@ index 0000000..4ad6275
 +msgid "Cleanup"
 +msgstr "Opruimen"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "Opdracht \"%s\" is al gedefinieerd"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Opzetten "
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
-+msgstr "Repository metadata inlezen van lokale bestanden"
++msgstr "Repositorymetadata inlezen van lokale bestanden"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Configuratiefout: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Optiefout: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "  Geïnstalleerd: %s-%s op %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr "  Gebouwd    : %s op %s"
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr "  Ingediend: %s op %s"
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Je moet een commando ingeven"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Een dergelijk commando bestaat niet: %s. Gebruik a.u.b. %s - help"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Hardeschijf-vereisten:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -105339,323 +110451,374 @@ index 0000000..4ad6275
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Samenvatting Fouten\n-------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Kan geen lock-bestand aanmaken; verlaten"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Een andere toepassing heeft op dit moment yum gelocked; Stoppen zoals geconfigureerd door exit_on_lock"
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr "Aan het proberen de transactie uit te voeren, maar er is niets te doen. Ik hou er mee op."
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "aanstaande rpmdb-versie kwam niet overeen met opgeslagen  transactieversie,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " negeren, zoals gevraagd."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "afbreken."
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Ophouden op commando van gebruiker "
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Downloaden Pakketten:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Fout Downloaden Pakketten:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr "Uitvoeren Transactie Check"
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "FOUT U moet rpm bijwerken om het op te lossen:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr "FOUT bij transactiecheck ten opzichte van afhankelijkheidsoplossing:"
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "RPM moet worden bijgewerkt"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Meld deze fout in %s a.u.b."
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "Uitvoeren Transactie Test"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "Transactie Check Fout:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "Transactie Test geslaagd"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "Uitvoeren Transactie"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr "Weiger om automatisch sleutels te importeren tijdens onbewaakt uitvoeren. \nGebruik \"-y\" om dit te overrulen."
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "  * Misschien heb je hier bedoeld: "
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr "Pakket(ten) %s %s %s beschikbaar, maar niet geïnstalleerd."
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr "Geen pakket %s %s %s beschikbaar."
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Slecht %s argument %s."
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d pakket om te installeren"
 +msgstr[1] "%d pakketten om te installeren"
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Niets te doen"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
 +msgstr[0] "%d pakket gemarkeerd voor update"
 +msgstr[1] "%d pakketten gemarkeerd voor update"
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Geen pakketten gemarkeerd voor Bijwerken"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
 +msgstr[0] "%d pakket gemarkeerd voor Distributie Synchronisatie"
 +msgstr[1] "%d pakketten gemarkeerd voor Distributie Synchronisatie"
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Geen pakketten gemarkeerd voor Distributie Synchronisatie"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
 +msgstr[0] "%d pakketten gemarkeerd voor verwijdering"
 +msgstr[1] "%d pakketten gemarkeerd voor verwijdering"
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Geen pakketten gemarkeerd voor verwijdering"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "%d pakket te downgraden"
 +msgstr[1] "%d pakketten te downgraden"
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr " (van %s)"
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr "Geïnstalleerd pakket %s %s %s %s niet beschikbaar."
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "%d pakket te herinstalleren"
 +msgstr[1] "%d pakketten te herinstalleren"
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr "Geen Pakketten Opgeleverd"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pakket(ten) te installeren"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr "N/S Matched: %s"
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Naam en opsomming matches %sonly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Volledige naam en opsomming matches %sonly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr "Passend: %s"
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr "  Naam en opsomming matches %smostly%s, gebruik \"search all\" voor alles."
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr "Waarschuwing: Er zijn geen resultaten gevonden voor: %s"
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Geen resultaten gevonden"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr "Fout: Geen pakketten gevonden voor:\n  %s"
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Opschonen repo's:"
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Alles opruimen"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Headers opruimen"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Pakketten opruimen"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Xml metadata "
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Database cache schonen"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr "Expire-cache metadata "
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr "Cache rpmdb data "
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Plugins schonen"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
-+msgstr "Waarschuwing: Geen groep komt overeen: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Geïnstalleerde omgevingsgroepen:"
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Beschikbare omgevingsgroepen:"
++
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Geïnstalleerd Groepen:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr "Geïnstalleerde Taalgroepen:"
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Beschikbare groepen:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr "Beschikbare Taal Groepen:"
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Waarschuwing: Geen omgevingen/groepen komen overeen: %s"
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Klaar"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Waarschuwing: Groep/Omgeving %s bestaat niet."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Waarschuwing: Omgeving %s bestaat niet."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr "Waarschuwing: Groep %s bestaat niet."
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr "Geen pakketten in welke gewenste groep dan ook beschikbaar om te installeren of bij te werken"
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d pakket te installeren"
 +msgstr[1] "%d pakketten te installeren"
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr "Er bestaat geen omgeving met de naam %s"
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr "Geen enkele groep met de naam %s bestaat"
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr "Geen pakketten om uit de groepen te verwijderen"
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
 +msgstr[0] "%d pakket te verwijderen"
 +msgstr[1] "%d pakketten te verwijderen"
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr "Pakket %s is reeds geïnstalleerd, overslaan"
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr "Afwijzen van niet-vergelijkbare pkg %s.%s"
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr "Geen ander %s geïnstalleerd, wordt toegevoegd aan de lijst van potentieel te installeren"
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Plugin Opties"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr "Command line error: %s"
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -105663,452 +110826,484 @@ index 0000000..4ad6275
 +"%s: %s option requires an argument"
 +msgstr "\n\n%s: %s optie vereist een argument"
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr "--color   kies uit: auto, always, never"
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr "--installroot moet een absoluut pad zijn: %s"
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "Dit helpbericht tonen en afsluiten"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "fout-tolerant zijn"
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "draai volledig uit systeemcache, werk cachegeheugen niet bij"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "locatie config-bestand"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr "maximale wachttijd commando"
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr "debugging output niveau"
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr "laat dubbelen zien, in de repo's, in lijst/zoek-opdrachten"
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr "fouten output niveau"
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr "debugging output level voor rpm"
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr "stille uitvoering"
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr "verbose uitvoering"
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr "antwoord ja op alle vragen"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "antwoord nee voor alle vragen"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr "Toon Yum versie en sluit af"
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr "installatie root instellen"
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr "aanzetten één of meerdere repositories (wildcards toegestaan)"
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr "uitschakelen één of meerdere repositories (wildcards toegestaan)"
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr "uitsluiten pakket(ten) op naam of globaal"
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr "uitschakelen Uitsluiting van 'main', voor een repo of voor alles"
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr "aanzetten Verwerking verouderde pakketten tijdens updates"
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr "uitschakelen Yum plug-ins"
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr "uitschakelen GPG signature controleren"
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr "uitschakelen plugins op naam"
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr "aanzetten plugins op naam"
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr "sla pakketten met afhankelijkheidsproblemen over"
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr "bepalen of kleur wordt gebruikt"
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr "instellen waarde van $releasever in yum config en repo-bestanden"
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "niet updaten, alleen downloaden"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "geeft een andere map op om pakketten in op te slaan"
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr "instellen arbitraire config en repo-opties"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Jan"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Feb"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Mrt"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Apr"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "Mei"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr "Jun"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr "Jul"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr "Aug"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr "Sep"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr "Okt"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr "Nov"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr "Dec"
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr "Proberen andere mirror..."
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr "Naam        : %s %s %s"
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr "Arch        : %s"
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr "Epoch       : %s"
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr "Versie      : %s"
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr "Release     : %s"
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr "Grootte     : %s"
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr "Repo        : %s"
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr "Van  repo   : %s"
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr "Indiener    : %s"
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr "Ingediend op: %s"
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr "Bouwtijd    : %s"
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr "Installeertijd    : %s"
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr "Geïnstalleerd door: %s"
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr "Gewijzigd door    : %s"
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr "Samenvatting: "
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr "URL         : %s"
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr "Licentie    : "
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr "Beschrijving: "
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr "y"
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr "yes"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr "n"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr "no"
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr "Is dit ok [y / N]:"
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr "\nGroep: %s"
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr " Group-Id: %s"
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr " Beschrijving: %s"
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr " Taal: %s"
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr " Verplichte pakketten:"
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr "Standaard Pakketten:"
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr " Optionele pakketten:"
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr " Voorwaardelijke Pakketten:"
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Geïnstalleerde Pakketten:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nOmgevingsgroep: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "Omgevings-id: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Verplichte groepen:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Optionele groepen:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Geïnstalleerde groepen:"
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr "pakket: %s"
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr "  Geen afhankelijkheden voor dit pakket"
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr "  afhankelijkheid: %s"
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr "   Onvervulde afhankelijkheid"
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr "Match uit:"
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr "Licentie    : %s"
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr "Bestandsnaam: %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Levert    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr "Andere      : "
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr "Er is een fout opgetreden bij de berekening van de totale download-grootte"
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr "Totale grootte: %s"
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr "Totale download grootte: %s"
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr "Geïnstalleerde grootte: %s"
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr "Er was een fout bij het berekenen van geïnstalleerde grootte"
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr "Herinstalleren"
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr "Downgrading"
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr "Installeren vanwege afhankelijkheden"
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr "Updaten vanwege afhankelijkheden"
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr "Verwijderen vanwege afhankelijkheden"
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr "Overgeslagen (afhankelijkheidsproblemen)"
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr "Niet geïnstalleerd"
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr "Niet beschikbaar"
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] "Pakket"
 +msgstr[1] "Pakketten"
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr "Arch"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr "Versie"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr "Repository"
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr "Grootte"
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr "    vervangen van %s%s%s.%s%s\n"
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -106116,58 +111311,58 @@ index 0000000..4ad6275
 +"%s\n"
 +msgstr "\nTransactie Samenvatting\n%s\n"
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installeren"
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Verwijderen"
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Herinstalleren"
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Afhankelijk pakket"
 +msgstr[1] "Afhankelijke pakketten"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr "Verwijderd"
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr "Afhankelijkheid verwijderd"
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr "Afhankelijkheid geïnstalleerd"
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr "Afhankelijkheid bijgewerkt"
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr "Vervangen"
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr "Mislukt"
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr "twee"
 +
@@ -106175,7 +111370,7 @@ index 0000000..4ad6275
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -106183,542 +111378,542 @@ index 0000000..4ad6275
 +"to exit.\n"
 +msgstr "\nHuidige download geannuleerd, %sinterrupt (ctrl-c) nogmaals%s binnen %s%s%s seconden \nom af te sluiten.\n"
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr "onderbreking door gebruiker"
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr "Totaal"
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr "I"
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr "O"
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr "E"
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr "R"
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr "D"
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr "U"
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr "<unset>"
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr "Systeem"
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr "Overslaan van samengevoegde transactie %d tot %d, omdat dat overlapt"
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr "Geen transacties"
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr "Slechte transactie-ID's, of pakket(ten), gegeven"
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr "Commando lijn"
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr "Login gebruiker"
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr "ID"
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr "Datum en tijd"
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr "Actie(s)"
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr "Veranderd"
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr "Geen transactie-ID opgegeven"
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr "Onjuiste transactie-ID opgegeven"
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr "Opgegeven transactie-ID niet gevonden"
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr "Vond meer dan één transactie ID!"
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr "Geen transactie-ID, of pakket, opgegeven"
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr "Downgraded"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr "Ouder"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr "Nieuwer"
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr "Transactie-ID:"
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr "Starttijd      :"
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr "Begin rpmdb    :"
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr "(%u seconden)"
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr "(%u minuten)"
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr "(%u uur)"
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr "(%u dagen)"
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr "Eindtijd       :"
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr "Einde rpmdb    :"
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr "Gebruiker      :"
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr "Return-Code    :"
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr "Afgebroken"
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr "Mislukkingen:"
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr "Falen:"
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr "Succes"
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr "Commando Lijn   :"
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr "Extra niet-standaardinfo opgeslagen: %d"
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr "Transactie uitgevoerd met:"
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr "Pakketten veranderd:"
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr "Pakketten overgeslagen:"
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr "Rpmdb Problemen:"
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr "Scriptlet output:"
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr "Fouten:"
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr "Dep-Installeren"
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr "Als verouderd aanmerken"
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr "Wissen"
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr "Update"
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr "Tijd"
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr "Gisteren"
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr "Vorige week"
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr "Laatste 2 weken"
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr "Laatste 3 maanden"
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr "Laatste 6 maanden"
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr "Afgelopen jaar"
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr "Ruim een ​​jaar geleden"
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr "Geen transactie %s gevonden"
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr "Transactie-ID:"
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr "Beschikbare extra historische informatie:"
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr "%s: Geen aanvullende gegevens gevonden met deze naam"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Pakket         :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Status         :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Grootte        :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Build host     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Build time     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Packager       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Verkoper       :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licentie       :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Source RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Commit Tijd    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Committer      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Reden          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Van repo       :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Geïnstalleerd door:"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Gewijzigd door :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr "geïnstalleerd"
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr "een update"
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr "gewist"
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr "opnieuw geïnstalleerd"
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr "een downgrade"
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr "als verouderd aanmerken"
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr "bijgewerkt"
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr "als verouderd aangemerkt"
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr "---> Pakket %s.%s %s:%s-%s wordt %s"
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr "--> Transactiecontrole uitvoeren"
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr "--> Herstarten Oplossen Afhankelijkheden met de nieuwe gegevens"
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr "--> Klaar met oplossen afhankelijkheden"
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr "--> Verwerking afhankelijkheid: %s voor pakket: %s"
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
-+msgstr "--> Behouden pakket: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Behouden van pakket: %s vanwege %s"
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr "--> Onopgeloste afhankelijkheid: %s"
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr "Pakket: %s"
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr "\n     Vereist: %s"
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr "\n    %s: %s (%s)"
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr "\n        %s"
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr "\n        Niet gevonden"
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr "Bijgewerkt door"
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr "Downgraded door"
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr "Nieuwer pakket is:"
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr "Beschikbaar"
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr "--> Verwerking Conflict: %s %s conflicteren"
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr "--> De transactieset wordt met de geselecteerde pakketten gevuld. Een ogenblikje geduld."
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr "---> Downloaden header voor %s om in de transactie op te nemen."
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verifiëren"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr "Uitvoeren"
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr "Slapen"
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr "Ononderbroken"
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr "Zombie"
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr "Getraceerd / Gestopt"
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr "Onbekend"
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr "  De andere toepassing is: PackageKit"
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr "  De andere toepassing is: %s"
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr "    Memory : %5s RSS (%5sB VSZ)"
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr "    Gestart: %s - %s geleden"
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr "    Status  : %s, pid: %d"
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr "\n\nBeëindigen vanwege afbreken door gebruiker"
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr "\n\nBeëindigen vanwege Broken Pipe"
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -106726,47 +111921,41 @@ index 0000000..4ad6275
 +"%s"
 +msgstr "\n\n%s"
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr "Een andere toepassing heeft op dit moment yum gelocked; Stoppen zoals geconfigureerd door exit_on_lock"
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr "PluginExit Fout: %s"
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr "Yum Fout: %s"
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr "Fout: %s"
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr " Je zou kunnen proberen met behulp van --skip-broken het probleem te omzeilen"
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr " Je zou kunnen proberen: rpm -Va --nofiles --nodigest"
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr "Onbekende fout(en): Exit Code: %d:"
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr "\nAfhankelijkheden opgelost"
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr "Compleet!"
 +
@@ -106805,518 +111994,564 @@ index 0000000..4ad6275
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr "Fout: Lijst van Pkgs nodig om door te geven aan %s"
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Fout: Tenminste twee pakketten nodig om %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Fout: Moet een repo-id en commando doorgeven aan %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Fout: Moet een enkel, geldig repo-id doorgeven aan %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Fout: Repo %s is niet ingeschakeld"
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr "Fout: Item om te vergelijken nodig"
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr "Fout: Een groep of lijst van groepen nodig"
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr "Fout: clean vereist een optie: %s"
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Fout: ongeldige clean argument: %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr "Geen argument voor shell"
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr "Bestandsnaam doorgegeven aan shell: %s"
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr "Bestand %s gegeven als argument aan shell bestaat niet."
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr "Fout: meer dan één bestand gegeven als argument aan shell."
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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 "Er zijn geen ingeschakeld repo's. \nRun \"yum repolist all\" om de repo's die je hebt te zien. \nJe kunt de repo's met yum-config-manager --enable <repo> instellen"
 +
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr "PAKKET..."
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr "Installeer een pakket of pakketten op je systeem"
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr "Opzetten van installatieproces"
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr "[PAKKET...]"
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr "Update een pakket of pakketten op je systeem"
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr "Opzetten van update-proces"
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr "Synchroniseren geïnstalleerde pakketten naar de nieuwste beschikbare versies"
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr "Opzetten van distributie synchronisatie proces"
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr "Weergeven details van pakket of een groep pakketten"
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr "Geïnstalleerde pakketten"
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr "Beschikbare pakketten"
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr "Extra pakketten"
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr "Bijgewerkte pakketten"
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr "Als verouderd aangemerkte pakketten"
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr "Onlangs toegevoegde pakketten"
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr "Geen passende pakketten om te tonen"
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr "Toon een pakket of groepen van pakketten"
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr "Verwijderen van pakket of pakketten van je systeem"
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr "Opzetten Verwijder-proces"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Toon, of gebruik, de groepen-informatie"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr "Opzetten van Groep-proces"
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr "Geen groepen waarop commando uit te voeren is"
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Ongeldige groepen sub-commando, gebruik: %s."
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Er bestaat geen geïnstalleerd groepenbestand"
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "U hebt geen toegang tot de groepen DB"
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr "Genereer de metadata-cache"
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr "Maken van cache-bestanden voor alle metadata bestanden."
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr "Dit kan enige tijd duren afhankelijk van de snelheid van deze computer"
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr "Metadata Cache gemaakt"
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr "Verwijderen gegevens in het cachegeheugen"
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr "Uitzoeken welk pakket de opgegeven waarde bevat"
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr "Controleren beschikbaarheid update-pakketten"
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr "Doorzoeken pakketdetails voor de opgegeven string"
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr "Zoeken Pakketten: "
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr "Bijwerken pakketten met verouderde pakketten meerekenend"
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr "Opzetten van Upgrade Proces"
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr "Installeren lokale RPM"
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr "Opzetten Lokaal Pakket Proces"
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr "Opzoeken pakketten wegens afhankelijkheid:"
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr "Run een interactieve yum shell"
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr "Opzetten van Yum Shell"
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr "Toon pakketafhankelijkheden"
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr "Opzoeken van afhankelijkheden:"
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr "Toon de geconfigureerde software repositories"
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr "ingeschakeld"
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr "uitgeschakeld"
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr "Repo-id      : "
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr "Repo-naam    : "
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr "Repo-status  : "
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr "Repo-revisie : "
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr "Repo-tags    : "
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr "Repo-distro-tags: "
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr "Repo-updated : "
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr "Repo-pkgs    : "
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr "Repo-grootte : "
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr "Repo-baseurl : "
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr "Repo-metalink: "
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr "  Bijgewerkt : "
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr "Repo-mirrors : "
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr "Nooit (laatste: %s)"
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr "Instant (laatste: %s)"
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr "%s second(en) (vorige: %s)"
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr "Repo-expiratie: "
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr "Repo-uitsluiting : "
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr "Repo-inbegrepen: "
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr "Repo-uitgesloten: "
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr "Repo-bestandsnaam:"
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr "repo id"
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr "status"
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr "repo naam"
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr "Toon een hulpvaardig gebruiksbericht"
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr "Geen hulp beschikbaar voor %s"
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr "\naliassen: "
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr "\n\nalias: "
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr "Opzetten herinstallatieproces"
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr "Herinstalleer een pakket"
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr "Opzetten van Downgrade Proces"
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr "downgraden van een pakket"
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr "Toon een versie voor de machine en/of beschikbare repos."
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr " Yum versie groepen:"
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr " Groep   :"
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr " Pakketten:"
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr "Geïnstalleerd:"
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr "Groep-Geïnstalleerd:"
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr "Beschikbaar:"
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr "Groep-Beschikbaar:"
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr "Toon, of gebruik, de transactiegeschiedenis"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transacties:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Begin tijd  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Eindtijd    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Telling     :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr "Ongeldig geschiedenis sub-commando, gebruik: %s."
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr "Je hebt geen toegang tot de geschiedenis-DB."
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr "Controleer op problemen in de rpmdb"
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr "laad opgeslagen transactie uit bestandsnaam"
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr "Geen opgeslagen transactie bestand gespecificeerd."
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr "laden transactie van %s"
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr "Transactie geladen van %s met %s leden"
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Makkelijke manier om pakketten te wisselen, in plaats van de shell te gebruiken."
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Beschouw een repo als een groep pakketten, waardoor we ze allemaal kunnen installeren/verwijderen"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d pakket te updaten"
++msgstr[1] "%d pakketten te updaten"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d pakket te verwijderen/te herinstalleren"
++msgstr[1] "%d pakketten te verwijderen/te herinstalleren"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d pakket te verwijderen/sync"
++msgstr[1] "%d pakketten te verwijderen/sync"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Geen geldig sub-commando van %s"
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr " Yum controles is mislukt: %s"
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Geen lezen/uitvoeren rechten in de huidige directory, verhuizen naar /"
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Geen getcwd() toegang in huidige directory, ik ga naar /"
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "Kan geen lock-bestand aanmaken; verlaten"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Een andere toepassing blokkeert op dit moment yum; aan het wachten tot het afsluit ..."
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr "Oplossen van afhankelijkheden"
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr "Je transactie was gesaved, voer opnieuw uit met:\n yum load-transaction %s"
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -107346,7 +112581,7 @@ index 0000000..4ad6275
 +msgid "Member: %s"
 +msgstr "Lid: %s"
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr "%s omgezet om te installeren"
@@ -107403,326 +112638,380 @@ index 0000000..4ad6275
 +msgid "Trying to update %s to resolve dep"
 +msgstr "Proberen om, door %s bij te werken, afhankelijkheden op te lossen"
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr "Geen update paden gevonden voor %s. Faal!"
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Geen update-paden gevonden voor %s. Mislukt vanwege vereiste: %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Update voor %s. Repareert niet vereiste: %s!"
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr "TSINFO: %s pakket dat %s nodig heeft is gemarkeerd als wissen"
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr "TSINFO: Vervangen %s door %s om afhankelijkheid op te lossen."
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr "TSINFO: Bijwerken %s om afhankelijkheid op te lossen."
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr "Kan geen update-pad voor afhankelijkheden vinden voor: %s"
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr "Snelselectie %s, benodigd voor %s"
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr "%s is aanwezig in klaargezette pakketten, maar is al geïnstalleerd, verwijderen."
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr "Van potentieel afhankelijkheidoplossend pakket %s is nieuwere versie in ts aanwezig"
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr "Van potentieel afhankelijkheidoplossend pakket %s is al een nieuwere versie geïnstalleerd"
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr "%s reeds in transactieset, deze wordt overgeslagen"
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr "TSINFO: Markeren %s als update voor %s"
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr "TSINFO: Markeren %s als installatie voor %s"
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr "Succes - lege transactie"
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr "Herstarten Loop"
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr "Proces Afhankelijkheid beëindigen"
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr "Succes - afhankelijkheden opgelost"
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr "Controleren afhankelijkheden voor %s"
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr "Zoeken naar %s als een vereiste voor %s"
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr "Uitvoeren compare_providers() voor %s"
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr "betere arch in po %s"
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr "%s is nieuwer dan %s"
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr "archdist vergeleek %s met %s op %s\n  Winnaar: %s"
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr "gemeenschappelijke sourcerpm %s en %s"
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr "basispakket %s is geïnstalleerd voor %s"
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr "gemeenschappelijke prefix van %s tussen %s en %s"
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr "levert vercmp: %s"
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr " Winnaar: %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "vereist minimaal: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr " Verliezer (met %d): %s"
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr "De beste keus: %s"
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr "doConfigSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Overslaan onleesbare repository %s"
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr "Repository %r: Fout parsing config: %s"
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr "Van repository %r ontbreekt naam in configuratie, id wordt gebruikt"
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr "plugins al geïnitialiseerd"
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr "doRpmDBSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr "Lezen lokale RPMDB"
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr "doRepoSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr "doSackSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr "Opzetten van Pakkethouders"
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr "repo object voor repo %s ontbeert een _resetSack methode\n"
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr "daarom kan deze repo niet gereset worden.\n"
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr "doUpdateSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr "Opbouwen updates object"
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr "doGroupSetup() zal verdwijnen in een toekomstige versie van Yum.\n"
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr "Verkrijgen groep metadata"
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr "Toevoegen van groep-bestand uit repository: %s"
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Groepbestand ophalen voor repository %s is niet gelukt"
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr "Niet gelukt groepen-bestand toe te voegen voor repository: %s - %s"
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr "Geen Groepen beschikbaar in welke repository dan ook"
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr "Verkrijgen pkgtags metadata"
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr "Toevoegen van tags van repository: %s"
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr "Niet gelukt Pkg Tags toe te voegen voor repository: %s -%s"
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr "Importeren van extra filelist informatie"
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr "Het programma %s%s%s is gevonden in het yum-utils pakket."
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr "Er zijn onvoltooid gebleven transactiehandelingen. Je zou kunnen overwegen om yum-complete-transaction eerst uit te voeren om deze af te maken."
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr "--> Vinden van overbodige achtergebleven afhankelijkheden"
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
-+msgstr "Beschermde multilib versies: %s!=%s"
++msgstr "Beschermde multilib-versies: %s!=%s"
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr " 'Multilib-versie'-probleem gevonden. Dit betekent meestal dat de\nhoofdoorzaak ergens anders ligt en 'multilib versie'-controle er\nslechts op wijst dat er een probleem is, b.v.:\n\n  1. U hebt een upgrade voor %(name)s. Deze mist een afhanke-\n     lijkheid dat een ander pakket nodig heeft. Yum probeert dit op te\n     lossen met het installeren van een oudere versie van %(name)s met\n     een andere architectuur. Indien u de foute architectuur uitsluit\n     meldt yum u wat de hoofdoorzaak is (welk pakket wat\n     nodig heeft). U kunt proberen de upgrade opnieuw te doen met\n     --exclude %(name)s.otherarch ... dit zou een foutmelding moeten\n     geven met de hoofdoorzaak van het probleem vermeld.\n\n  2. U hebt meerdere architecturen van %(name)s geïnstalleerd, maar\n     yum kan alleen een upgrade van één van beide zien.\n     Indien u beide architecturen niet meer wilt/nodig hebt, kunt\n     u degene met de missende afhankelijkheid verwijderen en alles\n
      zal weer werken.\n\n  3. U hebt al identieke versies van %(name)s geïnstalleerd.\n     U kunt \"yum check\" gebruiken om yum deze fouten te laten melden.\n\n...u kunt ook --setopt=protected_multilib=false gebruiken om deze\ncheck uit te schakelen. Dit is echter vrijwel nooit een goede oplossing,\nomdat iets anders zeer waarschijnlijk niet goed zal gaan (meestal \ngeeft dat veel, veel meer problemen).\n\n"
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr "Proberen \"%s\" te verwijderen, welke wordt beschermd"
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr "\nPakketten overgeslagen vanwege afhankelijkheidsproblemen:"
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr "    %s van %s"
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr "** %d reeds bestaande rpmdb problem(en) gevonden, 'yum check' output geeft:"
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr "Waarschuwing: RPMDB buiten yum om veranderd."
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr "ontbrekende vereist"
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr "geïnstalleerd conflict"
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr "Waarschuwing: scriptlet of andere niet-fatale fouten opgetreden tijdens de transactie."
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr "Transactie kon niet worden gestart:"
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr "Transactie kon niet worden uitgevoerd."
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, python-format
 +msgid "Failed to remove transaction file %s"
 +msgstr "Niet gelukt transactiebestand %s te verwijderen"
 +
 +#. maybe a file log here, too
 +#. but raising an exception is not going to do any good
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr "%s zou worden geïnstalleerd, maar werd het niet!"
@@ -107732,462 +113021,482 @@ index 0000000..4ad6275
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr "%s moest worden verwijderd, maar werd het niet!"
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr "Bestaande lock %s: een ander exemplaar wordt uitgevoerd met PID %s."
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr "Kon geen lock maken op %s: %s"
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Kon lock %s niet openen: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Kon niet vaststellen of PID %s actief is"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, python-format
 +msgid ""
 +"Package does not match intended download. Suggestion: run yum "
 +"--enablerepo=%s clean metadata"
 +msgstr "Pakket komt niet overeen met voorgenomen download. Suggestie: voer yum --enablerepo=%s clean metadata uit"
 +
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr "Kon checksum niet uitvoeren"
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr "Pakket komt niet overeen met checksum"
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr "pakket ontbeert checksum, maar caching is ingeschakeld voor %s"
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr "lokale kopie van %s wordt gebruikt"
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "afsluiten omdat  --downloadonly is opgegeven"
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr "Header is niet compleet."
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr "Header niet in lokale cache aanwezig en caching-only modus ingeschakeld. Kan %s niet downloaden"
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr "Publieke sleutel voor %s is niet geïnstalleerd"
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr "Probleem met openen van pakket %s"
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr "Publieke sleutel voor %s is niet vertrouwd"
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr "Pakket %s is niet ondertekend"
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr "Kan %s niet verwijderen"
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr "Verwijderd %s"
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr "Kan niet verwijderen %s bestand %s"
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr "%s bestand verwijderd %s"
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
 +msgstr[0] "%d %s bestand verwijderd"
 +msgstr[1] "%d %s bestanden verwijderd"
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr "Meer dan één identieke match in houder voor %s"
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr "Niets komt overeen met %s.%s%s:%s-%s van update"
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr "searchPackages() zal verdwijnen in een toekomstige versie van Yum.                      Gebruik searchGenerator()  \n"
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
 +msgstr[0] "Zoeken %d pakket"
 +msgstr[1] "Zoeken %d pakketten"
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr "zoeken pakket %s"
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr "zoeken in file entries"
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr "zoeken in provides entries"
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr "Geen groepsgegevens beschikbaar voor geconfigureerde repositories"
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr "Er bestaat geen groep met de naam %s"
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr "pakket %s is niet gemarkeerd in groep %s"
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Pakket %s van groep %s wordt overgeslagen"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr "Toevoegen van pakket %s uit de groep %s"
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr "Geen pakket met de naam %s beschikbaar om te worden geïnstalleerd"
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
-+msgstr "Waarschuwing: Groep %s heeft geen pakketten."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Waarschuwing: Groep %s heeft geen pakketten om te installeren."
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr "Groep %s heeft %u voorwaardelijk pakketten, welke zouden kunnen worden geïnstalleerd."
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Groep %s wordt weggelaten uit omgeving %s"
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr "Pakket-tupel %s kon niet in pakkethouder gevonden worden"
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr "Pakket-tupel %s kon niet in rpmdb gevonden worden"
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr "Ongeldige versie vlag van: %s"
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr "Geen pakket gevonden voor %s"
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Waarschuwing: Omgevingsgroep %s bestaat niet."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Pakket: %s - kan niet co-installeren met %s"
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr "Pakket Object was niet een pakket objectinstantie"
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr "Niets aangemerkt om te installeren"
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr "Controleren op virtuele levering dan wel bestand-levering voor %s"
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr "Pakket %s geïnstalleerd en niet beschikbaar"
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr "Geen pakket(ten) beschikbaar om te installeren"
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr "Pakket: %s  - reeds in transactie set"
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr "Pakket %s is ouder dan %s, dat reeds is geïnstalleerd"
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr "Pakket %s is ouder dan %s, maar nieuwer pakket voldoet niet aan de vereisten"
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr "Pakket %s is ouder dan %s, zal dientengevolge pogen %s te installeren"
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr "Pakket %s is reeds geïnstalleerd en de meest recente versie"
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr "Pakket dat overeenkomt met %s is al geïnstalleerd. Controleren op update."
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr "Updaten Alles"
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Niet Bijwerken pakket dat al verouderd is: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Geen resultaat voor argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Geen pakket aangetroffen om te upgraden: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Pakket is al verouderd: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr "Niet Bijwerken pakket dat verouderd is: %s"
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr "Niet Bijwerken pakket dat al bijgewerkt is: %s.%s%s:%s-%s"
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Geen pakket aangetroffen om te verwijderen: %s"
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr "Overslaan van -draaiende- kernel: %s"
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr "Verwijderen van %s uit de transactie"
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr "Kan niet openen: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr "Onderzoeken %s: %s"
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr "Niet gelukt deltarpm lokaal te installeren: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr "Kan pakket %s niet toevoegen aan transactie. Geen compatibele architectuur: %s"
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr "Kan pakket %s niet installeren. Het al geïnstalleerde pakket %s is nieuwer"
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr "Pakket %s is niet geïnstalleerd, en kan dus ook niet vernieuwd worden. Voer in de plaats daarvan yum install uit, om te installeren."
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, python-format
 +msgid ""
 +"Package %s.%s not installed, cannot update it. Run yum install to install it"
 +" instead."
 +msgstr "Pakket %s.%s is niet geïnstalleerd, kan het dus niet vernieuwen. Voer in de plaats daarvan yum install uit om te installeren."
 +
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr "Uitsluiten %s"
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr "Markeren %s om te installeren"
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr "Markeren %s als een update voor %s"
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr "%s: is geen update voor geïnstalleerd pakket."
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr "Kan bestand niet openen: %s. Overslaan."
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr "Probleem met herinstalleren: geen overeenkomstig pakket gevonden om eerst te verwijderen"
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr "Probleem met herinstalleren: geen overeenkomstig pakket %s gevonden om opnieuw te installeren "
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr "Geen pakket(ten) beschikbaar om te downgraden"
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr "Pakket %s is toegestaan ​​meerdere installaties te hebben, wordt overgeslagen"
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr "Geen match voor beschikbaar pakket: %s"
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr "Upgrade alleen beschikbaar voor het pakket: %s"
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr "Mislukt downgraden: %s"
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Bijwerken mislukt van: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr "Ophalen sleutel uit %s"
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +msgid "GPG key retrieval failed: "
 +msgstr "GPG sleutel ophalen mislukte:"
 +
 +#. if we decide we want to check, even though the sig failed
 +#. here is where we would do that
-+#: ../yum/__init__.py:5306
++#: ../yum/__init__.py:5766
 +#, python-format
 +msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 +msgstr "GPG key signature van sleutel %s komt niet overeen met de CA Key van repo: %s"
 +
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr "GPG key geverifieerd middels CA Key(s)"
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr "Ongeldige GPG sleutel van %s: %s"
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr "GPG sleutel parsing faalde: sleutel heeft geen waarde %s"
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -108197,7 +113506,7 @@ index 0000000..4ad6275
 +" From       : %s"
 +msgstr "Importeren %s sleutel 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Pakket     : %s (%s)\n Van        : %s"
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -108206,7 +113515,7 @@ index 0000000..4ad6275
 +" From       : %s"
 +msgstr "Importeren %s sleutel 0x%s:\n Userid     : \"%s\"\n Fingerprint: %s\n Van        : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -108216,44 +113525,44 @@ index 0000000..4ad6275
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Falende pakket is: %s\n GPG Sleutels zijn geconfigureerd als: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr "GPG sleutel %s (0x%s) is al geïnstalleerd"
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr "Importeren sleutel is mislukt (code %d)"
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr "Sleutel succesvol geïmporteerd"
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr "Er werden geen sleutels geïnstalleerd"
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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 "De GPG sleutels vermeld voor de \"%s\" repository zijn al geïnstalleerd, maar ze zijn niet correct voor dit pakket. \nControleer of de juiste sleutel-URL's zijn geconfigureerd voor deze repository."
 +
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr "Import van sleutel(s) heeft niet geholpen, verkeerde sleutel(s)?"
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nee"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Ja"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -108264,123 +113573,120 @@ index 0000000..4ad6275
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA Sleutel: %s\n Falende repo is: %s\n GPG Sleutels zijn geconfigureerd als: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr "GPG-sleutel op %s (0x%s) is reeds geïmporteerd"
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Import sleutel %s faalde"
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr "Er werden geen sleutels geïnstalleerd voor repo %s"
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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 "De GPG sleutels vermeld voor de \"%s\" repository zijn al geïnstalleerd, maar ze zijn niet correct. \nControleer of de juiste sleutel-URL's zijn geconfigureerd voor deze repository."
 +
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr "Niet in staat om een ​​geschikte mirror te vinden."
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr "Fouten tegengekomen tijdens het downloaden van pakketten."
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr "Meld deze fout a.u.b. op %s"
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr "Test Transactie Fouten: "
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr "Kon cachedir niet instellen: %s"
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr "Afhankelijkheden niet opgelost. Zal een transactie met onopgeloste afhankelijkheden niet opslaan."
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr "Kon transactiebestand %s niet opslaan: %s"
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr "Kon geen toegang krijgen tot/lezen opgeslagen transactie %s: %s"
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr "rpmdb versie gaat niet samen met de bewaarde transactieversie,"
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
-+msgstr " negeren, zoals gevraagd."
-+
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
-+msgstr "afbreken."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "rpmdb versie kwam niet overeen met opgeslagen transactie versie,"
 +
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr "kan tsflags of tsflags niet vinden, geen integer."
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr "Trof txmbr in onbekende huidige status aan: %s"
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr "Kon txmbr niet vinden: %s in status %s"
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr "Kon txmbr niet vinden: %s van herkomst: %s"
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr "Transactie-leden, relaties ontbreken of ts is gewijzigd,"
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr " negeren, zoals gevraagd. U moet afhankelijkheden opnieuw oplossen!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s is al bezocht en kan niet worden verwijderd."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Onderzoeken revdeps van %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s heeft revdep %s en was gebruiker-geïnstalleerd."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s moet voor dit pakket al zijn geïnstalleerd"
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s heeft geen door gebruiker geïnstalleerd revdeps."
@@ -108474,7 +113780,7 @@ index 0000000..4ad6275
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verifiëer: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -108482,6 +113788,10 @@ index 0000000..4ad6275
 +"    * needed %s"
 +msgstr "Onvoldoende ruimte in download directory %s\n    * vrij     %s\n    * nodig %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Pakket komt niet overeen met bedoelde download"
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -108511,16 +113821,16 @@ index 0000000..4ad6275
 +msgid "Error opening rpm %s - error %s"
 +msgstr "Fout bij het openen van rpm %s - fout %s"
 diff --git a/po/pa.po b/po/pa.po
-index e714500..edb4778 100644
+index e714500..ac83881 100644
 --- a/po/pa.po
 +++ b/po/pa.po
-@@ -2,937 +2,968 @@
+@@ -2,937 +2,1051 @@
  # 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-2012.
++# A S Alam <apreet.alam at gmail.com>, 2011-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -108529,8 +113839,8 @@ index e714500..edb4778 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-11-22 11:34+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-03-01 02:00+0000\n"
 +"Last-Translator: A S Alam <apreet.alam at gmail.com>\n"
  "Language-Team: Panjabi (Punjabi) <punjabi-users at lists.sf.net>\n"
  "MIME-Version: 1.0\n"
@@ -108541,7 +113851,7 @@ index e714500..edb4778 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
@@ -108552,31 +113862,31 @@ index e714500..edb4778 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "ਅੱਪਡੇਟ ਕੀਤੇ"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "ਇੰਸਟਾਲ ਕੀਤਾ"
  
@@ -108604,7 +113914,7 @@ index e714500..edb4778 100644
  msgstr "ਸਾਫ਼ ਕੀਤਾ: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
  
@@ -108614,69 +113924,69 @@ index e714500..edb4778 100644
  msgstr "ਸਾਫ਼"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "ਕਮਾਂਡ \"%s\" ਪਹਿਲਾਂ ਦੀ ਦਿੱਤੀ ਹੈ"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ ਸੈਟਅੱਪ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "ਲੋਕਲ ਫਾਇਲਾਂ ਤੋਂ ਰਿਪੋਜ਼ਟਰੀ ਮੇਟਾਡਾਟਾ ਪੜ੍ਹਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "ਸੰਰਚਨਾ ਗਲਤੀ: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "ਚੋਣ ਗਲਤੀ: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "   ਇੰਸਟਾਲ ਕੀਤਾ:%s-%s %s ਉੱਤੇ "
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr " ਬਿਲਡ   : %s %s ਉੱਤੇ "
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  ਕਮਿਟ ਕੀਤਾ: %s %s ਉੱਤੇ"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "ਤੁਹਾਨੂੰ ਕੁਝ ਕਮਾਂਡ ਦੇਣ ਦੀ ਲੋੜ ਹੈ"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "ਇੰਝ ਦੀ ਕੋਈ ਕਮਾਂਡ ਨਹੀਂ ਹੈ: %s। %s --help ਵਰਤੋਂ ਜੀ"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "ਡਿਸਕ ਲੋੜਾਂ:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr "   ਘੱਟੋ-ਘੱਟ %dMB ਹੋਰ ਖਾਲੀ ਥਾਂ %s ਫਾਇਲ ਸਿਸਟਮ ਉੱਤੇ ਚਾਹੀਦੀ ਹੈ।\n"
@@ -108687,7 +113997,7 @@ index e714500..edb4778 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -108695,79 +114005,100 @@ index e714500..edb4778 100644
 -"ਗਲਤੀ ਸੰਖੇਪ\n"
 -"------------\n"
 +msgstr "ਗਲਤੀ ਸੰਖੇਪ\n------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "ਲਾਕ ਫਾਇਲ ਨਹੀਂ ਬਣਾਈ ਜਾ ਸਕੀ; ਮੌਜੂਦ ਹੈ"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ;  exit_on_lock ਵਲੋਂ ਸੰਰਚਨਾ ਮੁਤਾਬਕ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
--msgstr ""
++msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ, ਪਰ ਕੁਝ ਵੀ ਕਰਨ ਲਈ ਨਹੀਂ ਹੈ। ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
+ msgstr ""
 -"ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ, ਪਰ ਕੁਝ ਵੀ ਕਰਨ ਲਈ ਨਹੀਂ ਹੈ। ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ"
 -" ਹੈ।"
-+msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ, ਪਰ ਕੁਝ ਵੀ ਕਰਨ ਲਈ ਨਹੀਂ ਹੈ। ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ਕੀਤੀ ਮੰਗ ਮੁਤਾਬਕ ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "ਯੂਜ਼ਰ ਕਮਾਂਡ ਮੌਜੂਦ ਹੈ"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਚੱਲ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr "ਗਲਤੀ, ਤੁਹਾਨੂੰ ਹੈਂਡਲ ਕਰਨ ਲਈ rpm ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "%s ਵਿੱਚ ਇਹ ਗਲਤੀ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦਿਉ"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਟੈਸਟ ਚੱਲ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਗਲਤੀ:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਟੈਸਟ ਸਫ਼ਲ ਰਿਹਾ"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚੱਲ ਰਹੀ ਹੈ"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -108775,18 +114106,18 @@ index e714500..edb4778 100644
 +msgstr "ਬਿਨਾਂ-ਧਿਆਨ ਦੇ ਚਲਾਉਣ ਦੌਰਾਨ ਕੁੰਜੀਆਂ ਨੂੰ ਆਟੋਮੈਟਿਕ ਇੰਪੋਰਟ ਕਰਨ ਤੋਂ ਇਨਕਾਰੀ।\nਅਣਡਿੱਠਾ ਕਰਨ ਲਈ \"-y\" ਵਰਤੋਂ।"
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * ਸ਼ਾਇਦ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "ਕੋਈ %s%s%s ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।"
@@ -108794,22 +114125,27 @@ index e714500..edb4778 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "ਕਰਨ ਲਈ ਕੁਝ ਨਹੀਂ"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "ਅੱਪਡੇਟ ਕਰਨ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
@@ -108819,12 +114155,12 @@ index e714500..edb4778 100644
 +msgstr[1] "ਅੱਪਡੇਟ ਲਈ ਚੁਣੇ %d ਪੈਕੇਜ"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "ਅੱਪਡੇਟ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰਨ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
@@ -108834,12 +114170,12 @@ index e714500..edb4778 100644
 +msgstr[1] "%d ਪੈਕੇਜ ਡਿਸਟਰੀਬਿਊਜ਼ਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ੇਸ਼ਨ ਲਈ ਨਿਸ਼ਾਨਬੱਧ ਕੀਤੇ ਗਏ"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਮਾਰਕ ਨਹੀਂ ਕੀਤਾ"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ ਚੁਣੇ ਗਏ"
@@ -108849,14 +114185,14 @@ index e714500..edb4778 100644
 +msgstr[1] "ਹਟਾਉਣ ਲਈ ਚੁਣੇ %d ਪੈਕੇਜ"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਪੈਕੇਜ"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -108864,13 +114200,13 @@ index e714500..edb4778 100644
 +msgstr[1] "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (%s ਵਲੋਂ)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ %s%s%s%s ਉਪਲੱਬਧ ਨਹੀਂ।"
@@ -108878,7 +114214,7 @@ index e714500..edb4778 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -108886,58 +114222,58 @@ index e714500..edb4778 100644
 +msgstr[1] "ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਦਿੰਦਾ"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "ਮਿਲਦੇ: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "ਚੇਤਾਵਨੀ: %s :ਲਈ ਕੋਈ ਮੇਲ ਨਹੀਂ ਲੱਭਿਆ"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "ਕੋਈ ਮਿਲਦਾ ਨਹੀਂ"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "%s ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ"
@@ -108947,118 +114283,143 @@ index e714500..edb4778 100644
 +msgstr "ਗਲਤੀ: ਇਸ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "ਰੈਪੋ ਸਾਫ਼ ਕੀਤੀਆਂ ਜਾਂਦੀਆਂ ਹਨ: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "ਹਰ ਚੀਜ਼ ਸਾਫ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "ਹੈੱਡਰ ਸਾਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "ਪੈਕੇਜ ਸਾਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "xml  ਮੇਟਾਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "ਡਾਟਾਬੇਸ ਕੈਸ਼ ਸਾਫ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "ਐਕਸਪਾਇਰ-ਕੈਸ਼ ਮੇਟਾਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "ਕੈਸ਼ ਕੀਤਾ rpmdb ਡਾਟਾ ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "ਪਲੱਗਇਨ ਸਾਫ਼ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
 -msgstr ""
-+msgstr "ਸਾਵਧਾਨ: ਕੋਈ ਮਿਲਦਾ ਗਰੁੱਪ ਨਹੀਂ: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "ਇੰਸਟਾਲ ਹੋਏ ਇੰਵਾਇਨਮੈਂਟ ਗਰੁੱਪ:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "ਉਪਲੱਬਧ ਇੰਵਾਇਨਮੈਂਟ ਗਰੁੱਪ:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "ਇੰਸਟਾਲ ਹੋਏ ਗਰੁੱਪ:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "ਇੰਸਟਾਲ ਹੋਏ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "ਉਪਲੱਬਧ ਗਰੁੱਪ:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "ਉਪਲੱਬਧ ਭਾਸ਼ਾ ਗਰੁੱਪ:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "ਮੁਕੰਮਲ"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "ਚੇਤਾਵਨੀ: ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr "ਮੰਗੇ ਗਏ ਗਰੁੱਪ ਵਿੱਚੋਂ ਕੋਈ ਵੀ ਪੈਕੇਜ ਇੰਸਟਾਲ ਜਾਂ ਅੱਪਡੇਟ ਲਈ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
 +msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgid "No Environment named %s exists"
++msgstr "%s ਨਾਂ ਦਾ ਕੋਈ ਵੀ ਇੰਵਾਇਨਮੈਂਟ ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "%s ਨਾਂ ਦਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "ਗਰੁੱਪ ਵਿੱਚੋਂ ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ"
@@ -109068,13 +114429,13 @@ index e714500..edb4778 100644
 +msgstr[1] "ਹਟਾਉਣ ਲਈ %d ਪੈਕੇਜ"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "%s ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ, ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, python-format
  msgid "Discarding non-comparable pkg %s.%s"
 -msgstr ""
@@ -109082,25 +114443,25 @@ index e714500..edb4778 100644
  
  #. we've not got any installed that match n or n+a
 -#: ../cli.py:1423
-+#: ../cli.py:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
 +msgstr "ਕੋਈ ਹੋਰ %s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਸੰਭਾਵਿਤ ਇੰਸਟਾਲ ਦੀ ਸੂਚੀ ਵਿੱਚ ਜੋੜਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "ਪਲੱਗਇਨ ਚੋਣਾਂ"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "ਕਮਾਂਡ ਲਾਈਨ ਗਲਤੀ: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -109113,354 +114474,362 @@ index e714500..edb4778 100644
 +msgstr "\n\n%s:%s ਚੋਣ ਲਈ ਆਰਗੂਮੈਂਟ ਚਾਹੀਦਾ ਹੈ"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
 -msgstr ""
 +msgstr "--color ਇਹਨਾਂ ਵਿੱਚੋੰ ਲੈਂਦਾ ਹੈ: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "ਇਹ ਮੱਦਦ ਸੁਨੇਹਾ ਵੇਖਾਉ ਅਤੇ ਬੰਦ ਕਰੋ"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "ਪੂਰੀ ਤਰ੍ਹਾਂ ਸਿਸਟਮ ਕੈਸ਼ ਤੋਂ ਚਲਾਓ, ਕੈਸ਼ ਅੱਪਡੇਟ ਨਾ ਕਰੋ"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "ਸੰਰਚਨਾ ਫਾਇਲ ਟਿਕਾਣਾ"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "ਵੱਧੋ-ਵੱਧ ਕਮਾਂਡ ਉਡੀਕ ਸਮਾਂ"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "ਡੀਬੱਗ ਆਉਟਪੁੱਟ ਲੈਵਲ"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "ਡੁਪਲੀਕੇਟ ਵੇਖੋ, ਰਿਪੋ ਵਿੱਚ, ਲਿਸਟ/ਖੋਜ ਕਮਾਂਡ ਵਿੱਚ"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "ਗਲਤੀ ਆਉਟਪੁੱਟ ਲੈਵਲ"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "rpm ਲਈ ਡੀਬੱਗ ਆਉਟਪੁੱਟ ਲੈਵਲ"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "ਚੁੱਪ-ਚਾਪ ਕਾਰਵਾਈ"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "ਜਾਣਕਾਰੀ ਸਮੇਤ ਕਾਰਵਾਈ"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "ਸਭ ਸਵਾਲਾਂ ਦੇ ਜਵਾਬ ਹਾਂ"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "ਸਭ ਸਵਾਲਾਂ ਲਈ ਨਾਂਹ ਜਵਾਬ"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "ਯੱਮ ਵਰਜਨ ਵੇਖਾਓ ਅਤੇ ਬੰਦ ਕਰੋ"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "install root ਸੈੱਟ ਕਰੋ"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "ਇੱਕ ਜਾਂ ਵੱਧ ਰਿਪੋਜ਼ਟਰੀਆਂ ਚਾਲੂ ਕਰੋ (ਵਾਈਲਡਕਾਰਡ ਮਨਜ਼ੂਰ ਹਨ)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "ਇੱਕ ਜਾਂ ਵੱਧ ਰਿਪੋਜ਼ਟਰੀਆਂ ਬੰਦ (ਵਾਇਲਡਕਾਰਡ ਮਨਜ਼ੂਰ)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "ਅੱਪਡੇਟ ਦੇ ਦੌਰਾਨ ਬਰਤਰਫ਼ ਕਾਰਵਾਈਆਂ ਚਾਲੂ"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "ਯੱਮ ਪਲੱਗਇਨ ਬੰਦ ਕਰੋ"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "gpg ਦਸਤਖਤ ਚੈੱਕ ਕਰਨਾ ਬੰਦ"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "ਨਾਂ ਨਾਲ ਪਲੱਗਇਨ ਬੰਦ ਕਰੋ"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "ਪਲੱਗਇਨ ਨਾਂ ਨਾਲ ਚਾਲੂ ਕਰੋ"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "ਨਿਰਭਰਤਾ ਸਮੱਸਿਆਵਾਂ ਵਾਲੇ ਪੈਕੇਜ ਛੱਡ ਦਿਉ"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "ਕੰਟਰੋਲ ਕਰੋ ਕਿ ਕੀ ਰੰਗ ਵਰਤਣੇ ਹਨ"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr "ਯੱਮ ਸੰਰਚਨਾ ਤੇ ਰਿਪੋ ਫਾਇਲਾਂ 'ਚ $releasever ਦਾ ਮੁੱਲ ਸੈੱਟ ਕਰੋ"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "ਅੱਪਡੇਟ ਨਾ ਕਰੋ, ਸਿਰਫ਼ ਡਾਊਨਲੋਡ"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "ਜਨ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "ਫਰ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "ਮਾਰ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "ਅਪ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "ਮਈ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "ਜੂਨ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "ਜੁਲਾ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "ਅਗ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "ਸਤੰ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "ਅਕ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "ਨਵੰ"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "ਦਸੰ"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "ਹੋਰ ਮਿੱਰਰ ਨਾਲ ਕੋਸ਼ਿਸ਼ ਜਾਰੀ"
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "ਨਾਂ        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "ਢਾਂਚਾ        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoch       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "ਵਰਜਨ     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "ਰੀਲਿਜ਼     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "ਸਾਈਜ਼       : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "ਰਿਪੋ        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "ਰਿਪੋ ਤੋਂ   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "ਕਮਿੱਟਰ   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "ਕਮਿਟ-ਸਮਾਂ  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "ਬਿਲਡ ਸਮਾਂ   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "ਇੰਸਟਾਲ ਸਮਾਂ: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "ਇੰਸਟਾਲ ਇਸ ਵਲੋਂ: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "ਇਸ ਵਲੋਂ ਬਦਲਿਆ  : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "ਸੰਖੇਪ   : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "ਲਾਈਸੈਂਸ    : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "ਵੇਰਵਾ: "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "yes"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "no"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "ਕੀ ਇਹ ਠੀਕ ਹੈ [y/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -109471,167 +114840,191 @@ index e714500..edb4778 100644
 +msgstr "\nਗਰੁੱਪ: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " ਗਰੁੱਪ-Id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " ਵੇਰਵਾ: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " ਭਾਸ਼ਾ: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " ਲਾਜ਼ਮੀ ਪੈਕੇਜ:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " ਡਿਫਾਲਟ ਪੈਕੇਜ:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " ਚੋਣਵੇਂ ਪੈਕੇਜ:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " ਸ਼ਰਤੀਆ ਪੈਕੇਜ:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr "ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nਇੰਵਾਇਨਮੈਂਟ ਗਰੁੱਪ: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "ਇੰਨਵਾਇਨਮੈਂਟ-Id: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "ਲਾਜ਼ਮੀ ਗਰੁੱਪ:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "ਚੋਣਵੇਂ ਗਰੁੱਪ:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "ਇੰਸਟਾਲ ਹੋਏ ਗਰੁੱਪ:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "ਪੈਕੇਜ: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr " ਇਹ ਪੈਕੇਜ ਲਈ ਕੋਈ ਨਿਰਭਰਤਾ ਨਹੀਂ ਹੈ"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr " ਨਿਰਭਰਤਾ: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr " ਨਾ-ਹੱਲ ਹੋਈ ਨਿਰਭਰਤਾ"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "ਇਸ ਤੋਂ ਮੇਲ:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "ਲਾਈਸੈਂਸ     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "ਫਾਇਲ ਨਾਂ    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "ਦਿੰਦਾ ਹੈ     : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "ਹੋਰ       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "ਕੁੱਲ ਡਾਊਨਲੋਡ ਆਕਾਰ ਲੱਭਣ ਦੌਰਾਨ ਗਲਤੀ"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "ਕੁੱਲ ਸਾਈਜ਼: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "ਕੁੱਲ ਡਾਊਨਲੋਡ ਸਾਈਜ਼: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "ਇੰਸਟਾਲ ਦਾ ਸਾਈਜ਼: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "ਇੰਸਟਾਲ ਆਕਾਰ ਗਿਣਨ ਦੌਰਾਨ ਗਲਤੀ"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "ਨਿਰਭਰਤਾ ਲਈ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "ਨਿਰਭਰਤਾ ਲਈ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ (ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "ਇੰਸਟਾਲ ਨਹੀਂ"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "ਪੈਕੇਜ"
 +msgid_plural "Packages"
@@ -109639,33 +115032,33 @@ index e714500..edb4778 100644
 +msgstr[1] "ਪੈਕੇਜ"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "ਢਾਂਚਾ"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "ਵਰਜਨ"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "ਰਿਪੋਜ਼ਟਰੀ"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "ਸਾਈਜ਼"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     %s%s%s.%s %s  ਨੂੰ ਬਦਲਿਆ ਜਾ ਰਿਹਾ ਹੈ\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -109681,7 +115074,7 @@ index e714500..edb4778 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "ਇੰਸਟਾਲ %5.5s ਪੈਕੇਜ\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "ਇੰਸਟਾਲ"
  
@@ -109689,7 +115082,7 @@ index e714500..edb4778 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "ਅੱਪਗਰੇਡ   %5.5s ਪੈਕੇਜ\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "ਅੱਪਗਰੇਡ"
  
@@ -109697,7 +115090,7 @@ index e714500..edb4778 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "ਹਟਾਉਣੇ    %5.5s ਪੈਕੇਜ\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "ਹਟਾਓ"
  
@@ -109705,7 +115098,7 @@ index e714500..edb4778 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "ਮੁੜ-ਇੰਸਟਾਲ %5.5s ਪੈਕੇਜ\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "ਮੁੜ-ਇੰਸਟਾਲ"
  
@@ -109713,58 +115106,58 @@ index e714500..edb4778 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "ਡਾਊਨਗਰੇਡ %5.5s ਪੈਕੇਜ\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "ਡਾਊਨਗਰੇਡ"
-+
-+#: ../output.py:1544
+ 
+-#: ../output.py:1165
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "ਨਿਰਭਰ ਪੈਕੇਜ"
 +msgstr[1] "ਨਿਰਭਰ ਪੈਕੇਜ"
- 
--#: ../output.py:1165
-+#: ../output.py:1604
++
++#: ../output.py:1666
  msgid "Removed"
  msgstr "ਹਟਾਏ"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "ਨਿਰਭਰਤਾ ਹਟਾਈ"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "ਨਿਰਭਰਤਾ ਇੰਸਟਾਲ ਕੀਤੀ"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "ਨਿਰਭਰਤਾ ਅੱਪਡੇਟ ਕੀਤੀ"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "ਬਦਲੇ ਗਏ"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "ਫੇਲ੍ਹ ਹੋਏ"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "ਦੋ"
  
-@@ -940,578 +971,610 @@ msgstr "ਦੋ"
+@@ -940,578 +1054,604 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -109777,237 +115170,237 @@ index e714500..edb4778 100644
 +msgstr "\n ਮੌਜੂਦਾ ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ, ਬੰਦ ਕਰਨ ਲਈ %sinterrupt (ctrl-c) %s %s%s%s ਸਕਿੰਟ ਵਿੱਚ\nਦਬਾਉ\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "ਯੂਜ਼ਰ ਵਲੋਂ ਦਖ਼ਲ"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "ਕੁੱਲ"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<ਅਣ-ਸੈੱਟ>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "ਸਿਸਟਮ"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨਹੀਂ"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "ਖ਼ਰਾਬ ਟਰਾਂਸੈਕਸ਼ਨ ID, ਜਾਂ ਪੈਕੇਜ ਦਿੱਤਾ"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "ਕਮਾਂਡ ਲਾਈਨ"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "ਲਾਗਇਨ ਯੂਜ਼ਰ"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "ਮਿਤੀ ਅਤੇ ਸਮਾਂ"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "ਐਕਸ਼ਨ"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "ਬਦਲੇ"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ID ਦਿੱਤਾ"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "ਖ਼ਰਾਬ ਟਰਾਂਸੈਕਸ਼ਨ ID ਦਿੱਤਾ"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "ਦਿੱਤਾ ਟਰਾਂਸੈਕਸ਼ਨ ID ਨਹੀਂ ਲੱਭਿਆ"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "ਇੱਕ ਤੋਂ ਵੱਧ ਟਰਾਂਸੈਕਸ਼ਨ ID ਲੱਭਿਆ!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ID, ਜਾਂ ਪੈਕੇਜ ਨਹੀਂ ਦਿੱਤਾ"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤੇ"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "ਪੁਰਾਣੇ"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "ਨਵੇਂ"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ID:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "ਸ਼ੁਰੂ ਸਮਾਂ   :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "rpmdb ਸ਼ੁਰੂ    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u ਸਕਿੰਟ)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u ਮਿੰਟ)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u ਘੰਟੇ)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u ਦਿਨ)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "ਅੰਤ ਸਮਾਂ       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "rpmdb ਅੰਤ      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "ਯੂਜ਼ਰ           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "ਰੀਟਰਨ-ਕੋਡ  :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "ਅਧੂਰਾ ਛੱਡਿਆ"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "ਫੇਲ੍ਹ:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "ਫੇਲ੍ਹ:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "ਸਫ਼ਲ"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "ਕਮਾਂਡ ਲਾਈਨ  :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
 -msgstr ""
@@ -110015,32 +115408,32 @@ index e714500..edb4778 100644
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਕੀਤੀ ਗਈ ਇਸ ਨਾਲ:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "ਪੈਕੇਜ ਬਦਲੇ:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "ਪੈਕੇਜ ਛੱਡੇ ਗਏ:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb ਸਮੱਸਿਆਵਾਂ:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptlet ਆਉਟਪੁੱਟ:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "ਗਲਤੀਆਂ:"
  
@@ -110049,17 +115442,17 @@ index e714500..edb4778 100644
 -msgstr "ਇੰਸਟਾਲ"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "ਨਿਰਭ-ਇੰਸਟਾਲ"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "ਸਾਫ਼"
  
@@ -110072,228 +115465,230 @@ index e714500..edb4778 100644
 -msgstr "ਡਾਊਨਗਰੇਡ"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "ਅੱਪਡੇਟ"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "ਸਮਾਂ"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "ਪਿਛਲੇ ਦਿਨ"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "ਪਿਛਲੇ ਹਫ਼ਤੇ"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "ਪਿਛਲੇ ੨ ਹਫ਼ਤੇ"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "ਪਿਛਲੇ ੩ ਮਹੀਨੇ"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "ਪਿਛਲੇ ੬ ਮਹੀਨੇ"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "ਪਿਛਲੇ ਸਾਲ"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "ਲਗਭਗ ਸਾਲ ਪਹਿਲਾਂ"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "ਕੋਈ ਟਰਾਂਸੈਕਸ਼ਨ %s ਨਹੀਂ ਲੱਭੀ"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "ਉਪਲੱਬਧ ਹੋਰ ਅਤੀਤ ਜਾਣਕਾਰੀ:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: ਇਸ ਨਾਂ ਨਾਲ ਕੋਈ ਹੋਰ ਵਾਧੂ ਡਾਟਾ ਨਹੀਂ ਲੱਭਿਆ"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "ਪੈਕੇਜ        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "ਹਾਲਤ          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "ਆਕਾਰ           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "ਬਿਲਡ ਹੋਸਟ     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "ਬਿਲਡ ਸਮਾਂ     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "ਪੈਕੇਜਰ       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "ਵੈਂਡਰ         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "ਲਾਈਸੈਂਸ        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "ਸਰੋਤ RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "ਕਮਿਟ ਸਮਾਂ    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "ਕਮਿਟ ਕਰਨ ਵਾਲੇ      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "ਕਾਰਨ         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "ਰੈਪੋ ਤੋਂ      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "ਇੰਸਟਾਲ ਕੀਤਾ ਤੋਂ   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "ਵਲੋਂ ਬਦਲਿਆ     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "ਇੰਸਟਾਲ ਕੀਤੇ"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "ਇੱਕ ਅੱਪਡੇਟ"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "ਸਾਫ਼ ਕੀਤੇ"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤੇ"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "ਡਾਊਨਗਰੇਡ"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "ਬਰਤਰਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "ਅੱਪਡੇਟ ਕੀਤੇ"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> ਟਰਾਂਸੈਕਸ਼ਨ ਚੈੱਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> ਨਵੇਂ ਬਦਲਾਅ ਨਾਲ ਨਿਰਭਰਤਾ ਹੱਲ਼ ਲਈ ਮੁੜ-ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> ਨਿਰਭਰਤਾ ਹੱਲ ਮੁਕੰਮਲ ਹੋਇਆ"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> ਨਿਰਭਰਤਾ ਲਈ ਕਾਰਵਾਈ ਜਾਰੀ: %s ਪੈਕੇਜ ਲਈ: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> ਪੈਕੇਜ ਰੱਖਿਆ ਜਾਂਦਾ ਹੈ: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> ਪੈਕੇਜ ਰੱਖਿਆ ਜਾਂਦਾ ਹੈ: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> ਪੈਕੇਜ ਰੱਖਿਆ ਜਾ ਰਿਹਾ ਹੈ: %s ਨੂੰ %s ਦੇ ਕਰਕੇ"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "-->  ਨਾ-ਹੱਲ਼ ਹੋਈ ਨਿਰਭਰਤਾ: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "ਪੈਕੇਜ: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -110304,7 +115699,7 @@ index e714500..edb4778 100644
 +msgstr "\n    ਚਾਹੀਦਾ ਹੈ: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -110315,7 +115710,7 @@ index e714500..edb4778 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -110326,7 +115721,7 @@ index e714500..edb4778 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -110337,40 +115732,40 @@ index e714500..edb4778 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "ਅੱਪਡੇਟ ਕੀਤਾ"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "ਡਾਊਨਗਰੇਡ ਕੀਤਾ"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "ਬਰਤਰਫ਼ ਕੀਤਾ"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "ਉਪਲੱਬਧ"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> ਅਪਵਾਦ ਹੱਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s ਦਾ %s ਨਾਲ ਟਕਰਾ"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> ਚੁਣੇ ਪੈਕੇਜਾਂ ਲਈ ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ ਪਾਪੂਲੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ। ਉਡੀਕੋ ਜੀ।"
 +msgstr "--> ਚੁਣੇ ਪੈਕੇਜਾਂ ਲਈ ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ ਪਾਪੂਲੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ। ਉਡੀਕੋ ਜੀ।"
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
@@ -110379,71 +115774,71 @@ index e714500..edb4778 100644
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "ਜਾਂਚਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "ਚੱਲ ਰਿਹਾ ਹੈ"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "ਸਲੀਪਿੰਗ"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "ਗ਼ੈਰ-ਰੁਕਾਵਟ-ਯੋਗ"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "ਜੋਮਬਿਈ"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "ਟਰੇਸ ਕੀਤਾ/ਰੋਕਿਆ"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "ਅਣਜਾਣ"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr " ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਹੈ: ਪੈਕੇਜਕਿੱਟ"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr " ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਹੈ: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    ਮੈਮੋਰੀ : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    ਸ਼ੁਰੂ ਹੋਇਆ: %s - %s ਪਹਿਲਾਂ"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    ਹਾਲਤ  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -110455,7 +115850,7 @@ index e714500..edb4778 100644
 +msgstr "\n\nਯੂਜ਼ਰ ਰੱਦ ਕਰਨ ਉੱਤੇ ਮੌਜੂਦ"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -110467,7 +115862,7 @@ index e714500..edb4778 100644
 +msgstr "\n\nਖਰਾਬ ਪਾਈਪ ਉੱਤੇ ਬੰਦ"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -110477,54 +115872,52 @@ index e714500..edb4778 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ;  exit_on_lock ਵਲੋਂ ਸੰਰਚਨਾ ਮੁਤਾਬਕ "
 -"ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
-+msgstr "ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਨ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ;  exit_on_lock ਵਲੋਂ ਸੰਰਚਨਾ ਮੁਤਾਬਕ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "PluginExit ਗਲਤੀ: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "ਯੱਮ ਗਲਤੀ: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "ਗਲਤੀ: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
  msgstr " ਤੁਸੀਂ ਸਮੱਸਿਆ ਨਾਲ ਨਿਪਟ ਲਈ --skip-broken ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਕੰਮ ਚਲਾ ਸਕਦੇ ਹੋ"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "ਅਣਜਾਣ ਗਲਤੀ: ਬੰਦ ਕਰੋ: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -110534,7 +115927,7 @@ index e714500..edb4778 100644
 +msgstr "\nਨਿਰਭਰਤਾ ਹੱਲ਼ ਹੋਈ"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "ਮੁਕੰਮਲ!"
  
@@ -110552,7 +115945,7 @@ index e714500..edb4778 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1528,566 +1591,602 @@ msgid ""
+@@ -1528,566 +1668,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -110567,56 +115960,75 @@ index e714500..edb4778 100644
 +#: ../yumcommands.py:96
  #, python-format
  msgid "Error: Need to pass a list of pkgs to %s"
--msgstr ""
 +msgstr "ਗਲਤੀ: %s ਨੂੰ ਪੈਕੇਜ ਲਿਸਟ ਦੇਣ ਦੀ ਲੋੜ ਹੈ"
++
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
+ msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "ਗਲਤੀ: ਰਿਪੋ %s ਚਾਲੂ ਨਹੀਂ ਹੈ"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "ਗਲਤੀ: ਮਿਲਦੀ ਆਈਟਮ ਦੀ ਲੋੜ ਹੈ"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "ਗਲਤੀ: ਗਰੁੱਪ ਜਾਂ ਗਰੁੱਪਾਂ ਦੀ ਲਿਸਟ ਦੀ ਲੋੜ ਹੈ"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "ਗਲਤੀ: ਸਾਫ਼ ਕਰਨ (clean) ਲਈ ਕੋਈ ਚੋਣ ਦਿੱਤੀ ਜਾਣੀ ਚਾਹੀਦੀ ਹੈ: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "ਗਲਤੀ: ਗਲਤ clean ਆਰਗੂਮੈਂਟ: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "ਸ਼ੈੱਲ ਲਈ ਕੋਈ ਆਰਗੂਮੈਂਟ ਨਹੀਂ"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "ਸ਼ੈੱਲ ਨੂੰ ਦੇਣ ਲਈ ਫਾਇਲ ਨਾਂ: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
 +msgstr "ਫਾਇਲ %s ਨੇ ਨਾ-ਮੌਜੂਦ ਸ਼ੈੱਲ ਲਈ ਇੱਕ ਆਰਗੂਮੈਂਟ ਦਿੱਤਾ"
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -110625,114 +116037,114 @@ index e714500..edb4778 100644
 +msgstr "ਕੋਈ ਵੀ ਚਾਲੂ ਰੈਪੋ ਨਹੀਂ ਹੈ।\nਆਪਣੀਆਂ ਰੈਪੋ ਨੂੰ ਵੇਖਣ ਲਈ \"yum repolist all\" ਚਲਾਉ।\nਤੁਸੀਂ ਰੈਪੋ ਨੂੰ yum-config-manager --enable <repo> ਨੂੰ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ।"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "ਪੈਕੇਜ..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰੋ"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "ਇੰਸਟਾਲ ਕਾਰਵਾਈ ਸੈੱਟ ਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[ਪੈਕੇਜ...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰੋ"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "ਅੱਪਡੇਟ ਕਾਰਵਾਈ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"ਸਭ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਨੂੰ ਸਭ ਤੋਂ ਨਵੇਂ ਉਪਲੱਬਧ ਵਰਜਨਾਂ ਨਾਲ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰੋ"
 +msgstr "ਸਭ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਨੂੰ ਸਭ ਤੋਂ ਨਵੇਂ ਉਪਲੱਬਧ ਵਰਜਨਾਂ ਨਾਲ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਰੋ"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਸਿੰਕਰੋਨਾਈਜ਼ ਕਾਰਵਾਈ ਸੈਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "ਪੈਕੇਜ ਜਾਂ ਪੈਕੇਜਾਂ ਦੇ ਗਰੁੱਪ ਬਾਰੇ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਵੇਖੋ"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "ਵਾਧੂ ਪੈਕੇਜ"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "ਅੱਪਡੇਟ ਕੀਤੇ ਪੈਕੇਜ"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "ਬਰਤਰਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਪੈਕੇਜ"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "ਤਾਜ਼ਾ ਸ਼ਾਮਲ ਕੀਤੇ ਪੈਕੇਜ"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "ਲਿਸਟ ਲਈ ਕੋਈ ਮਿਲਦਾ ਪੈਕੇਜ ਨਹੀਂ"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "ਪੈਕੇਜ ਜਾਂ ਪੈਕੇਜਾਂ ਦੇ ਗਰੁੱਪ ਦੀ ਲਿਸਟ"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "ਆਪਣੇ ਸਿਸਟਮ ਤੋਂ ਪੈਕੇਜ ਹਟਾਓ"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "ਹਟਾਉਣ ਕਾਰਵਾਈ ਲਈ ਸੈਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "ਵੇਖਾਓ ਜਾਂ ਵਰਤੋਂ, ਗਰੁੱਪ ਜਾਣਕਾਰੀ"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "ਗਰੁੱਪ ਕਾਰਵਾਈ ਸੈਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "ਕੋਈ ਗਰੁੱਪ ਨਹੀਂ, ਜਿਸ ਉੱਤੇ ਕਮਾਂਡ ਚਲਾਈ ਜਾ ਸਕੇ"
  
@@ -110743,7 +116155,7 @@ index e714500..edb4778 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਗਰੁੱਪ ਵਿੱਚੋਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰੋ"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -110751,79 +116163,79 @@ index e714500..edb4778 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "ਆਪਣੇ ਸਿਸਟਮ ਤੋਂ ਗਰੁੱਪ ਵਿੱਚੋਂ ਪੈਕੇਜ ਹਟਾਓ"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "ਕੋਈ ਵੀ ਇੰਸਟਾਲ ਹੋਈ ਗਰੁੱਪ ਫਾਇਲ ਨਹੀਂ ਹੈ"
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਬਾਰੇ ਵੇਰਵੇ ਸਮੇਤ ਜਾਣਕਾਰੀ ਵੇਖੋ"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "ਮੇਟਾਡਾਟਾ ਕੈਸ਼ ਤਿਆਰ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "ਸਭ ਮੇਟਾਡਾਟਾ ਫਾਇਲਾਂ ਲਈ ਕੈਸ਼ ਫਾਇਲਾਂ ਬਣਾਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ।"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr "ਇਹ ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਦੀ ਸਪੀਡ ਦੇ ਮੁਤਾਬਕ ਕੁਝ ਸਮਾਂ ਲੈ ਸਕਦਾ ਹੈ।"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "ਮੇਟਾਡਾਟਾ ਕੈਸ਼ ਬਣਾਈ ਗਈ"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "ਕੈਸ਼ ਡਾਟਾ ਹਟਾਓ"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "ਲੱਭੋ ਕਿ ਕਿਹੜਾ ਪੈਕੇਜ ਦਿੱਤਾ ਮੁੱਲ ਦਿੰਦਾ ਹੈ"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਅੱਪਡੇਟ ਲਈ ਚੈੱਕ"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "ਦਿੱਤੀ ਲਾਈਨ ਲਈ ਪੈਕੇਜ ਵੇਰਵਾ ਲੱਭੋ"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "ਪੈਕੇਜਾਂ ਲਈ ਖੋਜ ਜਾਰੀ: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਬਰਤਰਫ਼ ਨੂੰ ਧਿਆਨ 'ਚ ਰੱਖਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "ਅੱਪਗਰੇਡ ਕਰਾਵਾਈ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "ਲੋਕਲ RPM ਇੰਸਟਾਲ ਕਰੋ"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "ਲੋਕਲ ਪੈਕੇਜ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
@@ -110832,152 +116244,152 @@ index e714500..edb4778 100644
 -msgstr "ਦੱਸੋ ਕਿ ਕਿਹੜਾ ਪੈਕੇਜ ਦਿੱਤੀ ਨਿਰਭਰਤਾ ਦਿੰਦਾ ਹੈ"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "ਨਿਰਭਰਤਾ ਲਈ ਪੈਕੇਜਾਂ ਦੀ ਖੋਜ ਜਾਰੀ:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "ਇੰਟਰ-ਐਕਟਿਵ ਯੱਮ ਸ਼ੈੱਲ ਚਲਾਓ"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "ਯੱਮ ਸ਼ੈੱਲ ਸੈੱਟਅੱਪ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "ਪੈਕੇਜਾਂ ਦੀ ਨਿਰਭਰਤਾ ਦੀ ਲਿਸਟ"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "ਨਿਰਭਰਤਾ ਲੱਭੀ ਜਾ ਰਹੀ ਹੈ: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "ਸੰਰਚਿਤ ਸਾਫਟਵੇਅਰ ਰਿਪੋਜ਼ਟਰੀਆਂ ਵੇਖੋ"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "ਚਾਲੂ"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "ਬੰਦ"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "ਰਿਪੋ-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "ਰਿਪੋ-ਨਾਂ    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "ਰਿਪੋ-ਹਾਲਤ : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "ਰਿਪੋ-ਰੀਵਿਜ਼ਨ: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "ਰਿਪੋ-ਟੈਗ    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "ਰਿਪੋ-ਅੱਪਡੇਟ : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "ਰਿਪੋ-ਪੈਕੇਜ    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "ਰਿਪੋ-ਸਾਈਜ਼     : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "ਰਿਪੋ-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "ਰਿਪੋ-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  ਅੱਪਡੇਟ   : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "ਰਿਪੋ-mirrors : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "ਕਦੇ ਨਹੀਂ (ਆਖਰੀ: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
 -msgstr ""
 +msgstr "ਮੌਕਾ (ਪਿਛਲਾ: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s ਸਕਿੰਟ (ਆਖਰੀ: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "ਰਿਪੋ-expire  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-ਨਾ-ਸ਼ਾਮਲ : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-ਸ਼ਾਮਲ : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
 -msgstr ""
 +msgstr "ਵੱਖ ਰੱਖੀ ਗਈ ਰਿਪੋ: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "ਰਿਪੋ-ਫਾਇਲਨਾਂ:"
@@ -110985,34 +116397,34 @@ index e714500..edb4778 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "repo id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "ਹਾਲਤ"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "ਰਿਪੋ ਨਾਂ"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
 -msgstr ""
 +msgstr "ਮੱਦਦਗਾਰ ਸੁਨੇਹਾ ਵੇਖਾਉ"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "%s ਲਈ ਕੋਈ ਮੱਦਦ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -111024,7 +116436,7 @@ index e714500..edb4778 100644
 +msgstr "\n\nਏਲੀਆਸ: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -111036,190 +116448,216 @@ index e714500..edb4778 100644
 +msgstr "\n\nਏਲੀਆਸ: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "ਪੈਕੇਜ ਮੁੜ-ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "ਡਾਊਨਗਰੇਡ ਕਾਰਵਾਈ ਲਈ ਸੈੱਟਅੱਪ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "ਪੈਕੇਜ ਡਾਊਨਗਰੇਡ ਕਰੋ"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr "ਮਸ਼ੀਨ ਤੇ / ਜਾਂ ਉਪਲੱਬਧ ਰਿਪੋ ਲਈ ਵਰਜਨ ਵੇਖੋ।"
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " ਯੱਮ ਵਰਜਨ ਗਰੁੱਪ:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " ਗਰੁੱਪ   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " ਪੈਕੇਜ:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "ਇੰਸਟਾਲ ਹੋਏ:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "ਗਰੁੱਪ-ਇੰਸਟਾਲ ਹੋਏ:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "ਉਪਲੱਬਧ:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "ਉਪਲੱਬਧ-ਗਰੁੱਪ:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਅਤੀਤ ਵੇਖੋ ਜਾਂ ਵਰਤੋਂ"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "ਸ਼ੁਰੂ ਸਮਾਂ  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "ਅੰਤ ਸਮਾਂ    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "ਗਿਣਤੀ      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  ਯਮ DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
 -msgstr ""
 +msgstr "ਤੁਹਾਨੂੰ ਅਤੀਤ DB ਲਈ ਅਸੈਸ ਨਹੀਂ ਹੈ।"
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "rpmdb ਵਿੱਚ ਸਮੱਸਿਆ ਲਈ ਚੈੱਕ ਕਰੋ"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "ਸੰਭਾਲੀ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨੂੰ ਲੋਡ ਕਰੋ ਫਾਇਲ-ਨਾਂ ਵਿੱਚੋਂ"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "ਕੋਈ ਸੰਭਾਲੀ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ ਨਹੀਂ ਦਿੱਤੀ ਗਈ।"
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "%s ਤੋਂ ਟਰਾਂਸੈਕਸ਼ਨ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
 +msgstr "%s ਤੋਂ %s ਮੈਂਬਰਾਂ ਨਾਲ ਟਰਾਂਸੈਕਸ਼ਨ ਲੋਡ ਕੀਤੀ ਗਈ"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "ਅੱਪਡੇਟ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgstr[1] "ਅੱਪਡੇਟ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "ਹਟਾਉਣ/ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++msgstr[1] "ਹਟਾਉਣ/ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ %d ਪੈਕੇਜ"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
+ msgstr ""
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
  #, python-format
  msgid " Yum checks failed: %s"
+-msgstr ""
 +msgstr "ਯਮ ਚੈੱਕ ਫੇਲ੍ਹ ਹੋਇਆ: %s"
-+
-+#: ../yummain.py:110
-+msgid "No read/execute access in current directory, moving to /"
- msgstr ""
  
 -#: ../yummain.py:114
 -msgid ""
 -"Another app is currently holding the yum lock; waiting for it to exit..."
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
++#: ../yummain.py:98
++msgid "No read/execute access in current directory, moving to /"
  msgstr ""
 -"ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਣ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ; ਉਸ ਨੂੰ ਬੰਦ ਹੋਣ ਤੱਕ ਉਡੀਕ ਜਾਰੀ..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "ਲਾਕ ਫਾਇਲ ਨਹੀਂ ਬਣਾਈ ਜਾ ਸਕੀ; ਮੌਜੂਦ ਹੈ"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "ਹਾਲੇ ਕੋਈ ਹੋਰ ਐਪਲੀਕੇਸ਼ਣ ਯੱਮ ਲਾਕ ਵਰਤ ਰਹੀ ਹੈ; ਉਸ ਨੂੰ ਬੰਦ ਹੋਣ ਤੱਕ ਉਡੀਕ ਜਾਰੀ..."
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
+ msgstr ""
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -111229,7 +116667,7 @@ index e714500..edb4778 100644
 +msgstr "ਤੁਹਾਡੀ ਟਰਾਂਸੈਕਸ਼ਨ ਸੰਭਾਲੀ ਗਈ, ਇਸ ਨੂੰ ਮੁੜ-ਚਲਾਉ:\nyum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -111270,7 +116708,7 @@ index e714500..edb4778 100644
  msgstr "ਮੈਂਬਰ: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਬਦਲਿਆ"
@@ -111328,7 +116766,7 @@ index e714500..edb4778 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2095,1013 +2194,1090 @@ msgstr ""
+@@ -2095,1013 +2317,1165 @@ 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 :(
@@ -111340,136 +116778,145 @@ index e714500..edb4778 100644
 +msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕਰਨ ਲਈ %s ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
 +msgstr "%s ਲਈ ਕੋਈ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ। ਫੇਲ੍ਹ!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
 -msgstr ""
 +msgstr "TSINFO: ਨਿਰਭਰਤਾ ਹੱਲ ਕਰਨ ਲਈ %s ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
 +msgstr "%s: ਲਈ ਨਿਰਭਰਤਾ ਵਾਸਤੇ ਅੱਪਡੇਟ ਮਾਰਗ ਨਹੀਂ ਲੱਭਿਆ ਜਾ ਸਕਦਾ"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
 +msgstr "%s ਉਪਲੱਬਧ ਕਰਵਾਉਣ ਵਾਲਿਆ ਪੈਕੇਜਾਂ ਵਿੱਚ ਹੈ, ਪਰ ਇਹ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ, ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ।"
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
 -msgstr ""
 +msgstr "TSINFO: %s ਨੂੰ %s ਲਈ ਅੱਪਡੇਟ ਵਜੋਂ ਚੁਣਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "ਸਫ਼ਲ - ਖਾਲੀ ਟਰਾਂਸੈਕਸ਼ਨ"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "ਚੱਕਰ ਮੁੜ-ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "ਨਿਰਭਰਤਾ ਕਾਰਵਾਈ ਖਤਮ ਹੋ ਰਹੀ ਹੈ"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "ਸਫ਼ਲ - ਨਿਰਭਰਤਾ ਹੱਲ਼ ਹੋਈ"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "%s ਲਈ ਨਿਰਭਰਤਾ ਚੈੱਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
 -msgstr ""
 +msgstr "%s ਦੀ ਖੋਜ %s ਦੀ ਨਿਰਭਰਤਾ ਲਈ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s ਨੇ %s ਬਰਤਰਫ਼ ਕੀਤਾ"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -111477,25 +116924,25 @@ index e714500..edb4778 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "ਆਮ sourcerpm %s ਅਤੇ %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "ਬੇਸ ਪੈਕੇਜ %s %s ਲਈ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾਂਦਾ ਹੈ"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "ਘੱਟੋ-ਘੱਟ ਲੋੜ ਹੈ: %d"
@@ -111503,156 +116950,166 @@ index e714500..edb4778 100644
 +msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " ਜੇਤੂ: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "ਘੱਟੋ-ਘੱਟ ਲੋੜ ਹੈ: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " ਹਾਰਿਆ(%d ਨਾਲ): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "ਵਧੀਆ ਕ੍ਰਮ: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
  #, python-format
- msgid "Repository %r: Error parsing config: %s"
--msgstr ""
-+msgstr "ਰਿਪੋਜ਼ਟਰੀ %r: ਸੰਰਚਨਾ ਪਾਰਸ ਕਰਨ ਲਈ ਗਲਤੀ: %s"
+-msgid "Repository %r: Error parsing config: %s"
++msgid "Skipping unreadable repository %s"
+ msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:572
++#, python-format
++msgid "Repository %r: Error parsing config: %s"
++msgstr "ਰਿਪੋਜ਼ਟਰੀ %r: ਸੰਰਚਨਾ ਪਾਰਸ ਕਰਨ ਲਈ ਗਲਤੀ: %s"
++
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
 +msgstr "ਰਿਪੋਜ਼ਟਰੀ %r ਦਾ ਸੰਰਚਨਾ ਵਿੱਚ ਨਾਂ ਮੌਜੂਦ ਨਹੀਂ ਹੈ, id ਵਰਤੋਂ ਨਾਲ"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "ਪਲੱਗਇਨ ਪਹਿਲਾਂ ਹੀ ਚਾਲੂ ਹੈ"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "ਲੋਕਲ RPMDB ਪੜ੍ਹਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "ਇਸਕਰਕੇ ਇਹ ਰਿਪੋ ਮੁੜ-ਸੈੱਟ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ।\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "ਅੱਪਡੇਟ ਆਬਜੈਕਟ ਬਣਾਏ ਜਾ ਰਹੇ ਹਨ"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "ਗਰੁੱਪ ਮੇਟਾਡਾਟਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "%s: ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਗਰੁੱਪ ਫਾਇਲ ਸ਼ਾਮਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr "%s - %s: ਰਿਪੋਜ਼ਟਰੀ ਲਈ ਗਰੁੱਪ ਫਾਇਲ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "ਕਿਸੇ ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਕੋਈ ਗਰੁੱਪ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "ਪੈਕੇਜਟੈਗ ਮੇਟਾਡਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਟੈਗ ਸ਼ਾਮਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
 -msgstr ""
 +msgstr "ਰਿਪੋਜ਼ਟਰੀ ਲਈ Pkg ਟੈਗ ਜੋੜਨ ਲਈ ਫੇਲ੍ਹ: %s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "ਵਾਧੂ ਫਾਇਲ-ਲਿਸਟ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -111662,24 +117119,58 @@ index e714500..edb4778 100644
 +msgstr "ਅਧੂਰੀਆਂ ਟਰਾਂਸੈਕਸ਼ਨ ਬਾਕੀ ਹਨ। ਤੁਹਾਨੂੰ ਉਹਨਾਂ ਨੂੰ ਪੂਰਾ ਕਰਨ ਵਾਸਤੇ yum-complete-transaction ਚਲਾਉ ਬਾਰੇ ਸੋਚਣਾ ਚਾਹੀਦਾ ਹੈ।"
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "\"%s\" ਹਟਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼, ਜੋ ਕਿ ਸੁਰੱਖਿਅਤ ਹੈ"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -111689,14 +117180,14 @@ index e714500..edb4778 100644
 +msgstr "\nਪੈਕੇਜ ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ ਕਰਕੇ ਛੱਡੇ ਗਏ:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "   %s %s ਤੋਂ"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -111705,39 +117196,39 @@ index e714500..edb4778 100644
 +msgstr "** %d ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦਾ rpmdb ਸਮੱਸਿਆਵਾਂ ਲੱਭੀਆਂ, 'yum check' ਆਉਟਪੁੱਟ ਅੱਗੇ ਦਿੱਤੀ ਹੈ:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "ਚੇਤਾਵਨੀ: RPMDB ਨੂੰ ਯੱਮ ਤੋਂ ਬਿਨਾਂ ਬਦਲਿਆ ਗਿਆ।"
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "ਲੋੜੀਦੇ ਮੌਜੂਦ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "ਇੰਸਟਾਲ ਨਾਲ ਟਕਰਾ"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਚਲਾਈ ਨਹੀਂ ਜਾ ਸਕੀ।"
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ %s ਹਟਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ"
@@ -111745,7 +117236,7 @@ index e714500..edb4778 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s ਇੰਸਟਾਲ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ, ਪਰ ਇਹ ਨਹੀਂ ਹੈ!"
@@ -111756,7 +117247,7 @@ index e714500..edb4778 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s ਹਟਾਇਆ ਗਿਆ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ, ਪਰ ਨਹੀਂ ਗਿਆ!"
@@ -111774,32 +117265,32 @@ index e714500..edb4778 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr "%s ਲਈ ਲਾਕ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s "
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "%s ਲਾਕ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s "
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "ਚੈੱਕ ਕਰਨ ਲਈ ਅਸਮਰੱਥ ਕਿਕੀ PID %s ਐਕਟਿਵ ਹੈ"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -111808,23 +117299,23 @@ index e714500..edb4778 100644
 +msgstr "ਪੈਕੇਜ ਲੋੜੀਦੇ ਡਾਊਨਲੋਡ ਨਾਲ ਮਿਲਦਾ ਨਹੀਂ ਹੈ। ਸੁਝਾਅ: yum --enablerepo=%s clean metadata ਚਲਾਉ"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "checksum ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "ਪੈਕੇਜ ਚੈਕਸਮ ਰਲਦਾ ਨਹੀਂ ਹੈ"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "%s ਦੀ ਲੋਕਲ ਕਾਪੀ ਦੀ ਵਰਤੋਂ"
@@ -111835,18 +117326,21 @@ index e714500..edb4778 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"ਡਾਊਨਲੋਡ ਡਾਇਰੈਕਟਰੀ %s ਵਿੱਚ ਨਾ-ਲੋੜੀਦੀ ਖਾਲੀ ਥਾਂ\n"
 -"    * ਖਾਲੀ   %s\n"
 -"    * ਚਾਹੀਦੀ  %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "ਹੈੱਡਰ ਪੂਰਾ ਨਹੀਂ ਹੈ।"
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -111854,55 +117348,55 @@ index e714500..edb4778 100644
 +msgstr "ਹੈੱਡਰ ਲੋਕਲ ਕੈਸ਼ ਨਹੀਂ ਹੈ ਅਤੇ ਕੇਵਲ-ਕੈਸ਼ ਮੋਡ ਹੀ ਚਾਲੂ ਹੈ। %s ਨੂੰ ਡਾਊਨਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "%s ਲਈ ਪਬਲਿਕ ਕੁੰਜੀ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "ਪੈਕੇਜ %s ਖੋਲ੍ਹਣ ਦੌਰਾਨ ਸਮੱਸਿਆ"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "%s ਲਈ ਪਬਲਿਕ ਕੁੰਜੀ ਭਰੋਸੇਯੋਗ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "ਪੈਕੇਜ %s  ਸਾਈਨ ਨਹੀਂ ਕੀਤਾ"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "%s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s ਹਟਾਇਆ"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "%s ਫਾਇਲ %s ਹਟਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s ਫਾਇਲ %s ਹਟਾਈ"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s ਫਾਇਲਾਂ ਹਟਾਈਆਂ ਗਈਆਂ"
@@ -111912,27 +117406,27 @@ index e714500..edb4778 100644
 +msgstr[1] "%d %s ਫਾਇਲਾਂ ਹਟਾਈਆਂ ਗਈਆਂ"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
 -msgstr ""
 +msgstr "ਅੱਪਡੇਟ ਤੋਂ %s.%s %s:%s-%s ਨਾਲ ਕੁਝ ਵੀ ਮਿਲਦਾ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "%d ਪੈਕੇਜਾਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
@@ -111942,113 +117436,128 @@ index e714500..edb4778 100644
 +msgstr[1] "%d ਪੈਕੇਜ ਲੱਭੇ ਜਾ ਰਹੇ ਹਨ"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "ਪੈਕੇਜ %s ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "ਫਾਇਲ ਐਂਟਰੀਆਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "ਪਰੋਵਾਇਡਰ ਐਂਟਰੀਆਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "%s ਨਾਂ ਦਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "ਪੈਕੇਜ %s ਗਰੁੱਪ %s ਵਿੱਚ ਨਿਸ਼ਾਨਬੱਧ ਨਹੀਂ ਹੈ"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "%s ਗਰੁੱਪ ਵਿੱਚੋਂ %s ਪੈਕੇਜ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "ਪੈਕੇਜ %s ਗਰੁੱਪ %s ਵਿੱਚੋਂ ਸ਼ਾਮਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਨਾਂ ਦਾ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
 -msgstr ""
-+msgstr "ਸਾਵਧਾਨ: %s ਗਰੁੱਪ ਵਿੱਚ ਕੋਈ ਵੀ ਪੈਕੇਜ ਨਹੀਂ ਹੈ।"
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "ਸਾਵਧਾਨ: ਗਰੁੱਪ %s ਵਿੱਚੋਂ ਕੋਈ ਵੀ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਨਹੀਂ ਹੈ।"
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
 +msgstr "ਗਰੁੱਪ %s ਵਿੱਚ %u ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹਨ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ।"
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "%s ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਕੁਝ ਨਹੀਂ ਦਿੱਤਾ"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -112060,30 +117569,30 @@ index e714500..edb4778 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੈ ਤੇ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "ਪੈਕੇਜ: %s  - ਪਹਿਲਾਂ ਹੀ ਟਰਾਂਸੈਕਸ਼ਨ ਸੈੱਟ 'ਚ ਹੈ"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr "ਪੈਕੇਜ %s ਨੂੰ %s ਵਲੋਂ ਬਰਤਰਫ਼ ਕੀਤਾ ਗਿਆ ਹੈ, ਜੋ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -112091,7 +117600,7 @@ index e714500..edb4778 100644
  msgstr "%s ਪੈਕੇਜ %s ਨਾਲ ਬਦਲ ਦਿੱਤਾ ਗਿਆ, ਪਰ ਬਦਲਿਆ ਗਿਆ ਪੈਕੇਜ ਲੋੜ ਪੂਰੀ ਨਹੀਂ ਕਰਦਾ"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -112099,62 +117608,62 @@ index e714500..edb4778 100644
 +msgstr "%s ਪੈਕੇਜ %s ਨਾਲ ਬਰਤਰਫ਼ ਕੀਤਾ ਗਿਆ, %s ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr "%s ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ ਅਤੇ ਨਵਾਂ ਵਰਜਨ ਹੈ"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "ਹਰ ਚੀਜ਼ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, python-format
  msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 -msgstr ""
 +msgstr "ਪਹਿਲਾਂ ਹੀ ਬਰਤਰਫ਼ ਕੀਤੇ ਪੈਕੇਜ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3753 ../yum/__init__.py:3965
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "%s :ਨਾਲ ਮਿਲਦਾ ਕੋਈ ਆਰਗੂਮੈਂਟ ਨਹੀਂ ਹੈ"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "%s: ਅਪਗਰੇਡ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਰਿਹਾ, ਜੋ ਬਰਤਰਫ਼ ਹੈ: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 -msgstr ""
@@ -112164,43 +117673,43 @@ index e714500..edb4778 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "%s: ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "ਚੱਲਦਾ ਕਰਨਲ ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਤੋਂ %s ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr "ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s। ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹ।"
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "%s ਪੜਤਾਲ ਜਾਰੀ: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -112209,14 +117718,14 @@ index e714500..edb4778 100644
 +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਲਈ %s ਪੈਕੇਜ ਜੋੜਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ। %s: ਢਾਂਚੇ ਨਾਲ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
 +msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਇਸ ਨੂੰ ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ %s ਨਾਲ ਬਰਤਰਫ਼ ਕੀਤਾ ਗਿਆ ਹੈ"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -112227,7 +117736,7 @@ index e714500..edb4778 100644
 +msgstr "ਪੈਕੇਜ %s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਇਸ ਦੀ ਬਜਾਏ ਇਸ ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ yum install ਚਲਾਓ।"
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -112236,119 +117745,119 @@ index e714500..edb4778 100644
 +msgstr "ਪੈਕੇਜ %s.%s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ, ਅੱਪਡੇਟ ਨਹੀਂ ਹੋ ਸਕਦਾ। ਇਸ ਦੀ ਬਜਾਏ ਪਹਿਲਾਂ yum install ਚਲਾਉ।"
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "%s ਅੱਡ ਕੀਤਾ"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸੈੱਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "%s ਨੂੰ %s ਦੇ ਲਈ ਅੱਪਡੇਟ ਵਜੋਂ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: ਇੰਸਟਾਲ ਹੋਏ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾਂਦੇ।"
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "%s: ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ। ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ।"
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "ਮੁੜ-ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ: ਹਟਾਉਣ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਮਿਲਦਾ"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr "ਮੜ-ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ: ਇੰਸਟਾਲ ਕਰਨ ਲਈ %s ਪੈਕੇਜ ਨਾਲ ਕੋਈ ਨਹੀਂ ਮਿਲਦਾ"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਉਪਲੱਬਧ ਨਹੀਂ"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "%s ਪੈਕੇਜ ਕਈ ਇੰਸਟਾਲ ਲਈ ਮਨਜ਼ੂਰ ਹੈ, ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਲਈ ਕੋਈ ਮੇਲ ਨਹੀਂ: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr "%s: ਪੈਕੇਜ ਲਈ ਕੇਵਲ ਅੱਪਗਰੇਡ ਉਪਲੱਬਧ"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "%s: ਅੱਪਗਰੇਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "%s ਤੋਂ ਕੁੰਜੀ ਲਈ ਜਾ ਰਹੀ ਹੈ"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "%s ਤੋਂ ਗਲਤ GPG ਕੁੰਜੀ: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -112363,7 +117872,7 @@ index e714500..edb4778 100644
 +msgstr "%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n Userid     : \"%s\"\n ਫਿੰਗਰਪਰਿੰਟ: %s\n ਪੈਕੇਜ    : %s (%s)\n ਇੱਥੋਂ       : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -112374,7 +117883,7 @@ index e714500..edb4778 100644
 +" From       : %s"
 +msgstr "%s ਕੁੰਜੀ 0x%s ਇੰਪੋਰਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n Userid     : \"%s\"\n ਫਿੰਗਰਪਰਿੰਟ: %s\n ਇਸ ਤੋਂ       : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -112385,31 +117894,31 @@ index e714500..edb4778 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "ਕੁੰਜੀ ਇੰਪੋਰਟ ਕਰਨ ਲਈ ਫੇਲ੍ਹ (ਕੋਡ %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "ਕੁੰਜੀ ਠੀਕ ਤਰ੍ਹਾਂ ਇੰਪੋਰਟ ਕੀਤੀ ਗਈ"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "ਕੋਈ ਵੀ ਕੁੰਜੀ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੀ"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -112417,22 +117926,20 @@ index e714500..edb4778 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
- msgstr ""
- 
--#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++msgstr "ਕੁੰਜੀਆਂ ਇੰਪੋਰਟ ਕਰਨ ਨਾਲ ਕੰਮ ਨਹੀਂ ਬਣਿਆ, ਗਲਤ ਕੁੰਜੀਆਂ?"
++
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "ਨਹੀਂ"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "ਹਾਂ"
 +
-+#: ../yum/__init__.py:5475
- #, python-format
--msgid "GPG key at %s (0x%s) is already imported"
++#: ../yum/__init__.py:5935
++#, python-format
 +msgid ""
 +"\n"
 +"\n"
@@ -112442,28 +117949,30 @@ index e714500..edb4778 100644
 +" GPG Keys are configured as: %s\n"
  msgstr ""
  
+-#: ../yum/__init__.py:4713
++#: ../yum/__init__.py:5948
+ #, python-format
+ msgid "GPG key at %s (0x%s) is already imported"
+-msgstr ""
++msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਨੂੰ ਪਹਿਲਾਂ ਹੀ ਇੰਪੋਰਟ ਕੀਤਾ ਗਿਆ ਹੈ"
+ 
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "ਕੁੰਜੀ ਇੰਪੋਰਟ ਫੇਲ੍ਹ"
-+#: ../yum/__init__.py:5488
-+#, python-format
-+msgid "GPG key at %s (0x%s) is already imported"
-+msgstr "GPG ਕੁੰਜੀ %s (0x%s) ਨੂੰ ਪਹਿਲਾਂ ਹੀ ਇੰਪੋਰਟ ਕੀਤਾ ਗਿਆ ਹੈ"
-+
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "ਕੁੰਜੀ %s ਇੰਪੋਰਟ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
 -msgstr ""
 +msgstr "%s ਰੈਪੋ ਲਈ ਕੋਈ ਵੀ ਕੁੰਜੀਆਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -112471,123 +117980,125 @@ index e714500..edb4778 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "ਢੁੱਕਵਾਂ ਮਿੱਰਰ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ।"
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀਆਂ ਆਈਆਂ ਹਨ।"
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "%s ਵਿੱਚ ਇਹ ਗਲਤੀ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦਿਉ"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "ਟੈਸਟ ਟਰਾਂਸੈਕਸ਼ਨ ਗਲਤੀਆਂ: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
 -msgstr ""
 +msgstr "ਕੈਸ਼-ਡਾਇਰੈ ਸੈੱਟ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +msgstr "ਨਿਰਭਰਤਾ ਹੱਲ ਨਹੀਂ ਹੋ ਸਕੀ। ਨਾ-ਹੱਲ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਸੰਭਾਲੀ ਨਹੀਂ ਜਾਵੇਗੀ।"
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr ""
 +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਫਾਇਲ %s ਸੰਭਾਲੀ ਨਹੀਂ ਜਾ ਸਕੀ: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
 +msgstr "%s ਸੰਭਾਲੀ ਹੋਈ ਟਰਾਂਸੈਕਸ਼ਨ ਨੂੰ ਵਰਤਿਆ/ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " ਕੀਤੀ ਮੰਗ ਮੁਤਾਬਕ ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
- 
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr "ਅਣਡਿੱਠਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।"
- 
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s ਨੂੰ ਪਹਿਲਾਂ ਹੀ ਵੇਖਿਆ ਗਿਆ ਹੈ ਅਤੇ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ।"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "ਇੱਕ ਪੈਕੇਜ ਵਲੋਂ %s ਨੂੰ ਇੰਸਟਾਲ ਕੀਤਾ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।"
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -112700,7 +118211,7 @@ index e714500..edb4778 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "ਜਾਂਚ: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -112708,10 +118219,14 @@ index e714500..edb4778 100644
 +"    * needed %s"
 +msgstr "ਡਾਊਨਲੋਡ ਡਾਇਰੈਕਟਰੀ %s ਵਿੱਚ ਨਾ-ਲੋੜੀਦੀ ਖਾਲੀ ਥਾਂ\n    * ਖਾਲੀ   %s\n    * ਚਾਹੀਦੀ  %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3110,12 +3286,11 @@ msgstr ""
+@@ -3110,12 +3484,11 @@ msgstr ""
  #: ../rpmUtils/oldUtils.py:53
  #, python-format
  msgid "RPM %s fails md5 check"
@@ -112726,23 +118241,23 @@ index e714500..edb4778 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3131,5 +3306,3 @@ msgstr "ਖਰਾਬ ਹੋਇਆ ਹੈੱਡਰ %s"
+@@ -3131,5 +3504,3 @@ msgstr "ਖਰਾਬ ਹੋਇਆ ਹੈੱਡਰ %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "rpm %s ਖੋਲ੍ਹਣ ਦੌਰਾਨ ਗਲਤੀ - ਗਲਤੀ %s"
 -
 -
 diff --git a/po/pl.po b/po/pl.po
-index 0fe83a9..66472e1 100644
+index 0fe83a9..828ce58 100644
 --- a/po/pl.po
 +++ b/po/pl.po
-@@ -2,952 +2,979 @@
+@@ -2,952 +2,1062 @@
  # 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, 2012.
++# Piotr Drąg <piotrdrag at gmail.com>, 2011-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -112752,8 +118267,8 @@ index 0fe83a9..66472e1 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Polish (http://www.transifex.net/projects/p/yum/team/pl/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 22:29+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-31 18:46+0000\n"
 +"Last-Translator: Piotr Drąg <piotrdrag at gmail.com>\n"
 +"Language-Team: Polish (http://www.transifex.com/projects/p/yum/language/pl/)\n"
  "MIME-Version: 1.0\n"
@@ -112764,7 +118279,7 @@ index 0fe83a9..66472e1 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Aktualizowanie"
  
@@ -112775,31 +118290,31 @@ index 0fe83a9..66472e1 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Zaktualizowano"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Zainstalowano"
  
@@ -112826,7 +118341,7 @@ index 0fe83a9..66472e1 100644
  msgstr "Usunięto: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Usuwanie"
  
@@ -112836,69 +118351,69 @@ index 0fe83a9..66472e1 100644
  msgstr "Czyszczenie"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Polecenie \"%s\" zostało już określone"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Ustawianie repozytoriów"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Błąd konfiguracji: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Błąd opcji: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Zainstalowane: %s-%s o %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Zbudowane    : %s o %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Wysłane: %s o %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Należy podać polecenie"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Wymagane miejsce na dysku:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -112911,7 +118426,7 @@ index 0fe83a9..66472e1 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -112919,78 +118434,100 @@ index 0fe83a9..66472e1 100644
 -"Podsumowanie błędów\n"
 -"-------------------\n"
 +msgstr "Podsumowanie błędów\n-------------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Nie można utworzyć pliku blokady; kończenie działania"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Inna aplikacja obecnie blokuje program yum. Kończenie działania zgodnie z konfiguracją exit_on_lock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  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."
 +msgstr "Próbowano wykonać transakcję, ale nie ma nic do zrobienia. Kończenie działania."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "przyszła wersja RPMDB nie zgadza się z zapisaną wersją transakcji,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorowanie, jak zażądano."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " przerywanie."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Kończenie działania na polecenie użytkownika"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Pobieranie pakietów:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Błąd podczas pobierania pakietów:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Wykonywanie sprawdzania transakcji"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "BŁĄD sprawdzania transakcji i rozwiązywania zależności:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "Pakiet RPM musi zostać zaktualizowany"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Proszę zgłosić ten błąd na %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Wykonywanie testu transakcji"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Błąd podczas sprawdzania transakcji:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Test transakcji został ukończony powodzeniem"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Wykonywanie transakcji"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -113000,18 +118537,18 @@ index 0fe83a9..66472e1 100644
 +msgstr "Odmawianie automatycznego zaimportowania kluczy podczas nienadzorowanego uruchomienia.\nNależy użyć \"-y\", aby wymusić."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Czy chodziło o: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Nie ma pakietu %s%s%s."
@@ -113019,23 +118556,28 @@ index 0fe83a9..66472e1 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Pakiety do zainstalowania"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Błędny %s parametr %s."
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d pakiet do zainstalowania"
 +msgstr[1] "%d pakiety do zainstalowania"
 +msgstr[2] "%d pakietów do zainstalowania"
- 
--#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
--#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nie ma niczego do zrobienia"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pakietów oznaczonych do aktualizacji"
@@ -113046,12 +118588,12 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów oznaczonych do aktualizacji"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Brak pakietów oznaczonych do aktualizacji"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pakietów oznaczonych do synchronizacji dystrybucji"
@@ -113062,12 +118604,12 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów oznaczonych do synchronizacji dystrybucji"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Brak pakietów oznaczonych do synchronizacji dystrybucji"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pakietów oznaczonych do usunięcia"
@@ -113078,14 +118620,14 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów oznaczonych do usunięcia"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -113094,13 +118636,13 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów do zainstalowania poprzedniej wersji"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (z %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Zainstalowany pakiet %s%s%s%s jest niedostępny."
@@ -113108,7 +118650,7 @@ index 0fe83a9..66472e1 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Pakiety do ponownego zainstalowania"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -113117,22 +118659,22 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów do ponownego zainstalowania"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nie podano pakietów"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pakiety do zainstalowania"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "N/S dopasowane: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -113141,7 +118683,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "  Pasuje %stylko%s nazwa i podsumowanie, należy użyć \"search all\", aby uzyskać wszystko."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -113151,13 +118693,13 @@ index 0fe83a9..66472e1 100644
 +msgstr "  Pasuje %stylko%s pełna nazwa i podsumowanie, należy użyć \"search all\", aby uzyskać wszystko."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Pasujące: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -113166,18 +118708,18 @@ index 0fe83a9..66472e1 100644
 +msgstr "  Pasuje %sgłównie%s nazwa i podsumowanie, należy użyć \"search all\", aby uzyskać wszystko."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Ostrzeżenie: nie odnaleziono wyników dla: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Brak wyników"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nie odnaleziono pakietów dla %s"
@@ -113187,119 +118729,146 @@ index 0fe83a9..66472e1 100644
 +msgstr "Błąd: nie odnaleziono pakietów dla:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Czyszczenie repozytoriów: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Czyszczenie wszystkiego"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Czyszczenie nagłówków"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Czyszczenie pakietów"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Czytanie metadanych XML"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Czyszczenie bazy danych w pamięci podręcznej"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Czyszczenie metadanych wygasłej pamięci podręcznej"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Czyszczenie bazy danych RPM w pamięci podręcznej"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Czyszczenie wtyczek"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Ostrzeżenie: brak pasujących grup: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Ostrzeżenie: brak pasujących grup: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Zainstalowane grupy środowisk:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Dostępne grupy środowisk:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Zainstalowane grupy:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Zainstalowane grupy języków:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Dostępne grupy:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Dostępne grupy języków:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Ostrzeżenie: brak pasujących środowisk/grup: %s"
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Ukończono"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Ostrzeżenie: środowisko/grupa %s nie istnieje."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Ostrzeżenie: środowisko %s nie istnieje."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Ostrzeżenie: grupa %s nie istnieje."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Brak pakietów dostępnych do instalacji lub aktualizacji w żadnej z żądanych grup"
- 
--#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d pakietów do instalacji"
++
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d pakiet do zainstalowania"
 +msgstr[1] "%d pakiety do zainstalowania"
 +msgstr[2] "%d pakietów do zainstalowania"
  
+-#: ../cli.py:1326
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d pakietów do instalacji"
++msgid "No Environment named %s exists"
++msgstr "Środowisko o nazwie %s nie istnieje"
+ 
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Grupa o nazwie %s nie istnieje"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Brak pakietów do usunięcia z grup"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pakietów do usunięcia"
@@ -113310,20 +118879,20 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d pakietów do usunięcia"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Pakiet %s jest już zainstalowany, pomijanie"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -113331,18 +118900,18 @@ index 0fe83a9..66472e1 100644
 +msgstr "Inne %s nie są zainstalowane, dodawanie do listy potencjalnie instalowanych"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opcje wtyczki"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Błąd wiersza poleceń: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -113355,150 +118924,150 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\n%s: opcja %s wymaga parametru"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--installroot musi być ścieżką bezwzględną: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "wyświetla ten komunikat pomocy i kończy pracę"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "toleruje błędy"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
 -msgstr ""
 -"uruchamia wyłącznie z pamięci podręcznej systemu i nie aktualizuje jej"
 +msgstr "uruchamia wyłącznie z pamięci podręcznej systemu i nie aktualizuje jej"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "położenie pliku konfiguracji"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maksymalny czas oczekiwania na polecenie"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "poziom wyjścia debugowania"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "wyświetla duplikaty w repozytoriach w poleceniach list/search"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "poziom wyjścia błędów"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "poziom wyjścia debugowania dla programu RPM"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "mało komunikatów"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "dużo komunikatów"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "odpowiada tak na wszystkie pytania"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "odpowiada nie na wszystkie pytania"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "wyświetla wersję programu yum i kończy pracę"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "ustawia roota instalacji"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  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:2099
++#: ../cli.py:2321
  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:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "wyklucza pakiety po nazwie lub wyrażeniu regularnym"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "włącza przetwarzanie przestarzałych pakietów podczas aktualizacji"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "wyłącza wtyczki programu yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "wyłącza sprawdzanie podpisu GPG"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "wyłącza wtyczki po nazwie"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "włącza wtyczki po nazwie"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "pomija pakiety mające problemy z rozwiązaniem zależności"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontroluje użycie kolorów"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
 -msgstr ""
 -"ustawia wartość zmiennej $releasever w konfiguracji programu yum i plikach "
@@ -113506,207 +119075,215 @@ index 0fe83a9..66472e1 100644
 +msgstr "ustawia wartość zmiennej $releasever w konfiguracji programu yum i plikach repozytoriów"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "bez aktualizowania, tylko pobieranie"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "określa alternatywny katalog do przechowywania pakietów"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "ustawia bezwzględne opcje konfiguracji i repozytoriów"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "sty"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "lut"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "kwi"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "maj"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "cze"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "lip"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "sie"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "wrz"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "paź"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "lis"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "gru"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Próbowanie innego serwera lustrzanego."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nazwa              : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Architektura       : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epoka              : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Wersja             : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Wydanie            : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Rozmiar            : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repozytorium       : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Z repozytorium     : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Twórca             : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Czas wysłania      : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Czas zbudowania    : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Czas zainstalowania: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Zainstalowane przez: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Zmienione przez    : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Podsumowanie       : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "Adres URL          : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licencja           : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Opis               : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "t"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "tak"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nie"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "W porządku? [t/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -113717,166 +119294,190 @@ index 0fe83a9..66472e1 100644
 +msgstr "\nGrupa: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Identyfikator grupy: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Opis: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Język: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Pakiety obowiązkowe:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Domyślne pakiety:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Pakiety opcjonalne:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Pakiety warunkowe:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Zainstalowane pakiety:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nGrupa środowiska: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "Identyfikator środowiska: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "Obowiązkowe grupy:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "Opcjonalne grupy:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "Zainstalowane grupy:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "pakiet: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Brak zależności dla tego pakietu"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  zależność: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Nierozwiązana zależność"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Dopasowano z:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licencja    : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Nazwa pliku : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Dostarcza   : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Inne        : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Całkowity rozmiar: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Całkowity rozmiar pobierania: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Rozmiar po zainstalowaniu: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Wystąpił błąd podczas obliczania rozmiaru po zainstalowaniu"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Ponowne instalowanie"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Instalowanie poprzedniej wersji"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Instalowanie, aby rozwiązać zależności"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Aktualizowanie, aby rozwiązać zależności"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Usuwanie, aby rozwiązać zależności"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Pominięto (problemy z zależnościami)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Nie zainstalowano"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Niedostępne"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Pakiet"
 +msgid_plural "Packages"
@@ -113885,33 +119486,33 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "Pakiety"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Architektura"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Wersja"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repozytorium"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Rozmiar"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     zastępuje  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -113927,7 +119528,7 @@ index 0fe83a9..66472e1 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Instalacja                    %5.5s pakiet(y)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalacja"
  
@@ -113935,7 +119536,7 @@ index 0fe83a9..66472e1 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Aktualizacja                  %5.5s pakiet(y)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Aktualizacja"
  
@@ -113943,7 +119544,7 @@ index 0fe83a9..66472e1 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Usunięcie                     %5.5s pakiet(y)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Usunięcie"
  
@@ -113951,7 +119552,7 @@ index 0fe83a9..66472e1 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Ponowna instalacja            %5.5s pakiet(y)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Ponowna instalacja"
  
@@ -113959,59 +119560,59 @@ index 0fe83a9..66472e1 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Instalacja poprzedniej wersji %5.5s pakiet(y)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Instalacja poprzedniej wersji"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Zależny pakiet"
 +msgstr[1] "Zależne pakiety"
 +msgstr[2] "Zależne pakiety"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Usunięto"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Usunięto zależność"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Zainstalowano zależność"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Zaktualizowano zależność"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Zastąpiono"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Nie powiodło się"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dwóch"
  
-@@ -955,565 +982,598 @@ msgstr "dwóch"
+@@ -955,565 +1065,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -114023,262 +119624,262 @@ index 0fe83a9..66472e1 100644
 +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:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "przerwane przez użytkownika"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Razem"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<nie ustawiono>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "System"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, 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:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Brak transakcji"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Podano błędne identyfikatory transakcji lub pakietów"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Wiersz poleceń"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Zalogowany użytkownik"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "Identyfikator"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Data i czas"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Czynności"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Zmieniono"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Nie podano identyfikatora transakcji"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Podano błędny identyfikator transakcji"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Nie odnaleziono podanego identyfikatora transakcji"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Odnaleziono więcej niż jeden identyfikator transakcji."
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Podano błędny identyfikator transakcji lub pakietu"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Zainstalowano poprzednią wersję"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Starsze"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Nowsze"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Identyfikator transakcji   :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Czas rozpoczęcia           :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Rozpoczęcie bazy danych RPM:"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u sekund)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minut)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u godzin)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u dni)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Czas ukończenia            :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Ukończenie bazy danych RPM :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Użytkownik                 :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Kod zwrotny                :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Przerwano"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Niepowodzenia:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Niepowodzenie:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Powodzenie"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Wiersz poleceń :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Wykonano transakcję za pomocą:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Zmienione pakiety:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Pominięte pakiety:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problemy bazy danych RPM:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Wyjście skryptu:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Błędy:"
  
@@ -114287,17 +119888,17 @@ index 0fe83a9..66472e1 100644
 -msgstr "Instalacja"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Instalacja zależności"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Zastępowanie"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Usunięcie"
  
@@ -114310,224 +119911,226 @@ index 0fe83a9..66472e1 100644
 -msgstr "Instalacja poprzedniej wersji"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Aktualizacja"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Czas"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Ostatni dzień"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Ostatni tydzień"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Ostatnie dwa tygodnie"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Ostatnie trzy miesiące"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Ostatnie pół roku"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Ostatni rok"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Ponad rok temu"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Nie odnaleziono transakcji %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Identyfikator transakcji:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Dostępne są dodatkowe informacje o historii:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Pakiet             :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Stan               :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Rozmiar            :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Komputer budujący  :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Czas zbudowania    :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Twórca pakietu     :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Producent          :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licencja           :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "Adres URL          :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Źródłowy pakiet RPM:"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Czas wysłania      :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Wysyłający         :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Przyczyna          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Z repozytorium     :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Zainstalowane przez:"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Zmienione przez    :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "zainstalowany"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "zaktualizowany"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "usunięty"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "ponownie zainstalowany"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "zainstalowana poprzednia wersja"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "zastępowany"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "zaktualizowany"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "zastąpiony"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Wykonywanie sprawdzania transakcji"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Ponowne uruchamianie rozwiązywania zależności z nowymi zmianami."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Ukończono rozwiązywanie zależności"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Przetwarzanie zależności: %s dla pakietu: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Utrzymywanie pakietu: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Utrzymywanie pakietu: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Zatrzymywanie pakietu: %s z powodu %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Nierozwiązana zależność: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Pakiet: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -114538,7 +120141,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n    Wymaga: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -114549,7 +120152,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -114560,7 +120163,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -114571,40 +120174,40 @@ index 0fe83a9..66472e1 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Zaktualizowano przez"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Zainstalowano poprzednią wersję przez"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Zastąpiono przez"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Dostępne"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Przetwarzanie konfliktów: %s jest w konflikcie z %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Układanie zestawu transakcji z wybranymi pakietami. Proszę czekać."
 +msgstr "--> Układanie zestawu transakcji z wybranymi pakietami. Proszę czekać."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
 -msgstr ""
@@ -114613,71 +120216,71 @@ index 0fe83a9..66472e1 100644
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Sprawdzanie"
  
 -#: ../utils.py:99
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Wykonywanie"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Zasypianie"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Nie można przerywać"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Śledzone/zatrzymane"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Nieznane"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Inna aplikacja to PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Inna aplikacja to: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Pamięć: %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Uruchomiono: %s - %s temu"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Stan: %s, PID: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -114689,7 +120292,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\nKończenie działania na polecenie użytkownika"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -114701,7 +120304,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\nKończenie działania z powodu przerwanego potoku"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -114714,51 +120317,49 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Inna aplikacja obecnie blokuje program yum. Kończenie działania zgodnie z "
 -"konfiguracją exit_on_lock"
-+msgstr "Inna aplikacja obecnie blokuje program yum. Kończenie działania zgodnie z konfiguracją exit_on_lock"
- 
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Błąd wyjścia wtyczki: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Błąd programu yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Błąd: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -114768,11 +120369,11 @@ index 0fe83a9..66472e1 100644
 +msgstr "\nRozwiązano zależności"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Ukończono."
  
-@@ -1525,7 +1585,7 @@ msgstr " Małe użycie:\n"
+@@ -1525,7 +1662,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."
  
@@ -114781,7 +120382,7 @@ index 0fe83a9..66472e1 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1540,475 +1600,490 @@ msgid ""
+@@ -1540,587 +1677,653 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -114815,51 +120416,71 @@ index 0fe83a9..66472e1 100644
  msgstr "Błąd: wymagane jest przekazanie listy pakietów do %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Błąd: wymagane są co najmniej dwa pakiety dla %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Błąd: należy przekazać identyfikator repozytorium i polecenie dla %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Błąd: należy przekazać pojedynczy prawidłowy identyfikator repozytorium dla %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Błąd: repozytorium %s jest wyłączone"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Błąd: wymagany jest parametr do dopasowania"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Błąd: wymagana jest grupa lub lista grup"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Błąd: czyszczenie wymaga opcji: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Błąd: nieprawidłowy parametr czyszczenia: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Brak parametrów dla powłoki"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Przekazano nazwę pliku do powłoki: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -114871,112 +120492,112 @@ index 0fe83a9..66472e1 100644
 +msgstr "Brak włączonych repozytoriów.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKIET..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Instaluje pakiet lub pakiety w systemie"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Ustawianie procesu instalacji"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKIET...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Aktualizuje pakiet lub pakiety w systemie"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Ustawianie procesu aktualizacji"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Synchronizuje zainstalowane pakiety do najnowszych dostępnych wersji"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Ustawianie procesu synchronizacji dystrybucji"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Zainstalowane pakiety"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Dostępne pakiety"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Dodatkowe pakiety"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Zaktualizowane pakiety"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Zastępowanie przestarzałych pakietów"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Ostatnio dodane pakiety"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Brak pakietów pasujących do listy"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Wyświetla listę pakietów lub grup pakietów"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Usuwa pakiet lub pakiety z systemu"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Ustawianie procesu usuwania"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Wyświetla lub używa informacji o grupach"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Ustawianie procesu grup"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Brak grup, na których można wykonać polecenie"
  
@@ -114987,7 +120608,7 @@ index 0fe83a9..66472e1 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Instaluje pakiety z grupy w systemie"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Nieprawidłowe podpolecenie grup, należy użyć: %s."
@@ -114995,79 +120616,79 @@ index 0fe83a9..66472e1 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Usuwa pakiety z grupy z systemu"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Nie zainstalowano żadnych plików grup."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Wyświetla szczegóły o grupie pakietów"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Brak dostępu do bazy danych grup."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Utworzy pamięć podręczną metadanych"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  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:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Utworzono pamięć podręczną metadanych"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Usuwa dane z pamięci podręcznej"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Wyszukuje pakiet dostarczający podaną wartość"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Sprawdza dostępne aktualizacje pakietów"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Wyszukuje szczegóły pakietów dla podanego ciągu"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Wyszukiwanie pakietów: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Aktualizuje pakiety, w tym przestarzałe"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Ustawianie procesu aktualizacji"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instaluje lokalny pakiet RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Ustawianie procesu lokalnego pakietu"
  
@@ -115076,150 +120697,150 @@ index 0fe83a9..66472e1 100644
 -msgstr "Określa, który pakiet dostarcza podaną zależność"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Wyszukiwanie pakietów dla zależności:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Uruchamia interaktywną powłokę programu yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Ustawianie powłoki programu yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Wyświetla listę zależności pakietu"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Wyszukiwanie zależności: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Wyświetla skonfigurowane repozytoria oprogramowania"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "włączone"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "wyłączone"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Identyfikator repozytorium        : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Nazwa repozytorium                : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Stan repozytorium                 : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Wersja repozytorium               : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Znaczniki repozytorium            : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Znaczniki dystrybucji repozytorium: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Aktualizacje repozytorium         : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Pakiety repozytorium              : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Rozmiar repozytorium              : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Podstawowy adres URL repozytorium : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Metaodnośnik repozytorium         : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Zaktualizowano                  : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Serwery lustrzane repozytorium    : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Nigdy (ostatnio: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Natychmiast (ostatnio: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekundy (ostatnio: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Wygaszenie repozytorium           : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Wykluczenia z repozytorium        : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Dołączone z repozytorium          : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Wykluczenia z repozytorium        : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Nazwa pliku repozytorium: "
@@ -115227,33 +120848,33 @@ index 0fe83a9..66472e1 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "identyfikator repozytorium"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "stan"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nazwa repozytorium"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Wyświetla pomocny komunikat o używaniu"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Brak dostępnej pomocy dla %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -115265,7 +120886,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\naliasy: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -115277,149 +120898,188 @@ index 0fe83a9..66472e1 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Ustawianie procesu ponownej instalacji"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "Ponownie instaluje pakiet"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Ustawianie procesu instalacji poprzedniej wersji pakietu"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "Instaluje poprzednią wersję pakietu"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Grupy wersji programu yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grupa  :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Pakiety:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Zainstalowano:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Zainstalowana grupa:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Dostępne:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Dostępne grupy:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Wyświetla lub używa historii transakcji"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transakcje:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Czas rozpoczęcia:"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Czas ukończenia :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Liczba          :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  Baza danych RPM:"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  Baza danych yum:"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Nieprawidłowe podpolecenie historii, należy użyć: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Brak dostępu do bazy danych historii."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
 -msgstr "Proszę sprawdzić, czy występują problemy w bazie danych RPM"
 +msgstr "Sprawdza, czy występują problemy w bazie danych RPM"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "wczytuje zapisaną transakcję z nazwy pliku"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Nie podano zapisanego pliku transakcji."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "wczytywanie transakcji z %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Wczytano transakcję z %s z %s elementami"
-@@ -2017,110 +2092,112 @@ msgstr "Wczytano transakcję z %s z %s elementami"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Prosty sposób na przełączenie pakietów, zamiast używania powłoki"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Traktuje repozytorium jako grupę pakietów, więc można je wszystkie zainstalować/usunąć"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d pakiet do zaktualizowania"
++msgstr[1] "%d pakiety do zaktualizowania"
++msgstr[2] "%d pakietów do zaktualizowania"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d pakiet do usunięcia/zainstalowania ponownie"
++msgstr[1] "%d pakiety do usunięcia/zainstalowania ponownie"
++msgstr[2] "%d pakietów do usunięcia/zainstalowania ponownie"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d pakiet do usunięcia/zsynchronizowania"
++msgstr[1] "%d pakiety do usunięcia/zsynchronizowania"
++msgstr[2] "%d pakietów do usunięcia/zsynchronizowania"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Nieprawidłowe podpolecenie dla %s"
++
+ #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
  #, python-format
  msgid " Yum checks failed: %s"
@@ -115432,32 +121092,25 @@ index 0fe83a9..66472e1 100644
 -msgstr ""
 -"Inna aplikacja obecnie blokuje program yum. Oczekiwanie na jej "
 -"zakończenie..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Brak dostępu do odczytu/wykonania w bieżącym katalogu, przenoszenie do /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "Brak dostępu getcwd() w bieżącym katalogu, przechodzenie do /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Nie można utworzyć pliku blokady; kończenie działania"
+-msgid "Can't create lock file; exiting"
+-msgstr "Nie można utworzyć pliku blokady; kończenie działania"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "Brak dostępu getcwd() w bieżącym katalogu, przechodzenie do /"
  
-+#: ../yummain.py:134
-+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..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Rozwiązywanie zależności"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -115469,7 +121122,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Transakcja została zapisana, można ją wykonać ponownie za pomocą:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -115511,7 +121164,7 @@ index 0fe83a9..66472e1 100644
  msgstr "Element: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s przekonwertowano do zainstalowania"
@@ -115568,7 +121221,7 @@ index 0fe83a9..66472e1 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Tryb dla pakietu dostarczającego %s: %s"
-@@ -2128,1049 +2205,1071 @@ msgstr "Tryb dla pakietu dostarczającego %s: %s"
+@@ -2128,1049 +2331,1142 @@ 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 :(
@@ -115579,19 +121232,29 @@ index 0fe83a9..66472e1 100644
  msgstr "Próba zaktualizowania %s, aby rozwiązać zależność"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Nie odnaleziono ścieżek aktualizacji dla %s. Niepowodzenie z powodu wymagania: %s."
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Aktualizacja dla %s. Nie naprawia wymagania: %s."
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -115600,26 +121263,26 @@ index 0fe83a9..66472e1 100644
 +msgstr "TSINFO: zastępowanie przestarzałego pakietu %s pakietem %s, aby rozwiązać zależność."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -115627,7 +121290,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "%s jest w dostarczających pakietach, ale jest już zainstalowany, usuwanie."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -115635,81 +121298,81 @@ index 0fe83a9..66472e1 100644
 +msgstr "Pakiet %s potencjalnie rozwiązujący ma nowszą wersję w zestawie transakcji."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Powodzenie - pusta transakcja"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Ponowne uruchamianie pętli"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Kończenie procesu zależności"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Powodzenie - rozwiązano zależności"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Sprawdzanie zależności dla %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr "wyszukiwanie %s jako wymagania %s"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "lepsze arch w po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s zastępuje %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -115720,25 +121383,25 @@ index 0fe83a9..66472e1 100644
 +msgstr "archdist porównało %s do %s na %s\n  Zwycięzca: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, 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:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "wymaga minimum: %d"
@@ -115746,41 +121409,46 @@ index 0fe83a9..66472e1 100644
 +msgstr "dostarcza vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Zwycięzca: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "wymaga minimum: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Przegrany (za pomocą %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Najlepszy porządek: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Pomijanie nieczytelnego repozytorium %s"
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -115788,97 +121456,102 @@ index 0fe83a9..66472e1 100644
 +msgstr "Repozytorium %r nie posiada nazwy w konfiguracji, używanie identyfikatora"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "wtyczki zostały już zainicjowane"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Odczytywanie lokalnej bazy danych RPM"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Ustawianie zestawów pakietów"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Budowanie obiektu aktualizacji"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Pobieranie metadanych grup"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Dodawanie pliku grup z repozytorium: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Pobranie pliku grup dla repozytorium się nie powiodło: %s"
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
 -msgstr "Dodanie pliku grup dla repozytorium nie powiodło się: %s - %s"
 +msgstr "Dodanie pliku grup dla repozytorium się nie powiodło: %s - %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Brak dostępnych grup we wszystkich repozytoriach"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Pobieranie metadanych znaczników pakietów"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Dodawanie znaczników z repozytorium: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
 -msgstr ""
@@ -115886,18 +121559,18 @@ index 0fe83a9..66472e1 100644
 +msgstr "Dodanie znaczników pakietów dla repozytorium się nie powiodło: %s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importowanie dodatkowych informacji o liście plików"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -115907,24 +121580,58 @@ index 0fe83a9..66472e1 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Wyszukiwanie niepotrzebnych pozostałych zależności"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Chronione wersje multilib: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -115934,14 +121641,14 @@ index 0fe83a9..66472e1 100644
 +msgstr "\nPakiety pominięto z powodu problemów z zależnościami:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s z %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -115950,22 +121657,22 @@ index 0fe83a9..66472e1 100644
 +msgstr "** Odnaleziono %d wcześniej istniejących problemów bazy danych RPM. Wynik polecenia \"yum check\":"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  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:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "brak wymaganych"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "zainstalowano konflikt"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -115974,18 +121681,18 @@ index 0fe83a9..66472e1 100644
 +msgstr "Ostrzeżenie: podczas transakcji wystąpił skrypt lub inne nie krytyczne błędy."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Nie można rozpocząć transakcji:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Nie można wykonać transakcji."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
 -msgstr "Usunięcie pliku transakcji %s nie powiodło się"
@@ -115994,7 +121701,7 @@ index 0fe83a9..66472e1 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s miało zostać zainstalowane, ale nie zostało."
@@ -116005,7 +121712,7 @@ index 0fe83a9..66472e1 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s miało zostać usunięte, ale nie zostało."
@@ -116023,32 +121730,32 @@ index 0fe83a9..66472e1 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Nie można otworzyć blokady %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Nie można sprawdzić, czy PID %s jest aktywny"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -116059,17 +121766,17 @@ index 0fe83a9..66472e1 100644
 +msgstr "Pakiet nie zgadza się z zamierzonym pobieraniem. Sugestia: proszę wykonać polecenie yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Nie można wykonać sprawdzenia sum kontrolnych"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Sumy kontrolne pakietu nie zgadzają się"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -116078,7 +121785,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "sprawdzenie sum kontrolnych pakietu się nie powiodło, ale zapisywanie w pamięci podręcznej dla %s jest włączone"
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "używanie lokalnej kopii %s"
@@ -116093,14 +121800,18 @@ index 0fe83a9..66472e1 100644
 -"Niewystarczająca ilość miejsca w katalogu pobierania %s\n"
 -"    * wolne   %s\n"
 -"    * wymagane %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "kończenie działania, ponieważ podano opcję --downloadonly"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Nagłówek nie jest pełny."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -116110,55 +121821,55 @@ index 0fe83a9..66472e1 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Wystąpił problem podczas otwierania pakietu %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Pakiet %s nie jest podpisany"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Nie można usunąć %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "Usunięto %s"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Nie można usunąć %s pliku %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "Usunięto %s plik %s"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "Usunięto %d %s plików"
@@ -116169,19 +121880,19 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "%d %s plików zostało usuniętych"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -116191,7 +121902,7 @@ index 0fe83a9..66472e1 100644
 +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:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Wyszukiwanie %d pakietów"
@@ -116202,113 +121913,130 @@ index 0fe83a9..66472e1 100644
 +msgstr[2] "Wyszukiwanie %d pakietów"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "wyszukiwanie pakietu %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "wyszukiwanie we wpisach plików"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "wyszukiwanie we wpisach dostarczania"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "pakiet %s nie został oznaczony w grupie %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Pomijanie pakietu %s z grupy %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Dodawanie pakietu %s z grupy %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Ostrzeżenie: grupa %s nie posiada żadnych pakietów."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Ostrzeżenie: grupa %s nie posiada żadnych pakietów."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Ostrzeżenie: grupa %s nie posiada żadnych pakietów do zainstalowania."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
 -msgstr ""
 -"Grupa %s posiada %u pakiety warunkowe, które mogą zostać zainstalowane."
 +msgstr "Grupa %s posiada %u pakiety warunkowe, które mogą zostać zainstalowane."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Pomijanie grupy %s ze środowiska %s"
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Nie odnaleziono pakietu %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Ostrzeżenie: grupa środowiska %s nie istnieje."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Pakiet: %s - nie może być zainstalowany równocześnie z %s"
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Obiekt pakietu nie był instancją obiektu pakietu"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nie podano nic do zainstalowania"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Sprawdzanie wirtualnych zależności lub plików dla %s"
@@ -116320,30 +122048,30 @@ index 0fe83a9..66472e1 100644
 -msgstr "Brak wyników dla parametru: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Brak pakietów dostępnych do instalacji"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Pakiet: %s  - jest już w zestawie transakcji"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -116354,7 +122082,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Pakiet %s został zastąpiony przez %s, ale zastępujący pakiet nie spełnia wymagań"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -116362,13 +122090,13 @@ index 0fe83a9..66472e1 100644
 +msgstr "Pakiet %s został zastąpiony przez %s, próbowanie instalacji %s zamiast niego"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -116377,48 +122105,48 @@ index 0fe83a9..66472e1 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Brak wyników dla parametru: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Brak pakietów pasujących do aktualizacji: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -116426,50 +122154,50 @@ index 0fe83a9..66472e1 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Brak pasujących pakietów do usunięcia"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Brak pakietów pasujących do usunięcia: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Pomijanie uruchomionego jądra: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Usuwanie %s z transakcji"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Sprawdzanie %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, 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:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -116478,7 +122206,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Nie można zainstalować pakietu %s. Został zastąpiony zainstalowanym pakietem %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -116489,7 +122217,7 @@ index 0fe83a9..66472e1 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -116500,37 +122228,37 @@ index 0fe83a9..66472e1 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Wykluczanie %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Oznaczanie %s do zainstalowania"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "Oznaczanie %s jako aktualizacji %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Nie można otworzyć pliku: %s. Pomijanie."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Podczas ponownego instalowania wystąpił problem: brak pasujących pakietów do"
@@ -116538,7 +122266,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Podczas ponownego instalowania wystąpił problem: brak pasujących pakietów do usunięcia"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -116547,48 +122275,48 @@ index 0fe83a9..66472e1 100644
 +msgstr "Podczas ponownego instalowania wystąpił problem: brak pakietu %s pasującego do zainstalowania"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Brak pakietów dostępnych do instalacji poprzedniej wersji"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
 -msgstr "Zainstalowanie poprzedniej wersji nie powiodło się: %s"
 +msgstr "Zainstalowanie poprzedniej wersji się nie powiodło: %s"
- 
--#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Aktualizacja się nie powiodła: %s"
-+
-+#: ../yum/__init__.py:5265
+ 
+-#: ../yum/__init__.py:4516
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Pobieranie klucza z %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  msgid "GPG key retrieval failed: "
 -msgstr "Pobranie klucza GPG nie powiodło się: "
 +msgstr "Pobranie klucza GPG się nie powiodło: "
@@ -116596,24 +122324,24 @@ index 0fe83a9..66472e1 100644
  #. 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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Nieprawidłowy klucz GPG z %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
 -msgstr ""
@@ -116621,7 +122349,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Przetworzenie klucza GPG się nie powiodło: klucz nie posiada wartości %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -116640,7 +122368,7 @@ index 0fe83a9..66472e1 100644
 +msgstr "Importowanie %s klucza 0x%s:\n Identyfikator użytkownika: \"%s\"\n Odcisk palca             : %s\n Pakiet                   : %s (%s)\n Z                        : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -116654,8 +122382,9 @@ index 0fe83a9..66472e1 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Importowanie %s klucza 0x%s:\n Identyfikator użytkownika: \"%s\"\n Odcisk palca             : %s\n Z                        : %s"
-+
-+#: ../yum/__init__.py:5379
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -116664,32 +122393,31 @@ index 0fe83a9..66472e1 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Nieudany pakiet: %s\n Klucze GPG są skonfigurowane jako: %s\n"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
 -msgstr "Zaimportowanie klucza nie powiodło się (kod %d)"
 +msgstr "Zaimportowanie klucza się nie powiodło (kod %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Klucz został pomyślnie zaimportowany"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Nie zainstalowano żadnych kluczy"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -116700,20 +122428,20 @@ index 0fe83a9..66472e1 100644
 +msgstr "Klucze GPG wyświetlone dla repozytorium \"%s\" są już zainstalowane, ale nie są poprawne dla tego pakietu.\nProszę sprawdzić, czy dla tego repozytorium skonfigurowane są poprawne adresy URL do kluczy."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nie"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Tak"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -116724,7 +122452,7 @@ index 0fe83a9..66472e1 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Klucz CA: %s\n Nieudane repozytorium: %s\n Klucze GPG są skonfigurowane jako: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "Klucz GPG %s (0x%s) został już zaimportowany"
@@ -116732,19 +122460,19 @@ index 0fe83a9..66472e1 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Zaimportowanie klucza nie powiodło się"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Zaimportowanie klucza %s się nie powiodło"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -116755,34 +122483,34 @@ index 0fe83a9..66472e1 100644
 +msgstr "Klucze GPG wyświetlone dla repozytorium \"%s\" są już zainstalowane, ale nie są poprawne.\nProszę sprawdzić, czy dla tego repozytorium skonfigurowane są poprawne adresy URL do kluczy."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Nie można odnaleźć odpowiedniego serwera lustrzanego."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Wystąpiły błędy podczas pobierania pakietów."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, 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:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Błędy testu transakcji: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Zależności nie zostały rozwiązane. Nierozwiązana transakcja nie zostanie "
@@ -116790,85 +122518,90 @@ index 0fe83a9..66472e1 100644
 +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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "wersja bazy danych RPM nie zgadza się z wersją zapisanej transakcji, "
- 
+-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:6040
- msgid " ignoring, as requested."
- msgstr " ignorowanie, jak zażądano."
+-msgid " ignoring, as requested."
+-msgstr " ignorowanie, jak zażądano."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "wersja RPMDB nie zgadza się z zapisaną wersją transakcji,"
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " przerywanie."
- 
+-msgid " aborting."
+-msgstr " przerywanie."
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " ignorowanie, jak zażądano. Należy rozwiązać zależności."
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, 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:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Sprawdzanie odwrotnych zależności pakietu %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "Pakiet %s posiada odwrotną zależność %s zainstalowaną przez użytkownika."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "Zainstalowanie %s jest wymagane przez pakiet."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s nie posiada odwrotnych zależności zainstalowanych przez użytkownika."
@@ -116971,7 +122704,7 @@ index 0fe83a9..66472e1 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s dostarcza %s, ale nie można go odnaleźć"
-@@ -3179,6 +3278,19 @@ msgstr "%s dostarcza %s, ale nie można go odnaleźć"
+@@ -3179,6 +3475,23 @@ msgstr "%s dostarcza %s, ale nie można go odnaleźć"
  msgid "Repackaging"
  msgstr "Ponowne tworzenie pakietu"
  
@@ -116980,7 +122713,7 @@ index 0fe83a9..66472e1 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Sprawdzanie: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -116988,10 +122721,14 @@ index 0fe83a9..66472e1 100644
 +"    * needed %s"
 +msgstr "Niewystarczająca ilość miejsca w katalogu pobierania %s\n    * wolne   %s\n    * wymagane %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Pakiet nie zgadza się z zamierzonym pobieraniem."
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3187,12 +3299,11 @@ msgstr "Nie można otworzyć nagłówka lub nie pasuje do %s, %s."
+@@ -3187,12 +3500,11 @@ msgstr "Nie można otworzyć nagłówka lub nie pasuje do %s, %s."
  #: ../rpmUtils/oldUtils.py:53
  #, python-format
  msgid "RPM %s fails md5 check"
@@ -117006,17 +122743,17 @@ index 0fe83a9..66472e1 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3208,5 +3319,3 @@ msgstr "Uszkodzony nagłówek %s"
+@@ -3208,5 +3520,3 @@ msgstr "Uszkodzony nagłówek %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Błąd podczas otwierania pakietu RPM %s - błąd %s"
 -
 -
 diff --git a/po/pt.po b/po/pt.po
-index 9e76ec0..e60ad1f 100644
+index 9e76ec0..6c2886c 100644
 --- a/po/pt.po
 +++ b/po/pt.po
-@@ -2,427 +2,455 @@
+@@ -2,427 +2,506 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -117029,8 +122766,8 @@ index 9e76ec0..e60ad1f 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -117041,7 +122778,7 @@ index 9e76ec0..e60ad1f 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -117052,31 +122789,31 @@ index 9e76ec0..e60ad1f 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -117103,7 +122840,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -117113,69 +122850,69 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Erro nas Opções: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -117186,121 +122923,147 @@ index 9e76ec0..e60ad1f 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -117310,12 +123073,12 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -117325,12 +123088,12 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -117340,14 +123103,14 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -117355,13 +123118,13 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -117369,7 +123132,7 @@ index 9e76ec0..e60ad1f 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -117377,58 +123140,58 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -117437,115 +123200,140 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr ""
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -117555,392 +123343,400 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +458,452 @@ msgid ""
+@@ -430,438 +509,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -117948,165 +123744,189 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -118114,387 +123934,387 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arq."
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versão"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +911,58 @@ msgid ""
+@@ -869,57 +994,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +970,7 @@ msgstr ""
+@@ -927,7 +1053,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +978,542 @@ msgid ""
+@@ -935,484 +1061,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -118503,17 +124323,17 @@ index 9e76ec0..e60ad1f 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -118526,224 +124346,225 @@ index 9e76ec0..e60ad1f 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -118751,7 +124572,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -118759,7 +124580,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -118767,7 +124588,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -118775,38 +124596,38 @@ index 9e76ec0..e60ad1f 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -118814,70 +124635,70 @@ index 9e76ec0..e60ad1f 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -118885,7 +124706,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -118893,68 +124714,67 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1521,47 @@ msgid ""
+@@ -1420,47 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1573,7 @@ msgstr ""
+@@ -1472,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -118963,7 +124783,7 @@ index 9e76ec0..e60ad1f 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1590,488 @@ msgid ""
+@@ -1489,555 +1667,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -118980,51 +124800,71 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -119032,200 +124872,200 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -119234,183 +125074,183 @@ index 9e76ec0..e60ad1f 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -119418,7 +125258,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -119426,180 +125266,210 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -119608,7 +125478,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -119644,7 +125514,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -119701,7 +125571,7 @@ index 9e76ec0..e60ad1f 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2193,1069 @@ msgstr ""
+@@ -2045,991 +2316,1140 @@ 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 :(
@@ -119712,130 +125582,140 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -119843,254 +125723,298 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -120098,7 +126022,7 @@ index 9e76ec0..e60ad1f 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -120109,14 +126033,14 @@ index 9e76ec0..e60ad1f 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -120124,7 +126048,7 @@ index 9e76ec0..e60ad1f 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "Não é possível verificar se o PID %s está activo"
@@ -120133,7 +126057,7 @@ index 9e76ec0..e60ad1f 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -120142,7 +126066,7 @@ index 9e76ec0..e60ad1f 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr ""
@@ -120150,7 +126074,7 @@ index 9e76ec0..e60ad1f 100644
 +msgstr "Não é possível verificar se o PID %s está activo"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -120158,23 +126082,23 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -120185,70 +126109,73 @@ index 9e76ec0..e60ad1f 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -120258,26 +126185,26 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -120287,111 +126214,127 @@ index 9e76ec0..e60ad1f 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -120403,30 +126346,30 @@ index 9e76ec0..e60ad1f 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -120434,123 +126377,123 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -120558,7 +126501,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -120566,118 +126509,118 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -120691,7 +126634,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -120703,7 +126646,7 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -120713,29 +126656,29 @@ index 9e76ec0..e60ad1f 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -120743,20 +126686,20 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -120767,26 +126710,26 @@ index 9e76ec0..e60ad1f 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -120794,117 +126737,121 @@ index 9e76ec0..e60ad1f 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -121004,7 +126951,7 @@ index 9e76ec0..e60ad1f 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3264,19 @@ msgstr ""
+@@ -3038,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -121013,7 +126960,7 @@ index 9e76ec0..e60ad1f 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -121021,20 +126968,24 @@ index 9e76ec0..e60ad1f 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3305,3 @@ msgstr "Cabeçalho %s Danificado"
+@@ -3066,5 +3503,3 @@ msgstr "Cabeçalho %s Danificado"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Erro ao abrir o RPM %s - erro %s"
 -
 -
 diff --git a/po/pt_BR.po b/po/pt_BR.po
-index 493f090..671115d 100644
+index 493f090..74baf4d 100644
 --- a/po/pt_BR.po
 +++ b/po/pt_BR.po
-@@ -2,943 +2,969 @@
+@@ -2,943 +2,1052 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -121051,8 +127002,8 @@ index 493f090..671115d 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/yum/team/pt_BR/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/yum/language/pt_BR/)\n"
  "MIME-Version: 1.0\n"
@@ -121063,7 +127014,7 @@ index 493f090..671115d 100644
 +"Plural-Forms: nplurals=2; plural=(n > 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Atualizando"
  
@@ -121074,31 +127025,31 @@ index 493f090..671115d 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Atualizados"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Instalados"
  
@@ -121125,7 +127076,7 @@ index 493f090..671115d 100644
  msgstr "Removidos: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Removendo"
  
@@ -121135,69 +127086,69 @@ index 493f090..671115d 100644
  msgstr "Limpeza"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Comando \"%s\" já definido"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Configurando repositórios"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Erro de configuração: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Erro nas opções: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Instalados: %s-%s em %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Construídos    : %s em %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Enviados: %s em %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Você precisa dar algum comando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Requisitos de disco:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -121208,7 +127159,7 @@ index 493f090..671115d 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -121216,76 +127167,98 @@ index 493f090..671115d 100644
 -"Sumário de erros\n"
 -"-------------\n"
 +msgstr "Sumário de erros\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Não é possível criar o arquivo de bloqueio; saindo"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "No momento outro aplicativo está com a posse da trava do yum; saindo conforme configurado pelo exit_on_lock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr "ignorando, conforme solicitado."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "abortando."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Saindo pelo comando do usuário"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Baixando pacotes:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Erro ao baixar pacotes:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
 +msgstr "Executando Verificação da Transação"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "O RPM precisa ser atualizado"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Por favor, relate esse erro em %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Executando teste de transação"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Erro na verificação da transação:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Teste de transação completo"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Executando a transação"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -121295,18 +127268,18 @@ index 493f090..671115d 100644
 +msgstr "Recusa de importação automática das chaves ao executar de forma não assistida.\nUse \"-y\" para sobrescrever."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Talvez você queira dizer: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Nenhum pacote %s%s%s disponível."
@@ -121314,7 +127287,12 @@ index 493f090..671115d 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Pacotes a serem instalados"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -121323,13 +127301,13 @@ index 493f090..671115d 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nada a ser feito"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d pacotes marcados para atualização"
@@ -121339,12 +127317,12 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Nenhum pacote marcado para atualização"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d pacotes marcados para Sincronização da Distribuição"
@@ -121354,12 +127332,12 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Nenhum pacote marcado para a Sincronização da Distribuição"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d pacotes marcados para remoção"
@@ -121369,14 +127347,14 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -121384,13 +127362,13 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (a partir de %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "O pacote instalado %s%s%s%s não está disponível."
@@ -121398,7 +127376,7 @@ index 493f090..671115d 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Pacote(s) a ser(em) reinstalado(s)"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -121406,29 +127384,29 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nenhum pacote fornecido"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Pacotes a serem instalados"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, 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:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -121436,31 +127414,31 @@ index 493f090..671115d 100644
 +msgstr "  Nome completo e sumário correspondem %sonly%s, use \"search all\" para tudo."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Encontrado: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, 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:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Aviso: nenhum resultado para: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nenhum pacote localizado"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nenhum pacote localizado para %s"
@@ -121470,121 +127448,145 @@ index 493f090..671115d 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Limpando repositórios:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Limpando tudo"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Limpando cabeçalhos"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Limpando pacotes"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Limpando metadados em xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Limpando cache do banco de dados"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Limpando metadados expirados do cache"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Limpando dados rpmdb em cache"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Limpando plugins"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
--msgstr ""
-+msgstr "Aviso: Nenhum grupo correspondente: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
+ msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Grupos instalados:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
 +msgstr "Grupos de Idiomas Instalados:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Grupos disponíveis:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
--msgstr ""
 +msgstr "Grupos de Idiomas Disponíveis:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
+ msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Concluído"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Aviso: O grupo %s não existe."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Nenhum pacote disponível para instalação ou atualização nos grupos requisitados"
++
++#: ../cli.py:1885
++#, python-format
++msgid "%d package to Install"
++msgid_plural "%d packages to Install"
++msgstr[0] ""
++msgstr[1] ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, 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] ""
-+msgstr[1] ""
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Nenhum grupo de nome %s existe"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Nenhum pacote a ser removido a partir dos grupos"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d pacote(s) a ser(em) removido(s)"
@@ -121594,20 +127596,20 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "O pacote %s já está instalado, ignorando"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -121615,18 +127617,18 @@ index 493f090..671115d 100644
 +msgstr "Nenhum outro %s instalado, adicionado à lista para potencial instalação"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opções do plugin"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Erro na linha de comando: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -121639,111 +127641,111 @@ index 493f090..671115d 100644
 +msgstr "\n\n%s: a opção %s requer um argumento"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "--installroot deve ser um caminho absoluto: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "mostrar essa mensagem ajuda e sai"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "ser tolerante com os erros"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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"
 +msgstr "executar por completo a partir do cache do sistema, não atualiza o cache"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "configurar localização do arquivo"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "Tempo máximo de espera do comando"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nível de depuração na saída"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "nível de erro na saída"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "nível de depuração na saída para o rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "operação discreta"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "operação detalhada"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "responder sim para todas as perguntas"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "mostrar versão do Yum ao sair"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "definir raiz de instalação"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "habilitar um ou mais repositórios (curingas são permitidos)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "desabilitar um ou mais repositórios (curingas são permitidos)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "excluir pacote(s) por nome ou glob"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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 "
@@ -121751,247 +127753,255 @@ index 493f090..671115d 100644
 +msgstr "desabilitar a exclusão a partir do principal, para um repositório ou para tudo"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "Habilitar processo de obsolescência durante as atualizações"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "desabilitar plugins do Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "desabilitar verificação de assinaturas gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "desabilitar plugins pelo nome"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "habilita plugins pelo nome"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "ignorar pacotes com problemas de solução de dependências"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "controla o uso da cor"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "Configurando opções arbitrárias de repositório e configurações. "
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Fev"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Abr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Mai"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Ago"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Set"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Out"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Dez"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Tentando outro espelho."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Nome        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arquitetura        : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Época       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Versão     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Lançamento     : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Tamanho        : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Repo        : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Do repositório   : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Executor   : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Tempo de execução  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Tempo de compilação   : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Tempo de instalação: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Instalado por %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Alterado por : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Sumário     : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licença     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Descrição : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "s"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "sim"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "não"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Correto? [s/N]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -122002,167 +128012,191 @@ index 493f090..671115d 100644
 +msgstr "\nGrupo: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Group-Id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Descrição: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " Linguagem: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Pacotes obrigatórios:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Pacotes padrão:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Pacotes opcionais:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Pacotes condicionais:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "pacote: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Nenhuma dependência para este pacote"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  dependência: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Dependência não satisfeita"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Resultado a partir de:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licença     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Nome de arquivo    : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Outro       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Tamanho total: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Tamanho total do download: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Tamanho depois de instalado: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Houve um erro ao calcular o tamanho instalado"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Reinstalando"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Desatualizando"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Instalando para as dependências"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Atualizando para as dependências"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Removendo para as dependências"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Ignorado (problemas de dependências)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Não instalado"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Não disponível"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Pacote"
 +msgid_plural "Packages"
@@ -122170,33 +128204,33 @@ index 493f090..671115d 100644
 +msgstr[1] "Pacote"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arq."
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Versão"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Repo"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Tam."
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     substituindo  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -122212,7 +128246,7 @@ index 493f090..671115d 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Instalar  %5.5s Pacote(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Instalar"
  
@@ -122220,7 +128254,7 @@ index 493f090..671115d 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Atualizar   %5.5s Pacote(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr ""
  
@@ -122228,7 +128262,7 @@ index 493f090..671115d 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Remover     %5.5s Pacote(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr ""
  
@@ -122236,7 +128270,7 @@ index 493f090..671115d 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Reinstalar %5.5s Pacote(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Reinstalar"
  
@@ -122244,58 +128278,58 @@ index 493f090..671115d 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Desatualizar %5.5s Pacote(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Desatualizar"
-+
-+#: ../output.py:1544
+ 
+-#: ../output.py:1165
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
- 
--#: ../output.py:1165
-+#: ../output.py:1604
++
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Removido(s)"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Dependência(s) removida(s)"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Dependência(s) instalada(s)"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Dependência(s) atualizada(s)"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Substituído(s)"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Falhou"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dois"
  
-@@ -946,567 +972,598 @@ msgstr "dois"
+@@ -946,567 +1055,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -122308,269 +128342,269 @@ index 493f090..671115d 100644
 +msgstr "\n Download atual cancelado, %sinterrompa com (ctrl-c) novamente%s dentro de %s%s%s segundos\npara sair.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "interrupção do usuário"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Total"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<indefinido>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Sistema"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "Nenhuma transação"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  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:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "Linha de comando"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Usuário de login"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Data e hora"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Ação(ões)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Alterado"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Nenhum ID de transação fornecido"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "O ID de transação fornecido é inválido"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "O ID de transação dado não foi localizado"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  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:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Nenhum ID de transação ou pacote fornecido"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Desatualizados"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Antigo"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Recente"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "ID de transação:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Horário de início:"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Início do rpmdb:"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u segundos)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u minutos)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u horas)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u dias)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Horário do fim:"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Fim do rpmdb:"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Usuário:"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Código de retorno:"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Interrompido"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "Falhas:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Falha:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Sucesso"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Linha de comando  :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transação realizada com:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Pacotes alterados:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Pacotes ignorados: "
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Problemas com Rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Saída do scriptlet:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Erros:"
  
@@ -122579,17 +128613,17 @@ index 493f090..671115d 100644
 -msgstr "Instalar"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Dep-Install"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Obsoletos"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Apagar"
  
@@ -122602,228 +128636,230 @@ index 493f090..671115d 100644
 -msgstr "Desatualizar"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Atualizar"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Hora"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Ontem"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Uma semana atrás"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "2 semanas atrás"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "3 meses atrás"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "6 meses atrás"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Ano passado"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Há mais de um ano"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Nenhuma transação %s achada"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "ID da transação:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Informação adicional do histórico disponível:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "instalado"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
 +msgstr "uma atualização"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "removido"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "Reinstalado"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
 +msgstr "um downgrade"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "obsoleto"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "atualizado"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "obsoleto"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Executando verificação da transação"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Reiniciando resolução de dependências com as novas alterações."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Resolução de dependências finalizada"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Processando dependência: %s para o pacote: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Manter os  pacotes: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Manter os  pacotes: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Dependência não resolvida: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Pacote: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -122834,7 +128870,7 @@ index 493f090..671115d 100644
 +msgstr "\n    Requer: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -122845,7 +128881,7 @@ index 493f090..671115d 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -122856,7 +128892,7 @@ index 493f090..671115d 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -122867,33 +128903,33 @@ index 493f090..671115d 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Atualizado por"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Desatualizado por"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Obsoletado por"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Disponível"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Processando conflito: %s conflita com %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Construindo conjunto de transações com os pacotes selecionados. Por "
@@ -122901,7 +128937,7 @@ index 493f090..671115d 100644
 +msgstr "--> Construindo conjunto de transações com os pacotes selecionados. Por favor aguarde."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, 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."
@@ -122909,70 +128945,70 @@ index 493f090..671115d 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Executando"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Dormindo"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Ininterrompível"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zumbi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Rastreado/Parado"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Desconhecido"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  O outro aplicativo é: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  O outro aplicativo é: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memória: %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Iniciado: %s - %s atrás"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Estado: %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -122984,7 +129020,7 @@ index 493f090..671115d 100644
 +msgstr "\n\nSaindo pelo cancelamento do usuário"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -122996,7 +129032,7 @@ index 493f090..671115d 100644
 +msgstr "\n\nSaindo por um pipe defeituoso"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -123009,53 +129045,51 @@ index 493f090..671115d 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"No momento outro aplicativo está com a posse da trava do yum; saindo "
 -"conforme configurado pelo exit_on_lock"
-+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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Erro PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Error do Yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Error: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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"
 +msgstr " Você pode tentar usar o parâmetro --skip-broken para contornar o problema"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -123065,11 +129099,11 @@ index 493f090..671115d 100644
 +msgstr "\nDependências resolvidas"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Concluído!"
  
-@@ -1518,7 +1575,7 @@ msgstr ""
+@@ -1518,7 +1652,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Você precisa ser root para executar este comando."
  
@@ -123078,7 +129112,7 @@ index 493f090..671115d 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1533,585 +1590,604 @@ msgid ""
+@@ -1533,585 +1667,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -123112,51 +129146,71 @@ index 493f090..671115d 100644
  msgstr "Erro: É necessário passar uma lista de pacotes para %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Erro: É necessário um item para corresponder"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  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:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Erro: a limpeza requer uma opção: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Erro: argumento de limpeza inválido: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Nenhum argumento para o shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Nome de arquivo passado para o shell: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -123168,112 +129222,112 @@ index 493f090..671115d 100644
 +msgstr "Não há repositórios habilitados.\nExecute \"yum repolist all\" para ver os repositórios que você tem.\nVocê pode habilitar repositórios com yum-config-manager --enable <repositório>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PACOTE..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Instala um ou mais pacotes no seu sistema"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Configurando o processo de instalação"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PACOTE...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Atualiza um ou mais pacotes do seu sistema"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Configurando o processo de atualização"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  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:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Configurando o processo de Sincronização de Distribuição"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Pacotes instalados"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Pacotes disponíveis"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Pacotes extras"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Pacotes atualizados"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Tornando pacotes obsoletos"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Pacotes adicionados recentemente"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Nenhum pacote correspondente a ser listado"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Lista um pacote ou grupos de pacotes"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Remove um ou mais pacotes do seu sistema"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Configurando o processo de remoção"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Configurando o processo de grupos"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Não há grupos nos quais executar o comando"
  
@@ -123284,7 +129338,7 @@ index 493f090..671115d 100644
 -#: ../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:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -123292,79 +129346,79 @@ index 493f090..671115d 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Mostra detalhes sobre um grupo de pacotes"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Gera o cache de metadados"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Realizando cache de arquivos para todos os metadados."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Cache de metadados criado"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Remove os dados do cache"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Localiza qual pacote fornece o valor dado"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Verifica por atualizações de pacotes disponíveis"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Pesquisa detalhes do pacote para a string fornecida"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Pesquisando por pacotes:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Atualiza pacotes levando em conta os obsoletos"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Configurando o processo de atualização"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instala um RPM local"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Configurando o processo de pacote local"
  
@@ -123373,150 +129427,150 @@ index 493f090..671115d 100644
 -msgstr "Determina qual pacote fornece a dependência dada"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Pesquisando pacotes por dependência:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Executa um shell interativo do yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Configurando o shell do Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Lista as dependências de um pacote"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Localizando dependências:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Exibe os repositórios de software configurados"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "habilitado"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "desabilitado"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Repo-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Repo-name    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Repo-status  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Repo-revision: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Repo-tags    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Repo-distro-tags: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Repo-updated : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Repo-pkgs    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Repo-size    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Repo-baseurl : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Repo-metalink: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Atualizados :"
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Repo-mirrors : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Nunca (último: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Instante (último: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s segundo(s) (último: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Repo-expire  : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Repo-exclude : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Repo-include : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Repo-excluded: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Nome do Arquivo repo: "
@@ -123524,33 +129578,33 @@ index 493f090..671115d 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "id do repo"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "nome do repo"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Exibe uma mensagem de uso para ajuda"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Nenhuma ajuda disponível para %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -123562,7 +129616,7 @@ index 493f090..671115d 100644
 +msgstr "\n\napelidos: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -123574,190 +129628,216 @@ index 493f090..671115d 100644
 +msgstr "\n\napelido: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Configurando o processo de reinstalação"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "reinstala um pacote"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Configurando o processo de desatualização"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "desatualizando um pacote"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Grupos da versão do Yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grupo:"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Pacotes:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Instalados:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Grupos instalados:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Disponíveis:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Grupos disponíveis:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Exibir ou usar o histórico de transações"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Subcomando de histórico inválido, use: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Procurar por problemas no rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "Carregar uma transação salva de um nome de arquivo"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "Nenhum arquivo de transação salvo especificado."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "carregando transação de %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
--msgstr ""
 +msgstr "Transação carregada de %s com %s membros"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
+ msgstr ""
  
  #. 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/execute access in current directory, moving to /"
- msgstr ""
  
 -#: ../yummain.py:114
 -msgid ""
 -"Another app is currently holding the yum lock; waiting for it to exit..."
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
++#: ../yummain.py:98
++msgid "No read/execute access in current directory, moving to /"
  msgstr ""
 -"Outro aplicativo está retendo o bloqueio do yum; esperando por ele para "
 -"sair..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
--msgstr ""
-+msgstr "Não é possível criar o arquivo de bloqueio; saindo"
-+
-+#: ../yummain.py:134
-+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..."
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
+ msgstr ""
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Resolvendo dependências"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -123766,7 +129846,7 @@ index 493f090..671115d 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -123808,7 +129888,7 @@ index 493f090..671115d 100644
  msgstr "Membro: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s convertido para instalar"
@@ -123865,7 +129945,7 @@ index 493f090..671115d 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Modo para o pacote que fornece o %s: %s"
-@@ -2119,1026 +2195,1069 @@ msgstr "Modo para o pacote que fornece o %s: %s"
+@@ -2119,1026 +2318,1140 @@ 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 :(
@@ -123877,32 +129957,41 @@ index 493f090..671115d 100644
 +msgstr "Tentando atualizar %s para resolver a dependência"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
--msgstr ""
 +msgstr "Sem caminhos de atualização encontrados para %s. Falha!"
++
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
+ msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
 -msgstr ""
@@ -123910,20 +129999,20 @@ index 493f090..671115d 100644
 +msgstr "Não foi possível encontrar um caminho de atualização para a dep. para: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
 -msgstr ""
@@ -123931,7 +130020,7 @@ index 493f090..671115d 100644
 +msgstr "O pacote de solução em potencial %s tem uma instância mais nova no ct."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
 -msgstr ""
@@ -123939,75 +130028,75 @@ index 493f090..671115d 100644
 +msgstr "O pacote de solução em potencial %s tem uma instância mais nova instalada."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Sucesso - transação vazia"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Reiniciando o loop"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Término do processo de dependências"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Sucesso - dependências resolvidas"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Verificando dependências para %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "melhor arquitetura no po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s torna %s obsoleto"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -124018,25 +130107,25 @@ index 493f090..671115d 100644
 +msgstr "archdist comparou %s com %s em %s\n  Vencedor: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "Sourcerpm comum %s e %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "requer mínimo: %d"
@@ -124044,153 +130133,163 @@ index 493f090..671115d 100644
 +msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr "Vencedor: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "requer mínimo: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr "Perdedor(com %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Melhor ordem: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "plugins já inicializados"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Lendo RPMDB local"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Configurando sacos de pacotes"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Construindo objeto de atualizações"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Obtendo metadados do grupo"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Nenhum grupo disponível em nenhum repositório"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Obtendo metadados do pkgtags"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Adicionando tags do repositório: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importando informações adicionais da lista de arquivos"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -124200,25 +130299,58 @@ index 493f090..671115d 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "Versões multilib protegidas: %s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "Tentando remover \"%s\", que está protegido."
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -124228,14 +130360,14 @@ index 493f090..671115d 100644
 +msgstr "\nPacotes ignorados devido a problemas de dependências:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s a partir de %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -124244,22 +130376,22 @@ index 493f090..671115d 100644
 +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:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Aviso: o RPMDB foi alterado de fora do yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "faltando exigências"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "conflito instalado"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -124267,18 +130399,18 @@ index 493f090..671115d 100644
 +msgstr "Aviso: scriptlet ou outros erros não fatais ocorreram durante a transação."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  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:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Não foi possível executar a transação."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Falha ao remover o arquivo de transação %s"
@@ -124286,7 +130418,7 @@ index 493f090..671115d 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s deveria ter sido instalado mas não foi!"
@@ -124297,7 +130429,7 @@ index 493f090..671115d 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s deveria ter sido removido mas não foi!"
@@ -124315,32 +130447,32 @@ index 493f090..671115d 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Não foi possível abrir a trava %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Não foi possível verificar se o PID %s está ativo"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -124351,17 +130483,17 @@ index 493f090..671115d 100644
 +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:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Não foi possível realizar a soma de verificação"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "O pacote não corresponde à soma de verificação"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -124369,7 +130501,7 @@ index 493f090..671115d 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "usando cópia local do %s"
@@ -124380,18 +130512,21 @@ index 493f090..671115d 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Espaço insuficiente no diretório de download %s\n"
 -"    * livre   %s\n"
 -"    * necessário %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "O cabeçalho não está completo."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -124401,55 +130536,55 @@ index 493f090..671115d 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problema ao abrir o pacote %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "O pacote %s não está assinado"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Não foi possível remover %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s removido"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, 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:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s arquivo %s removido"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s arquivos removidos"
@@ -124459,19 +130594,19 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -124481,7 +130616,7 @@ index 493f090..671115d 100644
 +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:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Pesquisando por %d pacotes"
@@ -124491,113 +130626,127 @@ index 493f090..671115d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "pesquisando pelo pacote %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "pesquisando nas entradas do arquivo"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "pesquisando nas entradas dos fornecimentos"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, 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
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Adicionando o pacote %s do grupo %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
--msgstr ""
-+msgstr "Aviso: O Grupo %s não tem nenhum pacote."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
+ msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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"
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Nenhum pacote encontrado para %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  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:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nada especificado para instalar"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Verificando por fornecimento virtual ou de arquivo para %s"
@@ -124609,30 +130758,30 @@ index 493f090..671115d 100644
 -msgstr "Nenhuma correspondência para o argumento: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, 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:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Nenhum pacote disponível para instalar"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, 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:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -124642,7 +130791,7 @@ index 493f090..671115d 100644
 +msgstr "O pacote %s foi tornado obsoleto por %s, mas este não provê os requisitos."
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -124650,61 +130799,61 @@ index 493f090..671115d 100644
 +msgstr "O pacote %s foi tornado obsoleto por %s, tentando instalar %s ao invés disso"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Nenhuma correspondência para o argumento: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -124712,43 +130861,43 @@ index 493f090..671115d 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nenhum pacote encontrado para remoção"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Ignorando o kernel em execução: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Removendo %s da transação"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Examinando %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -124758,7 +130907,7 @@ index 493f090..671115d 100644
 +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:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -124766,7 +130915,7 @@ index 493f090..671115d 100644
 +msgstr "Não é possível instalar o pacote % s. É obsoleto pelo pacote instalado %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -124777,7 +130926,7 @@ index 493f090..671115d 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -124786,121 +130935,121 @@ index 493f090..671115d 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Excluindo %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Marcando %s para ser instalado"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, 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:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Nenhum pacote disponível para ser desatualizado"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Falha ao desatualizar: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
  #, python-format
 -msgid "Retrieving key from %s"
 +msgid "Failed to upgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr "Recuperando chave de %s"
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
 +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:5308
++#: ../yum/__init__.py:5768
  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:5316
++#: ../yum/__init__.py:5776
  #, 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:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -124914,7 +131063,7 @@ index 493f090..671115d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -124925,7 +131074,7 @@ index 493f090..671115d 100644
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -124936,30 +131085,30 @@ index 493f090..671115d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Chave importada com sucesso"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
 +msgstr "Não instalar nenhuma das chaves"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -124970,20 +131119,20 @@ index 493f090..671115d 100644
 +msgstr "As chaves GPG listadas para o repositório \"%s\" já estão instaladas, mas não estão corretas para este pacote.\nVerifique se as URLs corretas das chaves estão configuradas para esse repositório."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -124994,7 +131143,7 @@ index 493f090..671115d 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "A chave GPG em %s (0x%s) já foi importada"
@@ -125002,20 +131151,20 @@ index 493f090..671115d 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Falha na importação da chave"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -125026,123 +131175,125 @@ index 493f090..671115d 100644
 +msgstr "As chaves GPG listadas para o repositório \"%s\" já estão instaladas, mas não estão corretas.\nVerifique se as URLs das chaves estão configuradas corretamente para este repositório. "
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Não foi possível encontrar um espelho apropriado."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Foram encontrados erros ao baixar os pacotes."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Por favor, relate esse erro em %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Erros do teste de transação:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 +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:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, 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:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr "ignorando, conforme solicitado."
++msgstr "Não foi possível acessar/ler a transação salva %s : %s"
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
--msgstr ""
-+msgstr "abortando."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 +msgstr "ignorando, conforme pedido. Você deve rodar executar novamente o depsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
  msgstr ""
@@ -125245,7 +131396,7 @@ index 493f090..671115d 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s provê %s mas não pôde ser achado"
-@@ -3147,6 +3266,19 @@ msgstr "%s provê %s mas não pôde ser achado"
+@@ -3147,6 +3460,23 @@ msgstr "%s provê %s mas não pôde ser achado"
  msgid "Repackaging"
  msgstr "Reempacotando"
  
@@ -125254,7 +131405,7 @@ index 493f090..671115d 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -125262,10 +131413,14 @@ index 493f090..671115d 100644
 +"    * needed %s"
 +msgstr "Espaço insuficiente no diretório de download %s\n    * livre   %s\n    * necessário %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3159,9 +3291,7 @@ msgstr "O RPM %s não passou na verificação md5"
+@@ -3159,9 +3489,7 @@ msgstr "O RPM %s não passou na verificação md5"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -125276,7 +131431,7 @@ index 493f090..671115d 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3177,5 +3307,3 @@ msgstr "Cabeçalho %s danificado"
+@@ -3177,5 +3505,3 @@ msgstr "Cabeçalho %s danificado"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Erro ao abrir o rpm %s - erro %s"
@@ -125284,10 +131439,10 @@ index 493f090..671115d 100644
 -
 diff --git a/po/pt_PT.po b/po/pt_PT.po
 new file mode 100644
-index 0000000..e50576b
+index 0000000..f633c93
 --- /dev/null
 +++ b/po/pt_PT.po
-@@ -0,0 +1,3308 @@
+@@ -0,0 +1,3506 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
@@ -125298,9 +131453,9 @@ index 0000000..e50576b
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-06-15 23:01+0000\n"
-+"Last-Translator: Bruno Martins <bmomartins at yahoo.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/yum/language/pt_PT/)\n"
 +"MIME-Version: 1.0\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
@@ -125308,7 +131463,7 @@ index 0000000..e50576b
 +"Language: pt_PT\n"
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Atualizando"
 +
@@ -125316,26 +131471,26 @@ index 0000000..e50576b
 +msgid "Erasing"
 +msgstr "Apagando"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Instalando"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Obsoleto"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Atualizado"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Apagado"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Instalado"
 +
@@ -125357,7 +131512,7 @@ index 0000000..e50576b
 +msgid "Erased: %s"
 +msgstr "Apagado: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Removendo"
 +
@@ -125365,58 +131520,58 @@ index 0000000..e50576b
 +msgid "Cleanup"
 +msgstr "Limpeza"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "Comando \"%s\" já está definido"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Definindo repositórios"
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
 +msgstr "Lendo a metadata dos repositórios a partir de ficheiros locais"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Erro de configuração: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Erro de opções: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "Instalado: %s-%s em %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr "  Compilado    : %s em %s"
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr "  Submetido: %s em %s"
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Precisa de dar algum comando"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Comando inválido: %s. Por favor utilize %s --help"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Requisitos de disco:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -125425,323 +131580,374 @@ index 0000000..e50576b
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Sumário de erros\n-------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr "Tentando executar a transação, mas sem sucesso. Saindo."
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Saindo devido a ação do utilizador"
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Descarregando pacotes:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Erro descarregando pacotes:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr "Executando verficação de transação"
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "ERRO: Tem de atualizar o rpm para suportar:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr "ERRO com a transação check vs depsolve:"
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "RPM precisa de ser atualizado"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Por favor este erro em %s"
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "Correndo o teste de transição"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "Erro de verificação de transição:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "Teste de transição executado com sucesso"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "Correndo a transição"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr ""
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "* Talvez queira ter dito:"
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr ""
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr ""
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Nada a fazer"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Sem pacotes marcados para actualização"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Sem pacotes marcados para a sincronização de distribuição"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Sem pacotes marcados para remoção"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr ""
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr ""
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr ""
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr ""
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr ""
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr ""
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Nenhuma ocorrência encontrada"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr ""
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Limpando os repositórios: "
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Limpando Tudo"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Limpando os Cabeçalhos"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Limpando Pacotes"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Limpando os dados XML"
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Limpando a cache da base de dados"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr ""
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr ""
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Limpando os plugins"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Grupos Instalados:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Grupos Disponíveis:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Feito"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr ""
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr ""
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr ""
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr ""
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr ""
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr ""
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr ""
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Opções do Plugin"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr ""
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -125749,452 +131955,484 @@ index 0000000..e50576b
 +"%s: %s option requires an argument"
 +msgstr ""
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr ""
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr ""
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "mostra esta mensagem de ajuda e sai"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "sê tolerante a erros"
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "corre inteiramente através da cache do sistema, não actualiza a cache"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "localização do ficheiro de configuração"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr ""
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr ""
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr ""
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr ""
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr ""
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr ""
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr ""
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr ""
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr ""
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr ""
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr ""
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr ""
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr ""
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr ""
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr ""
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr ""
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr ""
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr ""
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr ""
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr ""
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr ""
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr ""
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Jan"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Fev"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Mar"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Abr"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "Mai"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr ""
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr ""
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr ""
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr ""
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr ""
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr ""
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr ""
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr ""
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr ""
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr ""
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr ""
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr ""
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr ""
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr ""
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr ""
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr ""
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr ""
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr ""
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr ""
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr ""
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr ""
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr ""
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr ""
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr ""
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr ""
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr ""
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr ""
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr ""
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr ""
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr ""
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr ""
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr ""
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr ""
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr ""
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr ""
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr ""
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr ""
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr ""
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr ""
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr ""
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr ""
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr ""
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr ""
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr ""
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr ""
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr ""
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr ""
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr ""
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr ""
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr ""
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr ""
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr ""
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr ""
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr ""
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr ""
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr ""
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr ""
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr ""
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr ""
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr ""
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -126202,58 +132440,58 @@ index 0000000..e50576b
 +"%s\n"
 +msgstr ""
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr ""
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr ""
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr ""
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr ""
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr ""
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr ""
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr ""
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr ""
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr ""
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr ""
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr ""
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr ""
 +
@@ -126261,7 +132499,7 @@ index 0000000..e50576b
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -126269,542 +132507,542 @@ index 0000000..e50576b
 +"to exit.\n"
 +msgstr ""
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr ""
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr ""
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr ""
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr ""
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr ""
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr ""
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr ""
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr ""
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr ""
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr ""
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr ""
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr ""
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr ""
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr ""
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr ""
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr ""
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr ""
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr ""
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr ""
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr ""
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr ""
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr ""
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr ""
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr ""
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr ""
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr ""
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr ""
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr ""
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr ""
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr ""
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr ""
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr ""
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr ""
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr ""
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr ""
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr ""
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr ""
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr ""
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr ""
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr ""
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr ""
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr ""
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr ""
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr ""
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr ""
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr ""
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr ""
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr ""
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr ""
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr ""
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr ""
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr ""
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr ""
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr ""
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr ""
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr ""
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr ""
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr ""
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr ""
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr ""
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr ""
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr ""
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr ""
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr ""
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr ""
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr ""
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr ""
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr ""
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr ""
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr ""
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr ""
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr ""
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr ""
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr ""
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr ""
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr ""
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr ""
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr ""
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr ""
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
 +msgstr ""
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr ""
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr ""
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr ""
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr ""
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr ""
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr ""
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr ""
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr ""
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr ""
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr ""
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr ""
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr ""
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr ""
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr ""
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr ""
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr ""
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr ""
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr ""
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr ""
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr ""
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr ""
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr ""
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr ""
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr ""
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr ""
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr ""
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -126812,47 +133050,41 @@ index 0000000..e50576b
 +"%s"
 +msgstr ""
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr ""
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr ""
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr ""
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr ""
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr ""
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr ""
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr ""
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr ""
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr ""
 +
@@ -126891,518 +133123,564 @@ index 0000000..e50576b
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr ""
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr ""
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr "Erro: limpar exige uma opção: %s"
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Erro: argumento de limpeza inválido: %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr ""
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr ""
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr ""
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr ""
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr ""
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr ""
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr ""
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr ""
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr ""
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr ""
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr ""
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr ""
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr ""
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr ""
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr ""
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr ""
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr ""
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr ""
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr ""
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr ""
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr ""
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr ""
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr ""
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr ""
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr ""
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr ""
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr ""
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr ""
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr ""
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr ""
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr ""
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr ""
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr ""
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr ""
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr ""
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr ""
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr ""
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr ""
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr ""
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr ""
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr ""
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr ""
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr ""
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr ""
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr ""
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr ""
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr ""
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr ""
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr ""
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr ""
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr ""
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr ""
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr ""
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr ""
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr ""
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr ""
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -127432,7 +133710,7 @@ index 0000000..e50576b
 +msgid "Member: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr ""
@@ -127489,326 +133767,380 @@ index 0000000..e50576b
 +msgid "Trying to update %s to resolve dep"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr ""
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr ""
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr ""
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr ""
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr ""
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr ""
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr ""
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr ""
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr ""
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, 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:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr ""
@@ -127818,462 +134150,482 @@ index 0000000..e50576b
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr ""
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr ""
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr ""
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, python-format
 +msgid ""
 +"Package does not match intended download. Suggestion: run yum "
 +"--enablerepo=%s clean metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr ""
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr ""
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr ""
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
 +msgstr ""
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr ""
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, python-format
 +msgid ""
 +"Package %s.%s not installed, cannot update it. Run yum install to install it"
 +" instead."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +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:5306
++#: ../yum/__init__.py:5766
 +#, python-format
 +msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -128283,7 +134635,7 @@ index 0000000..e50576b
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -128292,7 +134644,7 @@ index 0000000..e50576b
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -128302,44 +134654,44 @@ index 0000000..e50576b
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -128350,123 +134702,120 @@ index 0000000..e50576b
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr ""
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr ""
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
-+msgstr ""
-+
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr ""
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -128560,7 +134909,7 @@ index 0000000..e50576b
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -128568,6 +134917,10 @@ index 0000000..e50576b
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -128607,10 +134960,10 @@ index 276a433..7f13138 100644
  #
  # minimally patched to make it even more xgettext compatible 
 diff --git a/po/ru.po b/po/ru.po
-index 52ba58b..a3886af 100644
+index 52ba58b..daba5d6 100644
 --- a/po/ru.po
 +++ b/po/ru.po
-@@ -2,950 +2,981 @@
+@@ -2,950 +2,1064 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -128618,7 +134971,7 @@ index 52ba58b..a3886af 100644
 -# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011
 +# Translators:
 +# Misha Shnurapet <shnurapet AT fedoraproject.org>, 2011.
-+# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011, 2012.
++# Misha Shnurapet <shnurapet at fedoraproject.org>, 2011-2012.
 +# Игорь Горбунов <igor.gorbounov at gmail.com>, 2012.
  msgid ""
  msgstr ""
@@ -128629,9 +134982,9 @@ index 52ba58b..a3886af 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Russian (http://www.transifex.net/projects/p/yum/team/ru/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-04-23 13:43+0000\n"
-+"Last-Translator: Misha Shnurapet <shnurapet at fedoraproject.org>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Russian (http://www.transifex.com/projects/p/yum/language/ru/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -128641,7 +134994,7 @@ index 52ba58b..a3886af 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Обновление"
  
@@ -128652,31 +135005,31 @@ index 52ba58b..a3886af 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "Исключено"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Обновлено"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Установлено"
  
@@ -128703,7 +135056,7 @@ index 52ba58b..a3886af 100644
  msgstr "Удален: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Удаление"
  
@@ -128713,69 +135066,69 @@ index 52ba58b..a3886af 100644
  msgstr "Очистка"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Команда \"%s\" уже используется"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Настройка репозиториев"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Чтение локальных метаданных для репозиториев"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Ошибка в настройке: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Ошибка в параметре: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Установлено: %s-%s из %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Собрано    : %s из %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Передано   : %s из %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Необходимо задать команду"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "Не найдена команда: %s Пожалуйста, воспользуйтесь %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Требование к носителю:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr " Необходимо по меньшей мере %dМБ на разделе %s.\n"
@@ -128787,7 +135140,7 @@ index 52ba58b..a3886af 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -128795,75 +135148,97 @@ index 52ba58b..a3886af 100644
 -"Сводка ошибок\n"
 -"-------------\n"
 +msgstr "Сводка ошибок\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Не удалось создать файл блокировки; завершение"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Другое приложение удерживает данные Yum; выход согласно exit_on_lock"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr "Попытка предпринята, делать нечего. Завершение."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " игнорирование, как потребуется"
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " прерывание"
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Выход по запросу пользователя"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Загрузка пакетов:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Ошибка загрузки пакетов:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Проверка сценария"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr "ОШИБКА — необходимо обновить RPM для обработки:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "ОШИБКА при проверке сценария на этапе зависимостей:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "Следует обновить RPM"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Пожалуйста, сообщите об ошибке в %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Проверяем сценарий"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Проверка сценария завершена с ошибкой:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Проверка сценария прошла успешно"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Выполнение сценария"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -128873,18 +135248,18 @@ index 52ba58b..a3886af 100644
 +msgstr "Отмена автоматического импорта ключей во время запуска без контроля.\nИспользуйте \"-y\" для игнорирования."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Возможно, вы имели в виду: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Пакета с названием %s%s%s не найдено."
@@ -128892,7 +135267,12 @@ index 52ba58b..a3886af 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Пакет(ы) для установки"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -128902,13 +135282,13 @@ index 52ba58b..a3886af 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Выполнять нечего"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d пакеты отмечены для обновления"
@@ -128919,12 +135299,12 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов помечено для обновления"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Пакетов, отмеченных для обновления, нет."
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "Отмечено пакетов для синхронизации: %d"
@@ -128935,12 +135315,12 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов помечено для синхронизации"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Пакетов, отмеченных для синхронизации, нет"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d пакеты отмечены для удаления"
@@ -128951,14 +135331,14 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов помечено к удалению"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "Пакетов, отмеченных для удаления, нет."
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "Пакет(ы) для отката версии"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -128967,13 +135347,13 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов для отката"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (из %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Установленный пакет %s%s%s%s недоступен."
@@ -128981,7 +135361,7 @@ index 52ba58b..a3886af 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Пакет(ы) для переустановки"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -128990,22 +135370,22 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов для переустановки"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Пакеты не предоставлены"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Пакет(ы) для установки"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "Совпадений: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -129014,7 +135394,7 @@ index 52ba58b..a3886af 100644
 +msgstr "  Показаны %sтолько%s совпадения по названиям и описаниям, для большего используйте «search all»."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -129024,13 +135404,13 @@ index 52ba58b..a3886af 100644
 +msgstr "  Показаны %sтолько%s полные совпадения по названиям и описаниям, для большего используйте «search all»."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Совпадений: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -129039,18 +135419,18 @@ index 52ba58b..a3886af 100644
 +msgstr "  Показаны %sв основном%s совпадения по названияю и описанию, для большего используйте «search all»."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Внимание: совпадений для %s не найдено"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Совпадений не найдено"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Пакет для %s не найден"
@@ -129060,96 +135440,117 @@ index 52ba58b..a3886af 100644
 +msgstr "Ошибка: не найдено пакетов для:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Сброс источников:"
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Очистка всего"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Очистка заголовков"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Очистка пакетов"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Очистка xml метаданных"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Очистка кэша данных"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Очистка устаревшего кэша"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Очистка кэша данных базы RPM"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Сброс модулей"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Предупреждение: Ни одна группа не совпадает: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Предупреждение: Ни одна группа не совпадает: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Установлены коллекции:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Установлены языковые пакеты:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Доступные коллекции:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Доступные языковые пакеты:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Выполнено"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Внимание: коллекции %s не существует."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"Во всех указанных коллекциях пакеты для установки или обновления отсутствуют"
 +msgstr "Во всех указанных коллекциях пакеты для установки или обновления отсутствуют"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
 -msgstr "%d Пакет(ы) для установки"
@@ -129158,20 +135559,26 @@ index 52ba58b..a3886af 100644
 +msgstr[0] "%d пакет к установке"
 +msgstr[1] "%d пакета к установке"
 +msgstr[2] "%d пакетов к установке"
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Коллекции с названием %s не существует"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Нет пакетов для удаления из коллекций"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d Пакет(ы) для удаления"
@@ -129182,37 +135589,37 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d пакетов к удалению"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Пакет %s уже установлен, пропускаем"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr "Других %s не установлено, добавляем в список для возможной установки"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Опции модуля"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Ошибка команды: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -129225,362 +135632,369 @@ index 52ba58b..a3886af 100644
 +msgstr "\n\n%s: %s опцию необходимо указать с аргументом"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color возможное значение: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "--installroot должен указывать абсолютный путь: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "отобразить помощь и выйти"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "игнорировать ошибки"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "брать полностью из системного кэша, не обновлять его"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "расположение файла конфигурации"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "максимальное время ожидания команды"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "уровень отладочных сообщений"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr ""
 -"показывать повторяющиеся в репозиториях пакеты, для команд list/search"
 +msgstr "показывать повторяющиеся в репозиториях пакеты, для команд list/search"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "уровень сообщений об ошибках"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "уровень отладочных сообщений для rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "работать без вывода сообщений"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "подробно описывать действия"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "Отвечать утвердительно на все вопросы"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "ответ нет для всех вопросов"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "показать версию Yum и выйти"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "настройка корневой папки"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"включение одного и более репозиториев (поиск по шаблону поддерживается)"
 +msgstr "включение одного и более репозиториев (поиск по шаблону поддерживается)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"выключение одного и более репозиториев (поиск по шаблону поддерживается)"
 +msgstr "выключение одного и более репозиториев (поиск по шаблону поддерживается)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "исключение пакета(ов) по имени или регулярному выражению"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr "отключает исключения для конкретного репозитория или для всех"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "включить обработку устаревших во время обновления"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "отключить модули Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "отключить проверку подписи gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "отключить модуль по названию"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "включить модуль по названию"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "пропускать пакеты, с проблемами в зависимостях"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "Использовать ли цветовые схемы"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
--msgstr ""
++msgstr "установите значение $releasever в конфигурационном файле Yum и в файлах репозиториев (repo)"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
+ msgstr ""
 -"установите значение $releasever в конфигурационном файле yum и в файлах "
 -"репозиториев (repo)"
-+msgstr "установите значение $releasever в конфигурационном файле Yum и в файлах репозиториев (repo)"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "другие настройки и свойства источников"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "Янв"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "Фев"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "Мар"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "Апр"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "Май"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "Июн"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "Июл"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "Авг"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "Сен"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "Окт"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "Ноя"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "Дек"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Пробуем другое зеркало."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Название: %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Архитектура: %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Период: %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Версия: %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Выпуск: %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Объем: %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Источник: %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Из источника: %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Создатель: %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Время создания: %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Время сборки: %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Время установки: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Установил: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Изменил: %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Аннотация: "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "Ссылка: %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Лицензия: "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Описание: "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "да"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "нет"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Продолжить? [y/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -129591,166 +136005,190 @@ index 52ba58b..a3886af 100644
 +msgstr "\nКоллекция: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Код коллекции: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Описание: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Язык: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Обязательные пакеты:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Пакеты по умолчанию:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Опциональные пакеты:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Зависимые пакеты:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Установленные пакеты:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "пакет: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  У этого пакета нет зависимостей"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  зависимость: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Неудовлетворенная зависимость"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Совпадения с:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Лицензия    : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Имя файла   : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Обеспечивает    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Другое      : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Произошла ошибка при подсчете общего объема загрузки"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Общий размер: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Объем загрузки: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Объем изменений: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Ошибка при подсчете объема установки"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Переустановка"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Откат версии"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Установка зависимостей"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Обновление зависимостей"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Удаление зависимостей"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Пропущено (ошибка зависимостей)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Не установлено"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Недоступно"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Пакет"
 +msgid_plural "Packages"
@@ -129759,33 +136197,33 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "пакетов"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Архитектура"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Версия"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Репозиторий "
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Размер"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     замена  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -129801,7 +136239,7 @@ index 52ba58b..a3886af 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Установить %5.5s пакет(а,ов)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Установить"
  
@@ -129809,7 +136247,7 @@ index 52ba58b..a3886af 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Обновить %5.5s пакет(а,ов)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Обновить"
  
@@ -129817,7 +136255,7 @@ index 52ba58b..a3886af 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Удалить %5.5s пакет(а,ов)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Удалить"
  
@@ -129825,7 +136263,7 @@ index 52ba58b..a3886af 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Переустановить %5.5s пакет(а,ов)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Переустановить"
  
@@ -129833,11 +136271,11 @@ index 52ba58b..a3886af 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Откатить %5.5s пакет(а,ов)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Откатить"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "зависимый"
@@ -129845,47 +136283,47 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "зависимых"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Удалено"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Удалены зависимости"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Установлены зависимости"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Обновлены зависимости"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Заменено"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Неудача"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "двух"
  
-@@ -953,563 +984,598 @@ msgstr "двух"
+@@ -953,563 +1067,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -129898,262 +136336,262 @@ index 52ba58b..a3886af 100644
 +msgstr "\n Текущая загрузка отменена, %sпрервите (ctrl-c) повторно%s в течение %s%s%s секунд,\nчтобы выйти.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "прервано пользователем"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Общий размер"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<unset>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Система"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr "Переход от %d к %d, т.к. сценарии пересекаются"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Сценарии отсутствуют"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Заданы неверный код сценария или пакеты"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Командная строка"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Вход пользователя"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Дата и время"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Действия"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Изменено"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Код действия не задан"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Код действия неверен"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Указанный код действия не найден"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Указано более одной операции!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Не задан код действия или пакет"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Откачено"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Старее"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Новее"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Код операции   :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Время начала   :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Начало rpmdb   :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u секунд)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u минут)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u часов)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u дней)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Конечное время :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Конец rpmdb    :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Пользователь   :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Код возврата   :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Прекращено"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Ошибки:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Неудача:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Успешно"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Команда:"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr "Имеется дополнительная информация: %d"
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Действие выполнено:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Пакеты изменены:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Пропущены пакеты:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Ошибки в rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Вывод сценария:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Ошибки:"
  
@@ -130162,17 +136600,17 @@ index 52ba58b..a3886af 100644
 -msgstr "Установка "
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Установка зависимостей"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Исключаем"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Удаление"
  
@@ -130185,227 +136623,229 @@ index 52ba58b..a3886af 100644
 -msgstr "Откат версии"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Обновление"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Время"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "За последний день"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "За последнюю неделю"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "За последние 2 недели"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "За последние 3 месяца"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "За последние 6 месяцев"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "За последний год"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Более года назад"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Действие %s не найдено"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Код операции:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Имеется информация о ранних действиях:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: По этому названию других данных нет"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Пакет        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Состояние      :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Размер           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Узел сборки    :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Время сборки   :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Сборщик        :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Поставщик      :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Лицензия        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Исходный RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Получено       :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Отправитель    :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Причина         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Репозиторий    :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Установлен   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Изменен     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "для установки"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr "обновление"
 +msgstr "как обновление"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "для удаления"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "для переустановки"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr "откат"
 +msgstr "как версия для отката"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr "исключение"
 +msgstr "для исключения"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "для обновления"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "как недействительный"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr "---> Пакет %s.%s %s:%s-%s помечен %s"
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Проверка сценария"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Перепроверка зависимостей с новыми параметрами."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Проверка зависимостей окончена"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Обработка зависимостей: %s пакета: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Сохранен пакет: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Сохранен пакет: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Неразрешённая зависимость: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Пакет: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -130416,7 +136856,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n    Необходимо: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -130427,7 +136867,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -130438,7 +136878,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -130449,40 +136889,40 @@ index 52ba58b..a3886af 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Обновил"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Откатил"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Заменил"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Доступно"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Обработка конфликта: %s конфликтует с %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Заполнение списка действий выбранными пакетами. Подождите, пожалуйста."
 +msgstr "--> Заполнение списка действий выбранными пакетами. Подождите, пожалуйста."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Загрузка заголовка %s для включения в список."
@@ -130490,70 +136930,70 @@ index 52ba58b..a3886af 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Проверка"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Запуск"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Ожидание"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Непрерываемый"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Зомби"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Трассировано/Остановлено"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Неизвестно"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Другое приложение: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Другое приложение: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Память   : %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Запущено : %s — %s назад"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Статус   : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -130565,7 +137005,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n\nВыход по запросу пользователя"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -130577,7 +137017,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n\nВыход из-за разрыва связи"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -130587,52 +137027,50 @@ index 52ba58b..a3886af 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr "Другое приложение удерживает данные yum; выход согласно exit_on_lock"
-+msgstr "Другое приложение удерживает данные Yum; выход согласно exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Ошибка PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Ошибка Yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Ошибка: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
  msgstr " Вы можете попробовать --skip-broken чтобы обойти проблему"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Неизвестная ошибка(ошибки): Код выхода: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -130642,11 +137080,11 @@ index 52ba58b..a3886af 100644
 +msgstr "\nЗависимости определены"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Выполнено!"
  
-@@ -1521,7 +1587,7 @@ msgstr " Сокращённое использование:\n"
+@@ -1521,7 +1664,7 @@ msgstr " Сокращённое использование:\n"
  msgid "You need to be root to perform this command."
  msgstr "Для выполнения этой команды необходимы привилегии суперпользователя."
  
@@ -130655,7 +137093,7 @@ index 52ba58b..a3886af 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1536,479 +1602,490 @@ msgid ""
+@@ -1536,586 +1679,653 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -130689,40 +137127,60 @@ index 52ba58b..a3886af 100644
  msgstr "Ошибка: Необходимо указать список пакетов для %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Ошибка: Необходим параметр для соответствия"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Ошибка: нужна коллекция или список групп"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Ошибка: очистка требует опции: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Ошибка: неверный параметр очистки: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Нет аргумента для командной оболочки"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Имя файла принятое для командной оболочки: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
@@ -130731,7 +137189,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Файл %s переданный в качестве аргумента для командной оболочки не существует."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
 -msgstr ""
 -"Ошибка: более чем один файл указан в качестве аргумента для командной "
@@ -130739,7 +137197,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Ошибка: более чем один файл указан в качестве аргумента для командной оболочки."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -130751,112 +137209,112 @@ index 52ba58b..a3886af 100644
 +msgstr "Все источники пакетов отключены.\nВыполните «yum repolist all» для вывода списка доступных.\nВключение производится командой yum-config-manager --enable [источник]"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "ПАКЕТ..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Установка пакета(ов) в систему"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Подготовка к установке"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[ПАКЕТ...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Обновление пакета(ов) в системе"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Подготовка к обновлению"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "Обновить установленные пакеты до новейших доступных версий"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Подготовка к синхронизации"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "Отобразить информацию о пакете или о коллекции пакетов"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Установленные пакеты"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Доступные пакеты"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Дополнительные пакеты"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Обновленные пакеты"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Исключенные пакеты"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Недавно добавленные пакеты"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Совпадений среди пакетов не найдено"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Вывести список пакетов или коллекций пакетов"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Удаление пакета(ов) из системы"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Подготовка к удалению"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Отображать и использовать данные о коллекциях"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Подготовка к обработке коллекции"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Коллекций пакетов к обработке нет"
  
@@ -130867,7 +137325,7 @@ index 52ba58b..a3886af 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Установка коллекции пакетов в систему"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Некорректная команда для коллекции, используйте: %s"
@@ -130875,79 +137333,79 @@ index 52ba58b..a3886af 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Удаление коллекции пакета(ов) из системы"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Нет установленного файла групп."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Показать информацию о коллекции пакетов"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "У вас нет доступа к базе данных групп."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Создание кэша метаданных"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Создание кэша для всех метаданных файлов."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr "Это займет немного времени, в зависимости от скорости компьютера"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Кэш метаданных создан"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Удаление кэшированных данных"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Найти пакет по заданному значению"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Проверка доступных обновлений пакетов"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Поиск информации о пакете по заданной строке"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Поиск пакетов:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Обновить пакеты, учитывая недействительные"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Приготовления к процессу обновления"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Установка локального пакета"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Подготовка действий с локальным пакетом"
  
@@ -130956,151 +137414,151 @@ index 52ba58b..a3886af 100644
 -msgstr "Определяет какой пакет предоставляет данную зависимость"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Поиск зависимых пакетов"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
 -msgstr "Запуск интерактивной командной оболочки yum"
 +msgstr "Запуск интерактивной командной оболочки Yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Настройка командной оболочки Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Отображение зависимостей пакета"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Поиск зависимостей:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Отобразить сконфигурированные репозитории ПО"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "включено"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "отключено"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Код репозитория      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Имя репозитория      : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Состояние репозитория: "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Ревизия репозитория  : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Метки репозитория    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Метки дистрибутива   : "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Репозиторий обновлен : "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Пакеты репозитория   : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Размер репозитория   : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "baseurl репозитория  : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "metalink репозитория : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Обновлено          : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Зеркала репозитория  : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Никогда (последний: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "момент (осталось:%s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s секунд(а) (осталось: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Окончание срока репозитория: "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Исключения репозитория     : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Включено в репозиторий     : "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Исключено из репозитория   : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Файл репозитория:"
@@ -131108,33 +137566,33 @@ index 52ba58b..a3886af 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "Идентификатор репозитория"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "состояние"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "репозиторий"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Отобразить подсказку к использованию"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Помощь недоступна для %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -131146,7 +137604,7 @@ index 52ba58b..a3886af 100644
 +msgstr "\n\nальтернативные названия: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -131158,148 +137616,189 @@ index 52ba58b..a3886af 100644
 +msgstr "\n\nальтернативное название: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Подготовка к повторной установке"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "переустановка пакета"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Подготовка к откату версии"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "откат к предыдущей версии пакета"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr "Отображает версию для вашей архитектуры и/или доступные репозитории."
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Группы версий Yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Коллекция   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Пакеты      :"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Установлен(ы):"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Установлены коллекции:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Доступен(ы):"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Доступны коллекции   :"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Отобразить (или использовать) журнал операций"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Транзакции:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Время начала :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Время оканчивания :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Количество:"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  база данных rpm :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  база данных Yum :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Неверная подкоманда журнала, используйте: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "Нет доступа к спискам предыдущих действий."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Проверка проблем в базе данных RPM"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "загрузить сохранённый сценарий из файла"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Не указан файл сценария."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "загрузка сценария из %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Сценарий загружен из %s с %s членами"
-@@ -2019,103 +2096,110 @@ msgstr "Сценарий загружен из %s с %s членами"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Неудачных проверок Yum: %s"
  
@@ -131307,32 +137806,25 @@ index 52ba58b..a3886af 100644
 -msgid ""
 -"Another app is currently holding the yum lock; waiting for it to exit..."
 -msgstr "Еще одно приложение, в настоящее время блокирует Yum. Подождите..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Чтение и запуск в текущем каталоге невозможны, переход в /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Не удалось создать файл блокировки; завершение"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "В текущем каталоге нет доступа к getcwd(), переходим к /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Не удалось создать файл блокировки; завершение"
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Ещё одно приложение в настоящее время блокирует Yum. Подождите..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Разрешение зависимостей"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr "Сценарий сохранён, запускайте командой: yum-load-transaction %s"
@@ -131342,7 +137834,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Текущее действие сохранено. Чтобы повторить его, выполните:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -131382,7 +137874,7 @@ index 52ba58b..a3886af 100644
  msgstr "Член: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s преобразован для установки"
@@ -131440,7 +137932,7 @@ index 52ba58b..a3886af 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Режим для пакета, предоставяющего %s: %s"
-@@ -2123,1028 +2207,1071 @@ msgstr "Режим для пакета, предоставяющего %s: %s"
+@@ -2123,1028 +2333,1142 @@ 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 :(
@@ -131451,19 +137943,29 @@ index 52ba58b..a3886af 100644
  msgstr "Пробую обновить %s чтобы решить зависимость"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr "Не найдено путей обновления для %s. Срыв!"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr "TSINFO: %s пакет необходимый для %s был помечен для удаления"
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -131471,112 +137973,112 @@ index 52ba58b..a3886af 100644
 +msgstr "TSINFO: Замена устаревшего %s пакета пакетом %s чтобы разрешить зависимости."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: Обновление %s для разрешения зависимостей."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr "Не удается найти путь обновления зависимости для: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr "Быстро подобран пакет %s в качестве требуемого для %s"
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr "Зависимый пакет %s уже установлен и будет пропущен"
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr "Пакет %s в сценарии новее доступного"
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr "Более новый пакет %s уже установлен в систему."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s уже в списке к действию, пропускаем его"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr "TSINFO: %s отмечен как обновление для %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Успешно — пустой сценарий"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Перезапуск цикла"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Завершение процесса разрешения зависимостей"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Успешно — зависимости определены"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Проверка зависимостей для %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr "поиск %s требуется для %s"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "Запуск compare_providers() для %s"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "Лучший архив в %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s исключает %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -131587,25 +138089,25 @@ index 52ba58b..a3886af 100644
 +msgstr "Сравнение archdist %s с %s в %s\n  Лучший: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "общий источник RPM %s и %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "базовый пакет %s установлен для %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr "Общий префикс %s для %s и %s"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "минимально: %d"
@@ -131613,153 +138115,163 @@ index 52ba58b..a3886af 100644
 +msgstr "обеспечивает vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr "Лучший: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "минимально: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr "Худший (c %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Лучший выбор: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr "doConfigSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "Источник %r: Сбой обработки настроек: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr "Репозиторий %r  не имеет названия в конфигурации, используется ID"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "модули уже загружены"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr "doRpmDBSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Чтение локальной базы данных RPM"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr "doRepoSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr "doSackSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Настройка набора пакетов"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr "Объект репозитория %s не имеет метода _resetSack\n"
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "поэтому этот репозиторий не может быть сброшен.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr "doUpdateSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Построение объекта обновлений"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr "doGroupSetup() будет устранен в следующей версии Yum.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Получение метаданных коллекции"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Добавление файла коллекций из репозитория: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr "Ошибка добавления файла коллекций для репозитория: %s — %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Ни в одном репозитории нет доступных коллекций"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Загрузка метаданных меток пакета"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Добавление меток из репозитория: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr "Ошибка добавление меток пакета для репозитория: %s — %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Импорт дополнительной информации о списке файлов"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -131769,24 +138281,58 @@ index 52ba58b..a3886af 100644
 +msgstr "Остались незавершенные действия. Возможно, сначала следует выполнить yum-complete-transaction для их завершения."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Поиск ненужных остаточных зависимостей"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Защищённые версии multilib: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "Попытка удаления защищенного «%s»"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -131796,53 +138342,53 @@ index 52ba58b..a3886af 100644
 +msgstr "\nПакеты пропущены из-за проблем с зависимостями:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s из %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, 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:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
 -msgstr "ПРЕДУПРЕЖДЕНИЕ: база данных RPM была изменена вне yum."
 +msgstr "ПРЕДУПРЕЖДЕНИЕ: база данных RPM была изменена вне Yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "недостающие зависимости"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "установленный конфликтующий пакет"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr "Внимание: в ходе операции возникли некоторые некритические ошибки."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Операция не начата:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Невозможно выполнить действие."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Невозможно удалить файл сценария %s"
@@ -131850,7 +138396,7 @@ index 52ba58b..a3886af 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s должен был быть установлен, но не был установлен!"
@@ -131861,14 +138407,14 @@ index 52ba58b..a3886af 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s должен был быть удален, но не был удален!"
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr "Невозможно открыть блокировку %s: %s"
@@ -131877,7 +138423,7 @@ index 52ba58b..a3886af 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "Невозможно проверить активен ли процесс %s"
@@ -131886,7 +138432,7 @@ index 52ba58b..a3886af 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 -msgstr "Заблокировано %s: другая копия запущена pid %s."
@@ -131896,7 +138442,7 @@ index 52ba58b..a3886af 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 -msgstr "Вы не можете создать блокировку %s: %s "
@@ -131904,7 +138450,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Невозможно проверить активен ли процесс %s"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -131915,23 +138461,23 @@ index 52ba58b..a3886af 100644
 +msgstr "Пакет не соответствует предложенному для загрузки.\r\nПредлагается выполнить: yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Невозможно проверить контрольную сумму"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Пакет не совпадает с контрольной суммой"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "использование локальной копии %s"
@@ -131942,18 +138488,21 @@ index 52ba58b..a3886af 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Недостаточно места в директории %s\n"
 -"    * свободно   %s\n"
 -"    * необходимо %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Заголовок не полный."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -131963,55 +138512,55 @@ index 52ba58b..a3886af 100644
 +msgstr "Заголовок не в локальном кэше. Включен режим только из кэша. Невозможно загрузить %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "Публичный ключ для %s не установлен"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Проблема открытия пакета %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "Публичный ключ для %s не заслуживает доверия"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Пакет %s не подписан"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Невозможно удалить %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s удален(ы)"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Невозможно удалить %s файл %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s файл %s удален"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s файлы удалены"
@@ -132022,19 +138571,19 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "%d %s файлов удалены"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr "Более одного идентичных совпадений найдено в наборе для %s"
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -132044,7 +138593,7 @@ index 52ba58b..a3886af 100644
 +msgstr "searchPackages() будет убрано в следующей версии Yum.                          Используйте searchGenerator() взамен.  \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Поиск %d пакетов"
@@ -132055,114 +138604,130 @@ index 52ba58b..a3886af 100644
 +msgstr[2] "Поиск %d пакетов"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "поиск пакета %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "поиск среди файлов"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "поиск по содержимому"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "Коллекции с названием %s не существует"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "пакет %s не отмечен в коллекции %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Пропуск пакета %s из группы %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Добавление пакета %s из коллекции %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "Пакет с именем %s не доступен для установки"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Предупреждение: Группа %s не имеет никаких пакетов."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Предупреждение: Группа %s не имеет никаких пакетов."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
--msgstr ""
++msgstr "Коллекция %s действительно содержит %u условных пакетов, и возможна их установка."
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
+ msgstr ""
 -"Коллекция %s действительно содержит %u условных пакетов, и возможна их "
 -"установка."
-+msgstr "Коллекция %s действительно содержит %u условных пакетов, и возможна их установка."
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr "Кортеж пакетов %s не найден в наборе пакетов"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr "Неверный флаг версии от: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Пакет %s не найден"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Package Object не является экземпляром объекта пакета"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Ничего не отмечено для установки"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Проверка виртуального провайдера или файлового провайдера для %s"
@@ -132174,30 +138739,30 @@ index 52ba58b..a3886af 100644
 -msgstr "Совпадений с %s не найдено."
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Пакет %s уже установлен и недоступен"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Нет доступных для установки пакетов"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Пакет: %s — уже в списке к действию"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr "Пакет %s недействителен из-за установленного %s"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -132206,67 +138771,67 @@ index 52ba58b..a3886af 100644
 +msgstr "Пакет %s заменён %s, но последний не отвечает зависимостям"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr "Пакет %s уже установлен, и это последняя версия."
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "Полное обновление"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Совпадений с %s не найдено."
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Ни один пакет не отмечен для обновления: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr "Устаревший необновляемый пакет: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
  msgstr "Необновленный пакет, который был обновлен ранее: %s.%s %s:%s-%s"
@@ -132274,43 +138839,43 @@ index 52ba58b..a3886af 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Нет пакетов для удаления"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Ни один пакет не отмечен для удаления: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Пропуск выполняющегося ядра: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Исключение %s из списка действий"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr "Невозможно открыть: %s. Пропуск."
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Проверка %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -132320,13 +138885,13 @@ index 52ba58b..a3886af 100644
 +msgstr "Невозможно добавить пакет %s в список действий. Несовместимая архитектура: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr "Установка пакета %s невозможна. Его заменил установленный пакет %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -132337,7 +138902,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Пакет %s не установлен, невозможно обновить его. Запустите yum install для его установки."
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -132348,95 +138913,95 @@ index 52ba58b..a3886af 100644
 +msgstr "Пакет %s.%s не установлен, не возможно его обновить. Запустите yum install чтобы установить вместо него."
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Исключаем %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s отмечен для установки"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "%s отмечен как обновление для %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: не обновляет установленный пакет."
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Невозможно открыть файл %s. Пропуск."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "Проблема при переустановке: не найден пакет для удаления"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr "Проблема при переустановке: пакет %s не найден для установки"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Пакеты для отката версии отсутствуют"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "Пакет %s может быть повторно установлен, пропуск"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Пакеты недоступны: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr "Только переход к следующей версии доступен для пакета: %s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Ошибка отката версии: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Не удалось обновить: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Получение ключа из %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
@@ -132444,24 +139009,24 @@ index 52ba58b..a3886af 100644
 +msgstr "Подпись GPG ключа на ключе %s не совпадает с CA ключом для репозитория: %s"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr "Подпись GPG ключа проверена через CA ключ(и)"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Неверный GPG ключ %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr "Ошибка обработки GPG ключа: ключ не имеет значения %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -132480,7 +139045,7 @@ index 52ba58b..a3886af 100644
 +msgstr "Импорт %s ключа 0x%s:\n Владелец   : \"%s\"\n Отпечаток  : %s\n Пакет      : %s (%s)\n Источник   : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -132494,9 +139059,8 @@ index 52ba58b..a3886af 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Импорт %s ключа 0x%s:\n Владелец   : \"%s\"\n Отпечаток  : %s\n Источник   : %s"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -132505,30 +139069,31 @@ index 52ba58b..a3886af 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Не удалось обработать пакет: %s\n Ключи GPG настроены так: %s\n"
-+
-+#: ../yum/__init__.py:5393
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr "GPG ключ %s (0x%s) уже установлен"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "Неудача импорта ключа (code %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Импорт ключа успешно завершен"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Не установлены какие-либо ключи"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -132539,20 +139104,20 @@ index 52ba58b..a3886af 100644
 +msgstr "GPG ключи включены для репозитория \"%s\", но они не является правильными для данного пакета.\nПожалуйста, проверьте правильно ли настроены URL ключей для данного репозитория."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr "Импорт ключа(ключей) не помог, неверный ключ(ключи)?"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Нет"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Да"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -132563,7 +139128,7 @@ index 52ba58b..a3886af 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Ключ CA: %s\n Не удалось обработать репозиторий: %s\n Ключи GPG настроены так: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG ключ из %s (0x%s) уже был импортирован"
@@ -132571,19 +139136,19 @@ index 52ba58b..a3886af 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Импорт ключа неудачен"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Импорт ключа %s не удался"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr "Не установлены какие-либо ключи для репозитория %s"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -132595,117 +139160,122 @@ index 52ba58b..a3886af 100644
 +msgstr "Ключи подписей GPG для источника «%s» уже установлены, но они неверные.\n\r\nУбедитесь в правильности заданных URL с ключами для этого источника."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Не удается найти подходящее зеркало"
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Были обнаружены ошибки во время загрузки пакетов."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Пожалуйста, сообщите об этой ошибке в %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Ошибки проверки сценария:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr "Невозможно задать кэш-папку: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr "Зависимости не определены. Действие не будет сохранено."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr "Не удалось сохранить файл сценария %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr "Не удалось прочесть сохранённый сценарий %s : %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "Версия базы данных RPM не совпала с версией сценария,"
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr "Версия базы данных RPM не совпала с версией сценария,"
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " игнорирование, как потребуется"
- 
+-msgid " ignoring, as requested."
+-msgstr " игнорирование, как потребуется"
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " прерывание"
+-msgid " aborting."
+-msgstr " прерывание"
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr "tsflags не найдены или не целочисленные."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr "Найден txmbr в неопределенном состоянии: %s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr "Не найден txmbr: %s %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr "Отсутствует часть сценария, нарушены связи, или сценарий изменился,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr " пропущено по требованию. Проверьте зависимости!"
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s уже проверен и его нельзя удалить."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Проверка зависимостей версий %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s имеет зависимость от версии  %s, установленной пользователем."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "у %s нет зависимостей от версий, установленных пользователем."
@@ -132808,7 +139378,7 @@ index 52ba58b..a3886af 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s предоставляет %s, но он не найден"
-@@ -3153,6 +3280,19 @@ msgstr "%s предоставляет %s, но он не найден"
+@@ -3153,6 +3477,23 @@ msgstr "%s предоставляет %s, но он не найден"
  msgid "Repackaging"
  msgstr "Переупаковка"
  
@@ -132817,7 +139387,7 @@ index 52ba58b..a3886af 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Проверить: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -132825,10 +139395,14 @@ index 52ba58b..a3886af 100644
 +"    * needed %s"
 +msgstr "Недостаточно места в директории %s\n    * свободно   %s\n    * необходимо %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3165,8 +3305,7 @@ msgstr "Контрольная сумма md5 пакета %s не совпад
+@@ -3165,8 +3506,7 @@ msgstr "Контрольная сумма md5 пакета %s не совпад
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -132838,7 +139412,7 @@ index 52ba58b..a3886af 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3182,5 +3321,3 @@ msgstr "Поврежденный заголовок %s"
+@@ -3182,5 +3522,3 @@ msgstr "Поврежденный заголовок %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Невозможно открыть пакет %s — ошибка %s"
@@ -132846,10 +139420,10 @@ index 52ba58b..a3886af 100644
 -
 diff --git a/po/sk.po b/po/sk.po
 new file mode 100644
-index 0000000..24f035f
+index 0000000..911b5de
 --- /dev/null
 +++ b/po/sk.po
-@@ -0,0 +1,3321 @@
+@@ -0,0 +1,3522 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
@@ -132860,9 +139434,9 @@ index 0000000..24f035f
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-10-06 07:04+0000\n"
-+"Last-Translator: Tomáš Vadina <kyberdev at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Slovak (http://www.transifex.com/projects/p/yum/language/sk/)\n"
 +"MIME-Version: 1.0\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
@@ -132870,7 +139444,7 @@ index 0000000..24f035f
 +"Language: sk\n"
 +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Aktualizuje sa"
 +
@@ -132878,26 +139452,26 @@ index 0000000..24f035f
 +msgid "Erasing"
 +msgstr "Odstraňuje sa"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Inštaluje sa"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Zastaralo"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Aktualizované"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Zmazané"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Nainštalované"
 +
@@ -132919,7 +139493,7 @@ index 0000000..24f035f
 +msgid "Erased: %s"
 +msgstr "Zmazané: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Odstraňuje sa"
 +
@@ -132927,58 +139501,58 @@ index 0000000..24f035f
 +msgid "Cleanup"
 +msgstr "Čistí sa"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "Príkaz \"%s\" je už definovaný"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Príprava repozitárov"
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
 +msgstr "Načítanie metadát repozitárov z miestnych súborov"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Chyba nastavenia: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Chybná možnosť: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "  Nainštalované: %s-%s na %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr "  Zostavené    : %s na %s"
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr "  Odoslané: %s na %s"
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Je potrebné zadať nejaký príkaz"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Neexistujúci príkaz: %s. Prosím použite príkaz %s --help"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Požiadavky disku:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -132988,86 +139562,113 @@ index 0000000..24f035f
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Prehľad chýb\n------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Nie je možné vytvoriť zamknutý súbor; ukončuje sa"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Zámok pre yum teraz drží iná aplikácia; ukončenie kvôli nastavenému exit_on_lock"
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr "Pokus o spustenie transakcie, ale nie je čo vykonať. Ukončenie."
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ignorované, ako bolo žiadané."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " prerušené."
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Ukončenie na príkaz používateľa"
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Sťahovanie balíčkov:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Chyba pri sťahovaní balíčkov:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr "Spustená kontrola transakcie"
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "CHYBA Je potrebné aktualizovať rpm k vykonaniu:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr "CHYBA pri kontrole transakcie a riešení závislostí:"
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "Je potrebné aktualizovať RPM"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Oznámte prosím túto chybu na %s"
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "Spustený test transakcie"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "Chyba pri kontrole transakcie:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "Test transakcie v poriadku"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "Transakcia spustená"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr "Nie je možné automaticky importovať kľúče pri spustení bez obsluhy.\nPoužite \"-y\" k potlačeniu."
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "  * Možno ste mysleli: "
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr "Balíček(y) %s%s%s dostupný(é), ale nenainštalované."
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr "Balíček %s%s%s nie je dostupný."
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -133075,12 +139676,12 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček na inštaláciu"
 +msgstr[2] "%d balíčky na inštaláciu"
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Nie je čo vykonať"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
@@ -133088,11 +139689,11 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček označený pre aktualizáciu"
 +msgstr[2] "%d balíčky označené pre aktualizáciu"
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Neboli označené žiadne balíčky pre aktualizáciu"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
@@ -133100,11 +139701,11 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček označený pre synchronizáciu distribúcie"
 +msgstr[2] "%d balíčky označené pre synchronizáciu distribúcie"
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Neboli označené žiadne balíčky pre synchronizáciu distribúcie"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
@@ -133112,11 +139713,11 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček označený pre odstránenie"
 +msgstr[2] "%d balíčky označené pre odstránenie"
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Neboli označené žiadne balíčky pre odstránenie"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -133124,17 +139725,17 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček na downgrade"
 +msgstr[2] "%d balíčky na downgrade"
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr " (z %s)"
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr "Inštalovaný balíček %s%s%s%s nie je dostupný."
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -133142,127 +139743,145 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček na preinštalovanie"
 +msgstr[2] "%d balíčky na preinštalovanie"
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr "Neposkytnuté žiadne balíčky"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Balíček(y) na inštaláciu"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr "Meno/súhrn zodpovedá: %s"
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Vyhľadané %siba%s podľa mena a súhrnu, použite \"search all\" pre úplné hľadanie."
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr "  Vyhľadané %siba%s podľa plného mena a súhrnu, použite \"search all\" pre úplné hľadanie."
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr "Zhoda: %s"
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr "  Vyhľadané %shlavne%s podľa mena a súhrnu, použite \"search all\" pre úplné hľadanie."
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr "Varovanie: Nenájdená žiadna zhoda pre: %s"
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Nebola nájdená žiadna zhoda"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr "Chyba: Neboli nájdené žiadne balíčky pre:\n  %s"
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Čistenie repozitárov:"
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Čistenie všetkého"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Čistenie hlavičiek"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Čistenie balíčkov"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Čistenie xml metadát"
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Čistenie dočasnej pamäte databázy"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr "Čistenie zastaralých metadát"
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr "Čistenie dočasných dát rpmdb"
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Čistenie zásuvných modulov"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
-+msgstr "Varovanie: Žiadna zhoda skupiny pre: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Nainštalované skupiny:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr "Nainštalované jazykové skupiny:"
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Dostupné skupiny:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr "Dostupné jazykové skupiny:"
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Dokončené"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr "Varovanie: Skupina %s neexistuje."
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr "V žiadnej z požadovaných skupín nie sú balíčky na inštaláciu alebo aktualizáciu"
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
@@ -133270,16 +139889,22 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček na inštaláciu"
 +msgstr[2] "%d balíčky na inštaláciu"
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr "Skupina s názvom %s neexistuje"
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr "V skupine nie sú balíčky na odstránenie"
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
@@ -133287,32 +139912,32 @@ index 0000000..24f035f
 +msgstr[1] "%d balíček na odstránenie"
 +msgstr[2] "%d balíčky na odstránenie"
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr "Balíček %s je už nainštalovaný, preskočí sa"
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr "Zahodenie neporovnateľného balíčka %s.%s"
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr "Žiadny iný %s nainštalovaný, pridaný do zoznamu pre potencionálnu inštaláciu"
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Možnosti zásuvného modulu"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr "Chyba príkazového riadka: %s"
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -133320,453 +139945,485 @@ index 0000000..24f035f
 +"%s: %s option requires an argument"
 +msgstr "\n\n%s: %s možnosť vyžaduje argument"
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr "--color môže byť jedno z: auto, always, never"
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr "--installroot musí byť absolútna cesta: %s"
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "zobraziť tohoto pomocníka a ukončiť"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "tolerovať chyby"
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "spustiť všetko z dočasnej systémovej pamäte, bez jej aktualizácie"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "umiestnenie konfiguračného súboru"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr "maximálny čas čakania na príkaz"
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr "úroveň výpisu ladiacich informácií"
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr "zobraziť duplikáty v repozitároch, v príkazoch list/search"
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr "úroveň výpisu chýb"
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr "úroveň výpisu ladiacich informácií pre rpm"
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr "tichá operácia"
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr "podrobná operácia"
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr "odpovedať na všetky otázy áno"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "odpovedať na všetky otázky nie"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr "zobraziť verziu Yumu a ukončiť"
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr "nastaviť koreň inštalácie"
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr "povoliť jeden alebo viac repozitárov (zástupné znaky sú povolené)"
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr "zakázať jeden alebo viac repozitárov (zástupné znaky sú povolené)"
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr "vynechať balíček(y) podľa mena alebo výrazu"
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr "zakázať vynechanie z hlavnej časti, pre repozitár alebo pre všetko"
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr "povoliť spracovanie zastaralých počas aktualizácie"
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr "zakázať zásuvné moduly Yumu"
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr "zakázať kontrolu GPG podpisov"
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr "zakázať zásuvné moduly podľa mena"
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr "povoliť zásuvné moduly podľa mena"
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr "preskočiť balíčky s problémamy v závislostiach"
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr "kontrolovať či sú použité farby"
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr "nastaviť hodnotu $releasever v nastaveniach yumu a súboroch repozitárov"
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr "nastaviť doplnkové nastavenia a možnosti repozitára"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Jan"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Feb"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Mar"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Apr"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "Máj"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr "Jún"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr "Júl"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr "Aug"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr "Sep"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr "Okt"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr "Nov"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr "Dec"
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr "Skúsi sa iné zrkadlo."
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr "Názov        : %s%s%s"
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr "Architektúra        : %s"
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr "Epocha       : %s"
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr "Verzia     : %s"
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr "Vydanie     : %s"
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr "Veľkosť        : %s"
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr "Repozitár        : %s"
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr "Z repozitára   : %s"
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr "Odosielateľ   : %s"
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr "Čas odoslania  : %s"
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr "Čas vytvorenia   : %s"
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr "Čas inštalácie: %s"
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr "Nainštaloval: %s"
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr "Zmenil  : %s"
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr "Súhrn     : "
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr "URL         : %s"
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr "Licencia     : "
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr "Popis : "
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr "a"
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr "áno"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr "n"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr "nie"
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr "Je to v poriadku [a/N]"
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr "\nSkupina: %s"
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr " ID skupiny: %s"
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr " Popis: %s"
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr " Jazyk: %s"
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr " Povinné balíčky:"
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr " Predvolené balíčky:"
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr " Voliteľné balíčky:"
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr " Podmienené balíčky:"
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Nainštalované balíčky:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr "balíček: %s"
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr "  Pre balíček nie sú žiadne závislosti"
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr "  závislosť: %s"
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr "   Nevyriešené závislosti"
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr "Zhoda z:"
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr "Licencia     : %s"
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr "Názov súboru    : %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Poskytovateľ    : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr "Iné       : "
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr "Pri výpočte celkovej veľkosti pre sťahovanie nastala chyba"
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr "Celková veľkosť: %s"
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr "Celková veľkosť pre stiahnutie: %s"
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr "Nainštalovaná veľkosť: %s"
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr "Pri výpočte veľkosti po inštalácii nastala chyba"
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr "Preinštalovanie"
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr "Downgrade"
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr "Inštalácia kvôli závislostiam"
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr "Aktualizácia kvôli závislostiam"
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr "Odstránenie kvôli závislostiam"
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr "Preskočené (problémy so závislosťou)"
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr "Nenainštalované"
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr "Nedostupné"
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] "Balíček"
 +msgstr[1] "Balíčky"
 +msgstr[2] "Balíčkov"
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr "Arch"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr "Verzia"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr "Repozitár"
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr "Veľ."
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr "     nahradzuje sa  %s%s%s.%s %s\n"
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -133774,59 +140431,59 @@ index 0000000..24f035f
 +"%s\n"
 +msgstr "\nZhrnutie transakcie\n%s\n"
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Inštalovať"
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Upgrade"
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Odstrániť"
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Preinštalovať"
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Downgrade"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Závislé balíčky"
 +msgstr[1] "Závislý balíček"
 +msgstr[2] "Závislé balíčky"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr "Odstránené"
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr "Odstránené závislosti"
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr "Nainštalované závislosti"
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr "Aktualizované závislosti"
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr "Nahradené"
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr "Zlyhalo"
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr "dva"
 +
@@ -133834,7 +140491,7 @@ index 0000000..24f035f
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -133842,542 +140499,542 @@ index 0000000..24f035f
 +"to exit.\n"
 +msgstr "\n Aktuálne sťahovanie zrušené, %sprerušiť (ctrl-c) znova%s počas %s%s%s sekúnd\nto exit.\n"
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr "Prerušené používateľom"
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr "Celkovo"
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr "I"
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr "O"
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr "E"
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr "R"
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr "D"
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr "U"
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr "<nenastavené>"
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr "Systém"
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr "preskočenie zlúčenej transakcie %d až %d, pretože sú v presahu"
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr "Žiadne transakcie"
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr "Zadané chybné ID transakcie, alebo balíčka(ov)"
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr "Príkazový riadok"
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr "Prihlásený používateľ"
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr "ID"
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr "Dátum a čas"
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr "Akcia(e)"
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr "Pozmenené"
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr "Nezadané ID transakcie"
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr "Chybné ID transakcie"
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr "Zadané ID transakcie nenájdené"
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr "Nájdených viac než jedno ID transakcie!"
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr "Nebolo nájdené ID transakcie alebo balíčka(ov)"
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr "Downgradované"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr "Staršie"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr "Novšie"
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr "ID transakcie :"
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr "Počiatočný čas     :"
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr "Začiatok rpmdb    :"
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr "(%u sekúnd)"
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr "(%u minút)"
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr "(%u hodín)"
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr "(%u dní)"
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr "Čas ukončenia       :"
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr "Koniec rpmdb      :"
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr "Používateľ           :"
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr "Návratový kód    :"
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr "Prerušené"
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr "Zlyhania:"
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr "Zlyhanie:"
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr "Úspešné"
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr "Príkazový riadok   :"
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr "Uložená neštandardná prídavná informácia: %d"
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr "Transakcia vykonaná s:"
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr "Pozmenené balíčky:"
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr "Preskočené balíčky:"
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr "Problémy rpmdb:"
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr "Výstup skriptletu:"
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr "Chyby:"
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr "Inštalovať závislosti"
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr "Zastaralé"
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr "Zmazať"
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr "Aktualizovať"
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr "Čas"
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr "Posledný deň"
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr "Posledný týždeň"
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr "Posledné 2 týždne"
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr "Posledné 3 mesiace"
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr "Posledných 6 mesiacov"
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr "Posledný rok"
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr "Viac než rok"
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr "Nenájdená žiadna transakcia %s"
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr "ID transakcie:"
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr "Ďalšia dostupná informácia z histórie:"
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr "%s: Nenájdené ďalšie dáta tohoto mena"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Balíček       :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Stav          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Veľkosť           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Hostiteľ zostavenia     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Čas zostavenia     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Zabalil       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Dodávateľ         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licencia        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Zdroj RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Čas odoslania    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Odosielateľ      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Dôvod         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Z repozitára      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Nainštaloval   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Zmenil     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr "nainštalovaný"
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr "novou aktualizáciou"
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr "zmazaný"
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr "preinštalovaný"
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr "downgradovaný"
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr "nahradený"
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr "aktualizovaný"
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr "zastaralý"
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr "---> Balíček %s.%s %s:%s-%s bude %s"
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr "--> Kontrola transakcie spustená"
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr "--> Reštartovanie riešenia závislostí s novými zmenami."
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr "--> Riešenie závislostí dokončené"
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr "--> Spracovanie závislostí: %s pre balíček: %s"
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
-+msgstr "---> Ponechanie balíčka: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr "--> Nevyriešené závislosti: %s"
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr "Balíček: %s"
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr "\n    Vyžaduje: %s"
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr "\n    %s: %s (%s)"
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr "\n        %s"
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr "\n        Nenájdené"
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr "Aktualizoval"
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr "Downgradoval"
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr "Zastarol"
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr "Dostupné"
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr "--> Spracovanie konfliktov: %s je v konfilkte s %s"
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr "--> Do transakcie sú pridávané vybrané balíčky. Čakajte prosím."
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr "---> Sťahovanie hlavičiek %s pre pridanie do transakcie."
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Overuje sa"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr "Beží"
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr "Spí"
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr "Neprerušiteľné"
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr "Zombie"
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr "Trasovaný/zastavený"
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr "Neznámy"
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr "  Iná aplikácia je: PackageKit"
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr "  Iná aplikácia je: %s"
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr "    Pamäť  : %5s RSS (%5sB VSZ)"
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr "    Spustené: %s - pred %s"
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr "    Stav   : %s, pid: %d"
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr "\n\nUkončené na príkaz používateľa"
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr "\n\nUkončené prerušením rúry"
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -134385,47 +141042,41 @@ index 0000000..24f035f
 +"%s"
 +msgstr "\n\n%s"
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr "Zámok pre yum teraz drží iná aplikácia; ukončenie kvôli nastavenému exit_on_lock"
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr "Chyba PluginExit: %s"
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr "Chyba Yumu: %s"
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr "Chyba: %s"
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr " Pre obídenie problému môžete skúsiť možnosť --skip-broken"
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr " Môžete skúsiť spustiť: rpm -Va --nofiles --nodigest"
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr "Neznáma chyba/y: Výstupný kód: %d:"
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr "\nZávislosti vyriešené."
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr "Dokončené!"
 +
@@ -134464,518 +141115,567 @@ index 0000000..24f035f
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr "Chyba: Je potrebné predať zoznam balíčkov do %s"
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr "Chyba: K nájdeniu zhody je potrebná položka"
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr "Chyba: Je potrebná skupina alebo zoznam skupín"
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr "Chyba: clean vyžaduje možnosť: %s"
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Chyba: neplatný argument pre clean: %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr "Žiadny argument pre shell"
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr "Názov súboru predaný shellu: %s"
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr "Súbor %s predaný ako argument shellu neexistuje."
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr "Chyba: viac než jeden súbor predaný shellu ako argument."
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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 "K dispozícii nie sú žiadne povolené repozitáre.\n Pre zobrazenie repozitárov spustite príkaz yum repolist all.\n Repozitáre môžete povoliť pomocou príkazu yum-config-manager --enable <repo>"
 +
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr "BALÍČEK..."
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr "Inštalovať balíček alebo balíčky do systému"
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr "Príprava priebehu inštalácie"
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr "[BALÍČEK...]"
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr "Aktualizovať balíček alebo balíčky v systéme"
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr "Príprava priebehu aktualizácie"
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr "Synchronizovať nainštalované balíčky na poslednú dostupnú verziu"
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr "Príprava procesu synchronizácie distribúcie"
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr "Zobraziť detaily o balíčku, alebo skupine balíčkov"
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr "Nainštalované balíčky"
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr "Dostupné balíčky"
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr "Dodatočné balíčky"
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr "Aktualizované balíčky"
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr "Zastaralé balíčky"
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr "Nedávno pridané balíčky"
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr "Nenájdené žiadne zodpovedajúce balíčky"
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr "Vypísať balíček, alebo skupiny balíčkov"
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr "Odstrániť balíček, alebo balíčky zo systému"
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr "Príprava priebehu odstránenia"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Zobraziť, alebo použiť informácie o skupine"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr "Príprava spracovania skupiny"
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr "Nenájdené žiadne skupiny na ktorých by šlo príkaz vykonať"
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Neplatný subpríkaz skupiny, použite: %s."
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Neexistuje žiadny súbor nainštalovaných skupín."
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "Nemáte prístup k skupinám DB."
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr "Vygenerovať dočasnú pamäť metadát"
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr "Vytváranie dočasných súborov pre všetky súbory s metadátami."
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr "Toto môže chvíľu trvať v závislosti na rýchlosti počítača"
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr "Dočasná pamäť metadát vytvorená"
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr "Odstrániť dočasné dáta"
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr "Nájsť balíček, ktorý poskytuje danú hodnotu"
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr "Skontrolovať dostupnosť aktualizácií pre balíčky"
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr "Vyhľadať detaily balíčkov pre zadaný reťazec"
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr "Prehľadávanie balíčkov:"
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr "Aktualizovať balíčky a brať do úvahy zastaralé"
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr "Príprava priebehu upgradu"
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr "Inštalovať miestny RPM"
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr "Príprava spracovania miestneho balíčka"
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr "Prehľadávanie balíčkov pre vyriešenie závislostí:"
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr "Spustiť interaktívny yum shell"
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr "Príprava yum shellu"
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr "Vypísať závislosti balíčkov"
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr "Hľadanie závislostí:"
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr "Zobraziť nastavené repozitáre softvéru"
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr "povolené"
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr "zakázané"
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr "Repo-ID      : "
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr "Repo-názov    : "
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr "Repo-stav  : "
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr "Repo-revízia: "
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr "Repo-značky    : "
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr "Repo-distro-značky: "
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr "Repo-aktualizované : "
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr "Repo-balíčkov    : "
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr "Repo-veľkosť    : "
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr "Repo-baseurl : "
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr "Repo-metalink: "
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr "  Aktualizované    : "
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr "Repo-zrkadlá : "
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr "Nikdy (naposledy: %s)"
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr "Okamžite (naposledy: %s)"
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr "%s sekúnd (naposledy: %s)"
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr "Repo-vyprší  : "
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr "Repo-vynechané : "
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr "Repo-zahrnuté : "
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr "Repo-vynechané: "
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr "Repo-názov súboru: "
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr "ID repozitára"
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr "stav"
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr "názov repozitára"
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr "Zobraziť užitočného pomocníka"
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr "Pre %s nie je dostupný pomocník"
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr "\n\naliasy: "
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr "\n\nalias: "
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr "Príprava priebehu reinštalácie"
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr "reinštalácia balíčka"
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr "Príprava procesu downgradu"
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr "downgrade balíčka"
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr "Zobraziť verziu pre počítač a/alebo dostupné repozitáre."
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr " Verzia yum skupín:"
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr " Skupina :"
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr " Balíčky :"
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr "Nainštalované:"
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr "Nainštalované skupiny:"
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr "Dostupné:"
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr "Dostupné skupiny:"
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr "Zobraziť alebo použiť históriu transakcií"
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transakcie:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Čas začatia  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Čas ukončenia    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Počet      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr "Neplatný subpríkaz histórie, použite: %s."
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr "Nemáte prístup k databáze s históriou."
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr "Skontrolovať problémy v rpmdb"
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr "načítať uloženú transakciu zo súboru"
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr "Nebola zadaná žiadna uložená transakcia."
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr "načítanie transakcie z %s"
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr "Transakcia načítaná z %s s %s členmi"
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr " Zlyhali kontroly Yumu: %s"
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Žiadny prístup načítania/vykonania v aktuálnom priečinku, presun do /"
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Žiadny prístup getcwd() v aktuálnom priečinku, presun do /"
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "Nie je možné vytvoriť zamknutý súbor; ukončuje sa"
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Zámok yumu drží iná aplikácia; čaká sa na jej ukončenie..."
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr "Riešenie závislostí"
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr "Vaša transakcia bola uložená, znova ju spustite s príkazom:\n yum load-transaction %s"
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -135005,7 +141705,7 @@ index 0000000..24f035f
 +msgid "Member: %s"
 +msgstr "Člen: %s"
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr "%s zkonvertovaný pre inštaláciu"
@@ -135062,326 +141762,380 @@ index 0000000..24f035f
 +msgid "Trying to update %s to resolve dep"
 +msgstr "Pre vyriešenie závislostí sa skúša aktualizácia %s"
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr "Nie je cesta pre aktualizáciu %s. Zlyhanie!"
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr "TSINFO: balíček %s požaduje %s, ktorý je označený pre zmazanie"
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr "TSINFO: Balíček %s je označený ako zastaralý balíčkom %s pre vyriešenie závislostí."
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr "TSINFO: Aktualizácia %s pre vyriešenie závislostí."
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr "Nie je možné nájsť cestu aktualizácie pre závislosť pre: %s"
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr "Rýchla zhoda %s vyžadovaná pre %s"
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr "%s je v poskytujúcich balíčkoch, ale je už nainštalovaný, odstraňuje sa."
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr "Balíček %s, ktorý môže byť riešením, má v transakcii novšiu verziu."
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr "Balíček %s, ktorý môže byť riešením, je nainštalovaný v novšej verzii."
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr "%s je už v transakcii, preskočí sa"
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr "TSINFO: Označenie %s ako aktualizácia pre %s"
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr "TSINFO: Označenie %s ako inštalácia pre %s"
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr "Úspech - prázdna transakcia"
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr "Reštartovanie slučky"
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr "Proces spracovania závislostí skončil"
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr "Úspech - závislosti vyriešené"
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr "Kontrola závislostí pre %s"
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr "hľadá sa %s ako požiadavka pre %s"
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr "Spustené compare_providers() pre %s"
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr "lepšia architektúra v po %s"
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr "%s zastaráva %s"
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr "archdist porovnal %s voči %s na %s\n  Víťaz: %s"
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr "spoločné zdrojové rpm %s a %s"
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr "základný balíček %s je nainštalovaný pre %s"
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr "spoločný prefix %s medzi %s a %s"
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr "poskytuje vercmp: %s"
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr " Víťaz:  %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "vyžaduje minimálne: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr " Porazený (%d): %s"
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr "Najlepšie poradie: %s"
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr "doConfigSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr "Repozitár %r: Chyba pri parsovaní konfigurácie: %s"
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr "Repozitáru %r chýba v konfigurácii meno, použité id"
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr "zásuvné moduly už sú inicializované"
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr "doRpmDBSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr "Načítanie miestnej RPMDB"
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr "doRepoSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr "doSackSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr "Príprava súhrnu balíčkov"
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr "repo objektu pre repozitár %s chýba metóda _resetSack\n"
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr "preto nemôže byť tento repozitár resetovaný.\n"
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr "doUpdateSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr "Zostavovanie objektov aktualizácií"
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr "doGroupSetup() bude odstránený v najbližšej verzii Yumu.\n"
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr "Získavenie metedát skupín"
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr "Pridávanie súboru zo skupinou pre repozitár: %s"
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr "Zlyhalo pridanie súboru so skupinou pre repozitár: %s - %s"
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr "V žiadnom repozitáre nie sú dostupné skupiny"
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr "Získavanie metadát pkgtags"
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr "Pridávanie značiek z repozitára: %s"
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr "Zlyhalo pridanie Pkg značiek pre repozitár: %s - %s"
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr "Importovanie informácií z dodatočných zoznamov súborov"
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr "Program %s%s%s bol nájdený v balíčku yum-utils."
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr "Existujú nedokončené transakcie. Pre ich dokončenie radšej najprv spustite príkaz yum-complete-transaction."
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr "--> Hľadanie nepotrebných závislostí"
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
 +msgstr "Chránené verzie multilib-u: %s != %s"
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr "Pokus o odstránenie \"%s\", ktorý je chránený"
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr "\nBalíčky preskočené kvôli problémom so závislosťami:"
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr "    %s z %s"
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr "** Nájdené %d existujúce problémy v rpmdb, nasleduje výstup \"yum check\":"
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr "Varovanie: RPMDB bola zmenená mimo yum."
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr "chýbajúce requires"
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr "inštalačný konflikt"
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr "Varovanie: Počas transakcie sa vyskytla chyba skriptletu alebo iná fatálna chyba."
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr "Transakcia nemôže začať:"
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr "Nie je možné spustiť transakciu."
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, python-format
 +msgid "Failed to remove transaction file %s"
 +msgstr "Zlyhalo odstránenie transakčného súboru %s"
 +
 +#. maybe a file log here, too
 +#. but raising an exception is not going to do any good
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr "%s by mal byť nainštalovaný, ale nie je!"
@@ -135391,111 +142145,116 @@ index 0000000..24f035f
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr "%s by mal byť odstránený, ale nie je!"
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr "Existujúci zámok %s: je spustená iná kópia s pid %s."
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr "Nie je možné vytvoriť zámok na %s: %s"
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Nie je možné otvoriť zámok %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Nie je možné skontrolovať, či je PID %s aktívny"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, python-format
 +msgid ""
 +"Package does not match intended download. Suggestion: run yum "
 +"--enablerepo=%s clean metadata"
 +msgstr "Balíček nezodpovedá plánovanému stiahnutiu. Odporúčanie: spustite príkaz yum --enablerepo=%s clean metadata"
 +
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr "Nie je možné skontrolovať kontrolný súčet"
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr "Kontrolný súčet balíčka nesúhlasí"
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr "kontrolný súčet balíčka nesúhlasí, ale pre %s je povolená dočasná pamäť"
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr "použitie miestnej kópie %s"
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr ""
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr "Hlavička nie je kompletná."
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr "Hlavička nie je v miestnej dočasnej pamäti, ale nič iného sa nedá použiť. Nie je možné stiahnuť %s"
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr "Verejný kľúč pre %s nie je nainštalovaný"
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr "Problém s otvorením balíčka %s"
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr "Verejný kľúč %s nie je dôveryhodný"
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr "Balíček %s nie je podpísaný"
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr "Nie je možné odstrániť %s"
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr "%s odstránený"
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr "Nie je možné odstrániť %s súbor %s"
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr "%s súbor %s odstránený"
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
@@ -135503,23 +142262,23 @@ index 0000000..24f035f
 +msgstr[1] "%d %s súbor odstránený"
 +msgstr[2] "%d %s súbory odstránené"
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr "Viac než jedna identická zhoda v súhrne pre %s"
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr "Z aktualizácie sa nič nezhoduje s %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr "searchPackages() bude odstránený v najbližšej verzii Yumu.                      Používajte namiesto neho searchGenerator(). \n"
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
@@ -135527,328 +142286,343 @@ index 0000000..24f035f
 +msgstr[1] "Hľadá sa %d balíček"
 +msgstr[2] "Hľadajú sa %d balíčky"
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr "vyhľadávanie balíčka %s"
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr "vyhľadávanie v názvoch súborov"
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr "vyhľadávanie v položkách poskytuje"
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr "Pre aktívne repozitáre nie sú k dispozícii žiadne dáta o skupinách"
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr "Skupina s názvom %s neexistuje"
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr "balíček %s nebol označený v skupine %s"
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Preskakuje sa balíček %s zo skupiny %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr "Pridanie balíčka %s zo skupiny %s"
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr "Pre inštaláciu nie je k dispozícii žiadny balíček s názvom %s"
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
-+msgstr "Varovanie: Skupina %s neobsahuje žiadne balíčky."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr "Skupina %s má %u voliteľných balíčkov, ktoré môžu byť nainštalované."
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr "Položka balíčka %s nebola nájdená v súhrne balíčkov"
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr "Položka balíčka %s nebola nájdená v rpmdb"
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr "Neplatný príznak verzie z: %s"
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr "Pre %s nebol nájdený žiadny balíček"
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr "Objekt balíčka nebol inštanciou balíčkového objektu"
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr "Nebolo nič určené pre inštaláciu"
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr "Kontrola pre virtual provide alebo file-provide pre %s"
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr "Balíček %s je nainštalovaný, ale nie je dostupný"
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr "Nie sú dostupné žiadne balíčky pre inštaláciu"
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr "Balíček: %s - už je v transakčnej sade"
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr "Balíček %s je označený ako zastaralý balíčkom %s, ktorý je už nainštalovaný"
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr "Balíček %s je označený ako zastaralý balíčkom %s, ale nie je poskytnutý pre vyriešenie závislostí"
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr "Balíček %s je označený ako zastaralý balíčkom %s, skúsi sa namiesto neho nainštalovať %s"
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr "Balíček %s je už nainštalovaný a je v poslednej verzii"
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr "Balíček zodpovedajúci %s je už nainštalovaný. Kontroluje sa pre aktualizáciu."
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr "Aktualizácia všetkého"
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Neaktualizuje sa balíček, ktorý je už zastaralý: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Pre argument nebola nájdená zhoda: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Žiadny balíček sa nezhoduje na upgrade: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr "Balíček je už zastaralý: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr "Neaktualizuje sa balíček, ktorý je zastaralý: %s"
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr "Neaktualizuje sa balíček, ktorý je už aktuálny: %s.%s %s:%s-%s"
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Žiadny balíček sa nezhoduje na zmazanie: %s"
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr "Preskakuje sa aktuálne používané jadro: %s"
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr "Odstránenie %s z transakcie"
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr "Nie je možné otvoriť: %s. Preskočí sa."
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr "Skúmanie %s: %s"
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr "Nije je možné lokálne nainštalovať deltarpm: %s. Preskočí sa."
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr "Do transakcie nie je možné pridať balíček %s. Nekompatibilná architektúra: %s"
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr "Nie je možné nainštalovať balíček %s. Je zastaralý nainštalovaným balíčkom %s"
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr "Balíček %s nie je nainštalovaný, nie je možné ho aktualizovať. Nainštalujte ho príkazom yum install."
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, python-format
 +msgid ""
 +"Package %s.%s not installed, cannot update it. Run yum install to install it"
 +" instead."
 +msgstr "Balíček %s.%s nie je nainštalovaný, nie je možné ho aktualizovať. Nainštalujte ho príkazom yum install."
 +
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr "Vynechanie %s"
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr "Označenie %s pre inštaláciu"
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr "Označenie %s ako aktualizácia %s"
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr "%s: nie je aktualizáciou nainštalovaného balíčka."
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr "Nie je možné otvoriť súbor: %s. Preskočí sa."
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr "Problém pri preinštalovaní: žiadny balíček nie je zhodným pre odstránenie"
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr "Problém pri preinštalovaní: žiadny zhodný balíček %s pre inštaláciu"
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr "Žiadny balíček dostupný pre downgrade"
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr "Balíček %s má dovolené viacero inštalácií, preskočí sa"
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr "Neexistuje zhoda pre dostupný balíček: %s"
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr "Pre balíček je dostupná len aktualizácia: %s"
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr "Downgrade zlyhal: %s"
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Upgrade zlyhal: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr "Získavanie kľúča z %s"
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +msgid "GPG key retrieval failed: "
 +msgstr "Získanie GPG kľúča zlyhalo:"
 +
 +#. if we decide we want to check, even though the sig failed
 +#. here is where we would do that
-+#: ../yum/__init__.py:5306
++#: ../yum/__init__.py:5766
 +#, python-format
 +msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 +msgstr "GPG podpis kľúčom %s nezodpovedá kľúči CA pre repozitár: %s"
 +
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr "GPG podpis bol overený oproti CA kľúču (kľúčom)"
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr "Neplatný GPG kľúč z %s: %s"
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr "Parsovanie GPG kľúča zlyhalo: kľúč nemá žiadnu hodnotu %s"
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -135858,7 +142632,7 @@ index 0000000..24f035f
 +" From       : %s"
 +msgstr "Importuje sa %s kľúč 0x%s:\n Používateľské ID     : \"%s\"\n Odtlačok: %s\n Balíček    : %s (%s)\n Od       : %s"
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -135867,7 +142641,7 @@ index 0000000..24f035f
 +" From       : %s"
 +msgstr "Importuje sa %s kľúč 0x%s:\n Používateľské ID     : \"%s\"\n Odtlačok: %s\n Od       : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -135877,44 +142651,44 @@ index 0000000..24f035f
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Zlyhaný balíček: %s\n GPG kľúče sú nastavené ako: %s\n"
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr "GPG kľúč %s (0x%s) je už nainštalovaný"
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr "Import kľúča zlyhal (kód %d)"
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr "Import kľúča prebehol úspešne"
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr "Neboli nainštalované žiadne kľúče"
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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 kľúče určené pre repozitár „%s“ sú už nainštalované, avšak pre tento balíček nie sú správne.\nSkontrolujte, či URL kľúčov sú pre tento repozitáe správne nastavené."
 +
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr "Import kľúča(ov) nepomohol, chybný(é) kľúč(e)?"
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Nie"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Áno"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -135925,123 +142699,120 @@ index 0000000..24f035f
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n CA kľúč: %s\n Zlyhaný repozitár: %s\n GPG kľúče sú nastavené ako: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr "GPG kľúč %s (0x%s) je už importovaný"
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Importovanie kľúča %s zlyhalo"
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr "Neboli nainštalované žiadne kľúče pre repozitár %s"
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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 "GPG kľúče pre repozitár \"%s\" sú už nainštalované, ale nie sú správne.\nSkontrolujte, či je pre repozitár správne nastavené URL kľúča."
 +
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr "Nie je možné nájsť vhodné zrkadlo."
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr "Pri sťahovaní balíčkov sa vyskytla chyba."
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr "Oznámte túto chybu na %s"
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr "Chyby testu transakcie:"
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr "Nie je možné nastaviť priečinok pre dočasnú pamäť: %s"
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr "Závislosti neboli vyriešené. Nevyriešená transakcia nebude uložená."
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr "Nie je možné uložiť súbor transakcie %s: %s"
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr "Nie je možné načítať uloženú transakciu %s : %s"
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr "rpmdb obsahuje inú verziu než je v uloženeh transakcii"
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
-+msgstr " ignorované, ako bolo žiadané."
-+
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
-+msgstr " prerušené."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
 +
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr "nie je možné nájsť tsflags alebo tsflags nie je celé číslo."
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr "Nájdený txmbr v neznámom stave: %s"
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr "Nie je možné nájsť txmbr: %s v stave %s"
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr "Nie je možné násť txmbr: %s z: %s"
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr "Chýbajú transakčný členovia, vzťahy alebo bola transakcia zmenená"
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr " ignorované, ako bolo žiadané. Musíte spustiť redepsolve!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s bol už navštívený a nemôže byť odstránený."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Skúma sa revdeps %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s má revdep %s, ktorý bol nainštalovaný používateľom."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s má revdeps, ktoré nebolo nainštalované používateľom."
@@ -136135,7 +142906,7 @@ index 0000000..24f035f
 +msgid "Verify: %u/%u: %s"
 +msgstr "Overenie: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -136143,6 +142914,10 @@ index 0000000..24f035f
 +"    * needed %s"
 +msgstr "Nedostatok miesta v cieľovom priečinku pre sťahovanie: %s\n    * voľné miesto %s\n    * je potrebné %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -136172,10 +142947,10 @@ index 0000000..24f035f
 +msgid "Error opening rpm %s - error %s"
 +msgstr "Chyba pri otvorení rpm %s - chyba %s"
 diff --git a/po/sr.po b/po/sr.po
-index 351d6db..011f617 100644
+index 351d6db..78fa7c8 100644
 --- a/po/sr.po
 +++ b/po/sr.po
-@@ -2,879 +2,918 @@
+@@ -2,879 +2,1001 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -136188,8 +142963,8 @@ index 351d6db..011f617 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -136200,7 +142975,7 @@ index 351d6db..011f617 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Ажурирам"
  
@@ -136211,31 +142986,31 @@ index 351d6db..011f617 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "Превазиђени"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Ажурирани"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Инсталирани"
  
@@ -136262,7 +143037,7 @@ index 351d6db..011f617 100644
  msgstr "Обрисано: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Уклањам"
  
@@ -136272,69 +143047,69 @@ index 351d6db..011f617 100644
  msgstr "Чишћење"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Наредба „%s“ је већ дефинисана"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Постављам ризнице"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Читам метаподатке ризница из локалних датотека"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Грешка при подешавању: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Грешка у опцијама: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Инсталиран : %s-%s %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Направио/ла: %s %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Објавио/ла : %s %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Морате да унесете неку команду"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Захтеви диска:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -136346,83 +143121,104 @@ index 351d6db..011f617 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "Сажетак грешака\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
+ msgstr ""
 -"Сажетак грешака\n"
 -"-------------\n"
-+msgstr "Сажетак грешака\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr "Покушавам да извршим трансакцију али нема шта да се ради. Излазим."
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Излазим на команду корисника"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Преузимам пакете:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Грешка при преузимању пакета:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Пријавите ову грешку у %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Извршавам проверу трансакције"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Грешка при провери трансакције:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Провера трансакције је успела"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Извршавам трансакцију"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -136432,18 +143228,18 @@ index 351d6db..011f617 100644
 +msgstr "Одбијам да аутоматски увезем кључеве када се извршавање не надгледа.\nЗа превазилажење овога користите „-y“."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Можда сте мислили: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Не постоји доступан пакет %s%s%s."
@@ -136451,23 +143247,28 @@ index 351d6db..011f617 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Пакет(и) који ће се инсталирати"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Нема шта да се ради"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d пакети означени за ажурирање"
@@ -136478,12 +143279,12 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Нема пакета означених за ажурирање"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -136494,12 +143295,12 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d пакети означени за уклањање"
@@ -136510,14 +143311,14 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "Нема пакета означених за уклањање"
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "Пакет(и) који ће се уназадити"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -136526,13 +143327,13 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -136540,7 +143341,7 @@ index 351d6db..011f617 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Пакет(и) који ће се поново инсталирати"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -136549,58 +143350,58 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Ниједан пакет није добављен"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Пакет(и) који ће се инсталирати"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Упозорење: није нађено подударање за %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Нису пронађена подударања"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Нису пронађени пакети за %s"
@@ -136610,118 +143411,144 @@ index 351d6db..011f617 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Чистим све"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Чистим заглавља"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Чистим пакете"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Чистим xml метаподатке"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Чистим кеш базе података"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Чистим expire-cache метаподатке"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Чистим додатке"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Инсталиране групе:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Доступне групе:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Урађено"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Упозорење: група %s не постоји."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"Нема доступних пакета за инсталацију или ажурирање у свим захтеваним групама"
 +msgstr "Нема доступних пакета за инсталацију или ажурирање у свим захтеваним групама"
- 
--#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d пакет(и) за инсталацију"
++
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
 +msgstr[2] ""
  
+-#: ../cli.py:1326
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d пакет(и) за инсталацију"
++msgid "No Environment named %s exists"
++msgstr ""
+ 
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Не постоји група под именом %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Нема пакета за уклањање из група"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d  пакет(и) за уклањање"
@@ -136732,20 +143559,20 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Пакет %s је већ инсталиран, прескачем га"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -136754,18 +143581,18 @@ index 351d6db..011f617 100644
 +msgstr "Не постоји инсталиран други %s, додајем га у списак за потенцијалну инсталацију"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Опције додатка"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Грешка командне линије: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -136778,355 +143605,363 @@ index 351d6db..011f617 100644
 +msgstr "\n\n%s: %s опција захтева аргумент"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color прима један од следећих: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "прикажи ову помоћну поруку и изађи"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "буди толерантан на грешке"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "место датотеке подешавања"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "најдуже време чекања на команду"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "ниво излазног приказа за проналажење грешака"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr ""
 -"приказуј дупликате, у ризницама, у командама за излиставање/претраживање"
 +msgstr "приказуј дупликате, у ризницама, у командама за излиставање/претраживање"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "ниво излазног приказа грешака"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "тиха радња"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "опширна радња"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "одговори са да на сва питања"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "прикажи Yum верзију и изађи"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "постави корени директоријум инсталације"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr "укључи једну или више ризница (скраћенице су дозвољене)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "искључи једну или више ризница (скраћенице су дозвољене)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "изузми пакет(е) по имену или глобу"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr "искључи изузимање из главног скупа, за ризницу или за све"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "укључи обраду застарелих пакета у току ажурирања"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "искључи додатке за Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "искључи проверу gpg потписа"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "искључи додатке по имену"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "укључи додатке по имену"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "прескочи пакете који имају проблема са решавањем зависности"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "контролише да ли се користи боја"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "јан"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "феб"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "мар"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "апр"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "мај"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "јун"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "јул"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "авг"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "сеп"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "окт"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "нов"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "дец"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Покушавам други одраз."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Ризница     : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "УРЛ         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Опис        : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "d"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "da"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ne"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Да ли је ово у реду [d/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -137137,165 +143972,189 @@ index 351d6db..011f617 100644
 +msgstr "\nГрупа: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " ИБ групе: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Опис: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Обавезни пакети:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Подразумевани пакети:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Изборни пакети:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Условљени пакети:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "пакет: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Не постоје зависности овог пакета"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  зависност: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Незадовољена зависност"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Повезан из  :"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Лиценца     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Име датотеке: %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Остало      : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Догодила се грешка при рачунању укупне величине за преузимање"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Укупна величина: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Укупна величина за преузимање: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Инсталирам због зависности"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Ажурирам због зависности"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Уклањам због зависности"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Прескочено (проблеми са зависностима)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Пакет"
 +msgid_plural "Packages"
@@ -137304,388 +144163,388 @@ index 351d6db..011f617 100644
 +msgstr[2] "Пакет"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Архитектура"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Верзија"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Ризница"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Величина"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -882,57 +921,59 @@ msgid ""
+@@ -882,57 +1004,59 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +msgstr[2] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Уклоњено"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Зависност уклоњена"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Зависност инсталирана"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Зависност ажурирана"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Замењено"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Неуспех"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "два"
  
-@@ -940,7 +981,7 @@ msgstr "два"
+@@ -940,7 +1064,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -948,491 +989,542 @@ msgid ""
+@@ -948,491 +1072,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "прекид од стране корисника"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Укупно"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -137694,17 +144553,17 @@ index 351d6db..011f617 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -137717,224 +144576,225 @@ index 351d6db..011f617 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "инсталиран"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "обрисан"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "ажуриран"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "превазиђен"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Извршава се провера трансакције"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Поновно покретање разрешавања зависности са новим променама."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Завршено је разрешавање зависности"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Обрађујем зависност: %s за пакет: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Неразрешена зависност: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -137942,7 +144802,7 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -137950,7 +144810,7 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -137958,7 +144818,7 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -137966,40 +144826,40 @@ index 351d6db..011f617 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Сукоб при обради: %s се сукоби са %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Попуњавам скуп трансакције са изабраним пакетима. Молим вас, сачекајте."
 +msgstr "--> Попуњавам скуп трансакције са изабраним пакетима. Молим вас, сачекајте."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Преузимам заглавље за %s ради паковања у скуп трансакције."
@@ -138007,70 +144867,70 @@ index 351d6db..011f617 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Извршава се"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Успаван"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Зомби"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Праћен/заустављен"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Непознат"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Други програм је: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Други програм је: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Меморија: %5s RSS (%5sБ VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Покренут: %s - %s раније"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Стање   : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -138082,7 +144942,7 @@ index 351d6db..011f617 100644
 +msgstr "\n\nИзлазим када корисник откаже"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -138094,59 +144954,58 @@ index 351d6db..011f617 100644
 +msgstr "\n\nИзлазим када се сломи цев"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1440,50 +1532,47 @@ msgid ""
+@@ -1440,50 +1615,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Грешка: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Непозната грешка(е): излазни код: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -138156,11 +145015,11 @@ index 351d6db..011f617 100644
 +msgstr "\nЗависности су разрешене"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Завршено!"
  
-@@ -1495,7 +1584,7 @@ msgstr ""
+@@ -1495,7 +1661,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Морате бити root корисник да бисте извршили ову команду."
  
@@ -138169,7 +145028,7 @@ index 351d6db..011f617 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1510,475 +1599,490 @@ msgid ""
+@@ -1510,584 +1676,653 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -138202,40 +145061,60 @@ index 351d6db..011f617 100644
  msgstr "Грешка: потребно је да додате списак пакета за %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Грешка: потребно је придружити ставку"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Грешка: потребна је група или списак група"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Грешка: clean захтева опцију: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Грешка: погрешан clean аргумент:%r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Не постоји аргумент за командно окружење"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Име датотеке је прослеђено командном окружењу: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
@@ -138243,7 +145122,7 @@ index 351d6db..011f617 100644
 +msgstr "Не постоји датотека %s, која је прослеђена као аргумент командном окружењу."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
 -msgstr ""
 -"Грешка: више од једне датотеке је прослеђено као аргумент командном "
@@ -138251,7 +145130,7 @@ index 351d6db..011f617 100644
 +msgstr "Грешка: више од једне датотеке је прослеђено као аргумент командном окружењу."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -138259,112 +145138,112 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "ПАКЕТ..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Инсталирајте пакет или пакете на ваш систем"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Постављам процес инсталације"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[ПАКЕТ...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Ажурирај пакет или пакете на вашем систему"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Постављам процес ажурирања"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "Прикажи детаље о сваком пакету или групи пакета"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Инсталирани пакети"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Доступни пакети"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Додатни пакети"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Ажурирани пакети"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Превазиђени пакети"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Недавно додати пакети"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Не постоје одговарајући пакети за излиставање"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Излистај пакете или групе пакета"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Уклоните пакет или пакете са вашег система"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Постављам процес уклањања"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Постављам процес за групе"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Не постоји група над којом се може извршити команда"
  
@@ -138375,7 +145254,7 @@ index 351d6db..011f617 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Инсталирајте пакете у групи на вашем систему"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -138383,79 +145262,79 @@ index 351d6db..011f617 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Уклоните пакете у групи са вашег система"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Прикажи детаље о групи пакета"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Направи кеш са метаподацима"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Правим кеш датотеке за све датотеке са метаподацима."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr "Ово може да потраје у зависности од брзине вашег рачунара"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Направљен је кеш са метаподацима"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Уклони кеширане податке"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Пронађи који пакет пружа дату вредност"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Проверите да ли су доступна ажурирања пакета"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Претражите детаље о пакету за задату ниску"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Претражујем пакете: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Ажурирајте пакете узимајући превазиђене у обзир"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Постављам процес надградње"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Инсталирај локални RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Постављам процес локалних пакета"
  
@@ -138464,183 +145343,183 @@ index 351d6db..011f617 100644
 -msgstr "Одреди који пакети пружају дату зависност"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Претражујем пакете у потрази за зависностима:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Извршавај интерактивно yum командно окружење"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Постављам yum командно окружење"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Излистај зависности пакета"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Тражим зависности: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Прикажи подешене софтверске ризнице"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "укључена"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "искључена"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Ревизија ризнице     : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Дистро ознаке ризнице: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Металинк ризнице     : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Ажурирано          : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "репо id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "статус"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "репо име"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Прикажи корисну поруку о употреби"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Није доступна помоћ за %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -138652,7 +145531,7 @@ index 351d6db..011f617 100644
 +msgstr "\n\nпсеудоними: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -138664,182 +145543,215 @@ index 351d6db..011f617 100644
 +msgstr "\n\nпсеудоним: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Постављам процес поновне инсталације"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "поновно инсталирам пакет"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Постављам процес уназађивања"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "уназади пакет"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1989,105 +2093,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
 -"Неки други програм тренутно држи yum закључаним; чекам да тај програм "
 -"изађе..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Неки други програм тренутно држи yum закључаним; чекам да тај програм изађе..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Разрешавам зависности"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -138848,7 +145760,7 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -138888,7 +145800,7 @@ index 351d6db..011f617 100644
  msgstr "Члан: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s пребачен за инсталацију"
@@ -138945,7 +145857,7 @@ index 351d6db..011f617 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Режим за пакет који снабдева %s: %s"
-@@ -2095,1017 +2204,1071 @@ msgstr "Режим за пакет који снабдева %s: %s"
+@@ -2095,1017 +2330,1142 @@ 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 :(
@@ -138956,130 +145868,140 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr "TSINFO: %s пакет захтева да %s буде означен за брисање"
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr "TSINFO: мењам %s са %s ради разрешавања зависности."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: ажурирам %s ради разрешавања зависности."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr "Не могу да пронађем путању ажурирања за зависност за: %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr "Брзо повезивање пакета %s као захтева за %s"
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr "%s је у пруженим пакетима али је већ инсталиран, уклањам га."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr "Потенцијално разрешавање пакета %s има новији примерак у ts-у."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr "Потенцијално разрешавање пакета %s има инсталиран новији примерак."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s је већ у ts-у, прескачем га"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr "TSINFO: означавам %s као ажурирање за %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Успех - празна трансакција"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Поново покрећем петљу"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Завршетак процеса зависности"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Успех - зависности су разрешене"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Проверавам зависности за %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr "тражим %s као захтев за %s"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "Покрећем compare_providers() за %s"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "боља архитектура у пакету %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s превазилази %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -139090,178 +146012,188 @@ index 351d6db..011f617 100644
 +msgstr "archdist упоредио %s са %s на %s\n  Победник: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "заједнички изворни rpm %s и %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr "заједнички префикс %s између %s и %s"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Најбољи редослед: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr "doConfigSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr "Ризници %r недостаје име у подешавањима, користим id"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "већ иницијализовани додаци"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr "doRpmDBSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Читам локални RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr "doRepoSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr "doSackSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Постављам групе пакета"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "због тога се овај репо не може вратити на почетну поставку.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr "doUpdateSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Изграђујем објекат ажурирања"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr "doGroupSetup() неће бити присутна у будућим верзијама Yum-а.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Добављам метаподатке групе"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Додајем датотеку групе из ризнице: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr "Није успело додавање датотеке групе за ризницу: %s - %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "Не постоји група која је доступна у било којој ризници"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Увозим додатне информације о списковима датотека"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -139271,24 +146203,58 @@ index 351d6db..011f617 100644
 +msgstr "Остале су недовршене трансакције. Можда би прво требало да извршите yum-complete-transaction да бисте их завршили."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -139298,35 +146264,35 @@ index 351d6db..011f617 100644
 +msgstr "\nПакети су прескочени због проблема са зависностима:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s из %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -139335,18 +146301,18 @@ index 351d6db..011f617 100644
 +msgstr "Упозорење: дошло је до грешке у скриптици или неке друге некритичне грешке током трансакције."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Није успело уклањање датотеке трансакције %s"
@@ -139354,7 +146320,7 @@ index 351d6db..011f617 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -139365,7 +146331,7 @@ index 351d6db..011f617 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
@@ -139383,32 +146349,32 @@ index 351d6db..011f617 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Нисам у могућности да проверим да ли је PID %s активан"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -139416,17 +146382,17 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Не могу да извршим контролу суме"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Пакет нема одговарајући контролну суму"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -139435,7 +146401,7 @@ index 351d6db..011f617 100644
 +msgstr "пакет нема одговарајућу вредност контролне суме или је за %s укључено кеширање"
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "користим локални %s умножак"
@@ -139446,18 +146412,21 @@ index 351d6db..011f617 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Недовољна количина простора у директоријуму %s за преузимање\n"
 -"    * слободно је %s\n"
 -"    * потребно је %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Заглавље није потпуно."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -139467,55 +146436,55 @@ index 351d6db..011f617 100644
 +msgstr "Заглавље није у локалном кешу и само начин рада са кеширањем је укључен. Не могу да преузмем %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "Јавни кључ за %s није инсталиран"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Проблем са отварањем пакета %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "Јавни кључ за %s није поверљив"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Пакет %s није потписан"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Не могу да уклоним %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s је уклоњен"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Не могу да уклоним %s датотеку %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s датотека %s је уклоњена"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s датотеке су уклоњене"
@@ -139526,19 +146495,19 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr "Постоји више од једног идентичног слагања у групи за %s"
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -139548,7 +146517,7 @@ index 351d6db..011f617 100644
 +msgstr "searchPackages() неће бити присутна у будућим Yum верзијама.                      Уместо ње користите searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Претражујем %d пакете"
@@ -139559,111 +146528,127 @@ index 351d6db..011f617 100644
 +msgstr[2] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "тражим пакет %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "тражим у уносима датотека"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "тражим у уносима достављача"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "Не постоји група под именом %s"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "пакет %s није означен у групи %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Додајем пакет %s из групе %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "Ниједан пакет под именом %s није доступан за инсталацију"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr "Група пакета %s није нађена у packagesack-у"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Нема пронађених пакета за %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Објекат пакета није био примерак објекта пакета"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Није одређено ништа за инсталацију"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Проверавам виртуелну доставу или доставу датотеке за %s"
@@ -139675,30 +146660,30 @@ index 351d6db..011f617 100644
 -msgstr "Не постоји слагање за аргумент: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Пакет %s је инсталиран и није доступан"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Нема пакета доступних за инсталацију"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Пакет: %s  - већ је у скупу трансакције"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -139706,19 +146691,19 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr "Већ је инсталирана најновија верзија пакета %s"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -139727,48 +146712,48 @@ index 351d6db..011f617 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "Ажурирам све"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Не постоји слагање за аргумент: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
  msgstr "Не ажурирам пакете који су већ ажурирани: %s.%s %s:%s-%s"
@@ -139776,43 +146761,43 @@ index 351d6db..011f617 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Ниједан пакет није одређен за уклањање"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Испитујем %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -139821,13 +146806,13 @@ index 351d6db..011f617 100644
 +msgstr "Не могу да додам пакет %s у трансакцију. Архитектура није усаглашена: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -139838,7 +146823,7 @@ index 351d6db..011f617 100644
 +msgstr "Пакет %s није инсталиран, не могу да га ажурирам. Извршите yum инсталацију да бисте га инсталирали."
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -139846,120 +146831,120 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Изузимам %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Означавам %s за инсталацију"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "Означавам %s као ажурирање за %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: не ажурира инсталирани пакет."
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Не могу да отворим датотеку: %s. Прескачем је."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Проблем при поновној инсталацији: ниједан пакет није одређен за уклањање"
 +msgstr "Проблем при поновној инсталацији: ниједан пакет није одређен за уклањање"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Нема пакета доступних за уназађивање"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "Пакету %s су дозвољене многоструке инсталације, прескачем га"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Нема доступног одговарајућег пакета: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr "Само је надградња доступна за пакет: %s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr "Рашчлањивање GPG кључа није успело: кључ нема вредност %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -139973,7 +146958,7 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -139984,7 +146969,7 @@ index 351d6db..011f617 100644
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -139995,29 +146980,29 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr "GPG кључ на %s (0x%s) је већ инсталиран"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "Није успео увоз кључа (код %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Кључ је успешно увезен"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -140028,20 +147013,20 @@ index 351d6db..011f617 100644
 +msgstr "GPG кључеви излистани за „%s“ ризницу су већ инсталирани али нису одговарајући за овај пакет.\nПроверите да ли су подешени одговарајући УРЛ-ови кључева за ову ризницу."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr "Увоз кључа(кључева) није помогао, погрешан кључ(кључеви)?"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -140052,7 +147037,7 @@ index 351d6db..011f617 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG кључ на %s (0x%s) је већ увезен"
@@ -140060,19 +147045,19 @@ index 351d6db..011f617 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Није успео увоз кључа"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -140080,117 +147065,121 @@ index 351d6db..011f617 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Не могу да пронађем одговарајући одраз."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Појавиле су се грешке за време преузимања пакета."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Пријавите ову грешку код %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Грешке при провери трансакције: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -140293,7 +147282,7 @@ index 351d6db..011f617 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3114,6 +3277,19 @@ msgstr ""
+@@ -3114,6 +3474,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr "Поновно паковање"
  
@@ -140302,7 +147291,7 @@ index 351d6db..011f617 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -140310,10 +147299,14 @@ index 351d6db..011f617 100644
 +"    * needed %s"
 +msgstr "Недовољна количина простора у директоријуму %s за преузимање\n    * слободно је %s\n    * потребно је %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3126,9 +3302,7 @@ msgstr "Није успела md5 провера за %s RPM"
+@@ -3126,9 +3503,7 @@ msgstr "Није успела md5 провера за %s RPM"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -140324,17 +147317,17 @@ index 351d6db..011f617 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3144,5 +3318,3 @@ msgstr "Оштећено заглавље %s"
+@@ -3144,5 +3519,3 @@ msgstr "Оштећено заглавље %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Грешка при отварању rpm-а %s - грешка %s"
 -
 -
 diff --git a/po/sr at latin.po b/po/sr at latin.po
-index 2576fa8..87f3bdd 100644
+index 2576fa8..1e2795d 100644
 --- a/po/sr at latin.po
 +++ b/po/sr at latin.po
-@@ -2,880 +2,918 @@
+@@ -2,880 +2,1001 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -140347,8 +147340,8 @@ index 2576fa8..87f3bdd 100644
 -"PO-Revision-Date: 2011-06-06 14:21+0000\n"
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
  "Language-Team: LANGUAGE <LL at li.org>\n"
  "MIME-Version: 1.0\n"
@@ -140359,7 +147352,7 @@ index 2576fa8..87f3bdd 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Ažuriram"
  
@@ -140370,31 +147363,31 @@ index 2576fa8..87f3bdd 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Ažurirani"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Instalirani"
  
@@ -140421,7 +147414,7 @@ index 2576fa8..87f3bdd 100644
  msgstr "Obrisano: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Uklanjam"
  
@@ -140431,69 +147424,69 @@ index 2576fa8..87f3bdd 100644
  msgstr "Čišćenje"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Naredba „%s“ je već definisana"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Postavljam riznice"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Čitam metapodatke riznica iz lokalnih datoteka"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Greška pri podešavanju: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Greška u opcijama: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Instaliran : %s-%s %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Napravio/la: %s %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Objavio/la : %s %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Morate da unesete neku komandu"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Zahtevi diska:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -140505,83 +147498,104 @@ index 2576fa8..87f3bdd 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
--msgstr ""
++msgstr "Sažetak grešaka\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
+ msgstr ""
 -"Sažetak grešaka\n"
 -"-------------\n"
-+msgstr "Sažetak grešaka\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Izlazim na komandu korisnika"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Preuzimam pakete:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Greška pri preuzimanju paketa:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Prijavite ovu grešku u %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Izvršavam proveru transakcije"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Greška pri proveri transakcije:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Provera transakcije je uspela"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Izvršavam transakciju"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -140591,18 +147605,18 @@ index 2576fa8..87f3bdd 100644
 +msgstr "Odbijam da automatski uvezem ključeve kada se izvršavanje ne nadgleda.\nZa prevazilaženje ovoga koristite „-y“."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Možda ste mislili: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Ne postoji dostupan paket %s%s%s."
@@ -140610,23 +147624,28 @@ index 2576fa8..87f3bdd 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paket(i) koji će se instalirati"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Nema šta da se radi"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paketi označeni za ažuriranje"
@@ -140637,12 +147656,12 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Nema paketa označenih za ažuriranje"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -140653,12 +147672,12 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paketi označeni za uklanjanje"
@@ -140669,14 +147688,14 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -140685,13 +147704,13 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -140699,7 +147718,7 @@ index 2576fa8..87f3bdd 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paket(i) koji će se ponovo instalirati"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -140708,58 +147727,58 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Nijedan paket nije dobavljen"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paket(i) koji će se instalirati"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Upozorenje: nije nađeno podudaranje za %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Nisu pronađena podudaranja"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Nisu pronađeni paketi za %s"
@@ -140769,119 +147788,145 @@ index 2576fa8..87f3bdd 100644
 +msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Čistim sve"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Čistim zaglavlja"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Čistim pakete"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Čistim xml metapodatke"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Čistim keš baze podataka"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Čistim expire-cache metapodatke"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Čistim dodatke"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Instalirane grupe:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Dostupne grupe:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Urađeno"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Upozorenje: grupa %s ne postoji."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Nema dostupnih paketa za instalaciju ili ažuriranje u svim zahtevanim grupama"
- 
--#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d paket(i) za instalaciju"
++
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
 +msgstr[1] ""
 +msgstr[2] ""
  
+-#: ../cli.py:1326
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d paket(i) za instalaciju"
++msgid "No Environment named %s exists"
++msgstr ""
+ 
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Ne postoji grupa pod imenom %s"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Nema paketa za uklanjanje iz grupa"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d  paket(i) za uklanjanje"
@@ -140892,20 +147937,20 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paket %s je već instaliran, preskačem ga"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -140914,18 +147959,18 @@ index 2576fa8..87f3bdd 100644
 +msgstr "Ne postoji instaliran drugi %s, dodajem ga u spisak za potencijalnu instalaciju"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Opcije dodatka"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Greška komandne linije: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -140938,355 +147983,363 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\n\n%s: %s opcija zahteva argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "prikaži ovu pomoćnu poruku i izađi"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "budi tolerantan na greške"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "mesto datoteke podešavanja"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "najduže vreme čekanja na komandu"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nivo izlaznog prikaza za pronalaženje grešaka"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
 -msgstr ""
 -"prikazuj duplikate, u riznicama, u komandama za izlistavanje/pretraživanje"
 +msgstr "prikazuj duplikate, u riznicama, u komandama za izlistavanje/pretraživanje"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "nivo izlaznog prikaza grešaka"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "tiha radnja"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "opširna radnja"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "odgovori sa da na sva pitanja"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "prikaži Yum verziju i izađi"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "postavi koreni direktorijum instalacije"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  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:2099
++#: ../cli.py:2321
  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:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "izuzmi paket(e) po imenu ili globu"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "uključi obradu zastarelih paketa u toku ažuriranja"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "isključi dodatke za Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "isključi proveru gpg potpisa"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "isključi dodatke po imenu"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "uključi dodatke po imenu"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "preskoči pakete koji imaju problema sa rešavanjem zavisnosti"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "kontroliše da li se koristi boja"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "maj"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "avg"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "dec"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Pokušavam drugi odraz."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Riznica     : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Opis        : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "d"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "da"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ne"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Da li je ovo u redu [d/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -141297,165 +148350,189 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\nGrupa: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " IB grupe: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Opis: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Obavezni paketi:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Podrazumevani paketi:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Izborni paketi:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Uslovljeni paketi:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paket: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Ne postoje zavisnosti ovog paketa"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  zavisnost: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Nezadovoljena zavisnost"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Povezan iz  :"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licenca     : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Ime datoteke: %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Ostalo      : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Ukupna veličina: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Ukupna veličina za preuzimanje: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Instaliram zbog zavisnosti"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Ažuriram zbog zavisnosti"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Uklanjam zbog zavisnosti"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Preskočeno (problemi sa zavisnostima)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paket"
 +msgid_plural "Packages"
@@ -141464,388 +148541,388 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] "Paket"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Arhitektura"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Verzija"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Riznica"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Veličina"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -883,57 +921,59 @@ msgid ""
+@@ -883,57 +1004,59 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +msgstr[2] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Uklonjeno"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Zavisnost uklonjena"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Zavisnost instalirana"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Zavisnost ažurirana"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Zamenjeno"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Neuspeh"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "dva"
  
-@@ -941,7 +981,7 @@ msgstr "dva"
+@@ -941,7 +1064,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -949,491 +989,542 @@ msgid ""
+@@ -949,491 +1072,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "prekid od strane korisnika"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Ukupno"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -141854,17 +148931,17 @@ index 2576fa8..87f3bdd 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -141877,224 +148954,225 @@ index 2576fa8..87f3bdd 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "instaliran"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "obrisan"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "ažuriran"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "prevaziđen"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Izvršava se provera transakcije"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Ponovno pokretanje razrešavanja zavisnosti sa novim promenama."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Završeno je razrešavanje zavisnosti"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Obrađujem zavisnost: %s za paket: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Nerazrešena zavisnost: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -142102,7 +149180,7 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -142110,7 +149188,7 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -142118,7 +149196,7 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -142126,40 +149204,40 @@ index 2576fa8..87f3bdd 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Sukob pri obradi: %s se sukobi sa %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
 -msgstr ""
 -"--> Popunjavam skup transakcije sa izabranim paketima. Molim vas, sačekajte."
 +msgstr "--> Popunjavam skup transakcije sa izabranim paketima. Molim vas, sačekajte."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> Preuzimam zaglavlje za %s radi pakovanja u skup transakcije."
@@ -142167,70 +149245,70 @@ index 2576fa8..87f3bdd 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Izvršava se"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Uspavan"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombi"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Praćen/zaustavljen"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Nepoznat"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Drugi program je: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Drugi program je: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Memorija: %5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Pokrenut: %s - %s ranije"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Stanje  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -142242,7 +149320,7 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\n\nIzlazim kada korisnik otkaže"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -142254,59 +149332,58 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\n\nIzlazim kada se slomi cev"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1441,50 +1532,47 @@ msgid ""
+@@ -1441,50 +1615,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Greška: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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"
 +msgstr " Možete da probate upotrebu --skip-broken opcije radi zaobilaženja problema"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, 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:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -142316,11 +149393,11 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\nZavisnosti su razrešene"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Završeno!"
  
-@@ -1496,7 +1584,7 @@ msgstr ""
+@@ -1496,7 +1661,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr "Morate biti root korisnik da biste izvršili ovu komandu."
  
@@ -142329,7 +149406,7 @@ index 2576fa8..87f3bdd 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1511,475 +1599,490 @@ msgid ""
+@@ -1511,584 +1676,653 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -142362,40 +149439,60 @@ index 2576fa8..87f3bdd 100644
  msgstr "Greška: potrebno je da dodate spisak paketa za %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Greška: potrebno je pridružiti stavku"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Greška: potrebna je grupa ili spisak grupa"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Greška: clean zahteva opciju: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Greška: pogrešan clean argument:%r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Ne postoji argument za komandno okruženje"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Ime datoteke je prosleđeno komandnom okruženju: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
 -msgstr ""
@@ -142403,7 +149500,7 @@ index 2576fa8..87f3bdd 100644
 +msgstr "Ne postoji datoteka %s, koja je prosleđena kao argument komandnom okruženju."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  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 "
@@ -142411,7 +149508,7 @@ index 2576fa8..87f3bdd 100644
 +msgstr "Greška: više od jedne datoteke je prosleđeno kao argument komandnom okruženju."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -142419,112 +149516,112 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKET..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Instalirajte paket ili pakete na vaš sistem"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Postavljam proces instalacije"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKET...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Ažuriraj paket ili pakete na vašem sistemu"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Postavljam proces ažuriranja"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Instalirani paketi"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Dostupni paketi"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Dodatni paketi"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Ažurirani paketi"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Prevaziđeni paketi"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Nedavno dodati paketi"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Ne postoje odgovarajući paketi za izlistavanje"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Izlistaj pakete ili grupe paketa"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Uklonite paket ili pakete sa vašeg sistema"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Postavljam proces uklanjanja"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Postavljam proces za grupe"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Ne postoji grupa nad kojom se može izvršiti komanda"
  
@@ -142535,7 +149632,7 @@ index 2576fa8..87f3bdd 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Instalirajte pakete u grupi na vašem sistemu"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
@@ -142543,79 +149640,79 @@ index 2576fa8..87f3bdd 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Uklonite pakete u grupi sa vašeg sistema"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Prikaži detalje o grupi paketa"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Napravi keš sa metapodacima"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Pravim keš datoteke za sve datoteke sa metapodacima."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Napravljen je keš sa metapodacima"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Ukloni keširane podatke"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Pronađi koji paket pruža datu vrednost"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Proverite da li su dostupna ažuriranja paketa"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Pretražite detalje o paketu za zadatu nisku"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Pretražujem pakete: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Ažurirajte pakete uzimajući prevaziđene u obzir"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Postavljam proces nadgradnje"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Instaliraj lokalni RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Postavljam proces lokalnih paketa"
  
@@ -142624,183 +149721,183 @@ index 2576fa8..87f3bdd 100644
 -msgstr "Odredi koji paketi pružaju datu zavisnost"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Pretražujem pakete u potrazi za zavisnostima:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Izvršavaj interaktivno yum komandno okruženje"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Postavljam yum komandno okruženje"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Izlistaj zavisnosti paketa"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Tražim zavisnosti: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Prikaži podešene softverske riznice"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "uključena"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "isključena"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Revizija riznice     : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Distro oznake riznice: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Metalink riznice     : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Ažurirano          : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "repo id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "repo ime"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Prikaži korisnu poruku o upotrebi"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Nije dostupna pomoć za %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -142812,7 +149909,7 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\n\npseudonimi: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -142824,182 +149921,215 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\n\npseudonim: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Postavljam proces ponovne instalacije"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "ponovno instaliram paket"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Postavljam proces unazađivanja"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "unazadi paket"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1990,105 +2093,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++msgstr[2] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
 -"Neki drugi program trenutno drži yum zaključanim; čekam da taj program "
 -"izađe..."
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+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..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Razrešavam zavisnosti"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -143008,7 +150138,7 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -143048,7 +150178,7 @@ index 2576fa8..87f3bdd 100644
  msgstr "Član: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s prebačen za instalaciju"
@@ -143105,7 +150235,7 @@ index 2576fa8..87f3bdd 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Režim za paket koji snabdeva %s: %s"
-@@ -2096,1017 +2204,1071 @@ msgstr "Režim za paket koji snabdeva %s: %s"
+@@ -2096,1017 +2330,1142 @@ 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 :(
@@ -143116,130 +150246,140 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, 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:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Uspeh - prazna transakcija"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Ponovo pokrećem petlju"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Završetak procesa zavisnosti"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Uspeh - zavisnosti su razrešene"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Proveravam zavisnosti za %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "bolja arhitektura u paketu %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s prevazilazi %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -143250,178 +150390,188 @@ index 2576fa8..87f3bdd 100644
 +msgstr "archdist uporedio %s sa %s na %s\n  Pobednik: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "zajednički izvorni rpm %s i %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Najbolji redosled: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "već inicijalizovani dodaci"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Čitam lokalni RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Postavljam grupe paketa"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Izgrađujem objekat ažuriranja"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Dobavljam metapodatke grupe"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Dodajem datoteku grupe iz riznice: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  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:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Uvozim dodatne informacije o spiskovima datoteka"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -143431,24 +150581,58 @@ index 2576fa8..87f3bdd 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -143458,35 +150642,35 @@ index 2576fa8..87f3bdd 100644
 +msgstr "\nPaketi su preskočeni zbog problema sa zavisnostima:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s iz %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -143495,18 +150679,18 @@ index 2576fa8..87f3bdd 100644
 +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:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Nije uspelo uklanjanje datoteke transakcije %s"
@@ -143514,7 +150698,7 @@ index 2576fa8..87f3bdd 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -143525,7 +150709,7 @@ index 2576fa8..87f3bdd 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
@@ -143543,32 +150727,32 @@ index 2576fa8..87f3bdd 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Nisam u mogućnosti da proverim da li je PID %s aktivan"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -143576,17 +150760,17 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Ne mogu da izvršim kontrolu sume"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paket nema odgovarajući kontrolnu sumu"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -143595,7 +150779,7 @@ index 2576fa8..87f3bdd 100644
 +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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "koristim lokalni %s umnožak"
@@ -143606,18 +150790,21 @@ index 2576fa8..87f3bdd 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ 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:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Zaglavlje nije potpuno."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -143627,55 +150814,55 @@ index 2576fa8..87f3bdd 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "Javni ključ za %s nije instaliran"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problem sa otvaranjem paketa %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "Javni ključ za %s nije poverljiv"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Paket %s nije potpisan"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Ne mogu da uklonim %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s je uklonjen"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Ne mogu da uklonim %s datoteku %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s datoteka %s je uklonjena"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s datoteke su uklonjene"
@@ -143686,19 +150873,19 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -143708,7 +150895,7 @@ index 2576fa8..87f3bdd 100644
 +msgstr "searchPackages() neće biti prisutna u budućim Yum verzijama.                      Umesto nje koristite searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Pretražujem %d pakete"
@@ -143719,111 +150906,127 @@ index 2576fa8..87f3bdd 100644
 +msgstr[2] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "tražim paket %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "tražim u unosima datoteka"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "tražim u unosima dostavljača"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "paket %s nije označen u grupi %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Dodajem paket %s iz grupe %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Nema pronađenih paketa za %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Objekat paketa nije bio primerak objekta paketa"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Nije određeno ništa za instalaciju"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Proveravam virtuelnu dostavu ili dostavu datoteke za %s"
@@ -143835,30 +151038,30 @@ index 2576fa8..87f3bdd 100644
 -msgstr "Ne postoji slaganje za argument: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Paket %s je instaliran i nije dostupan"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Nema paketa dostupnih za instalaciju"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Paket: %s  - već je u skupu transakcije"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -143866,19 +151069,19 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
 -msgstr ""
@@ -143887,48 +151090,48 @@ index 2576fa8..87f3bdd 100644
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Ne postoji slaganje za argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -143936,43 +151139,43 @@ index 2576fa8..87f3bdd 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Nijedan paket nije određen za uklanjanje"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Ispitujem %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -143981,13 +151184,13 @@ index 2576fa8..87f3bdd 100644
 +msgstr "Ne mogu da dodam paket %s u transakciju. Arhitektura nije usaglašena: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -143998,7 +151201,7 @@ index 2576fa8..87f3bdd 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -144006,120 +151209,120 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Izuzimam %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Označavam %s za instalaciju"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, 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:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
 -msgstr ""
 -"Problem pri ponovnoj instalaciji: nijedan paket nije određen za uklanjanje"
 +msgstr "Problem pri ponovnoj instalaciji: nijedan paket nije određen za uklanjanje"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Nema paketa dostupnih za unazađivanje"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Nema dostupnog odgovarajućeg paketa: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -144133,7 +151336,7 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -144144,7 +151347,7 @@ index 2576fa8..87f3bdd 100644
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -144155,29 +151358,29 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, 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:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Ključ je uspešno uvezen"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -144188,20 +151391,20 @@ index 2576fa8..87f3bdd 100644
 +msgstr "GPG ključevi izlistani za „%s“ riznicu su već instalirani ali nisu odgovarajući za ovaj paket.\nProverite da li su podešeni odgovarajući URL-ovi ključeva za ovu riznicu."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -144212,7 +151415,7 @@ index 2576fa8..87f3bdd 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG ključ na %s (0x%s) je već uvezen"
@@ -144220,19 +151423,19 @@ index 2576fa8..87f3bdd 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Nije uspeo uvoz ključa"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -144240,117 +151443,121 @@ index 2576fa8..87f3bdd 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Ne mogu da pronađem odgovarajući odraz."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Pojavile su se greške za vreme preuzimanja paketa."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Prijavite ovu grešku kod %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Greške pri proveri transakcije: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr ""
- 
+-msgid " aborting."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -144453,7 +151660,7 @@ index 2576fa8..87f3bdd 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3115,6 +3277,19 @@ msgstr ""
+@@ -3115,6 +3474,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr "Ponovno pakovanje"
  
@@ -144462,7 +151669,7 @@ index 2576fa8..87f3bdd 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -144470,10 +151677,14 @@ index 2576fa8..87f3bdd 100644
 +"    * needed %s"
 +msgstr "Nedovoljna količina prostora u direktorijumu %s za preuzimanje\n    * slobodno je %s\n    * potrebno je %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3127,9 +3302,7 @@ msgstr "Nije uspela md5 provera za %s RPM"
+@@ -3127,9 +3503,7 @@ msgstr "Nije uspela md5 provera za %s RPM"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -144484,17 +151695,17 @@ index 2576fa8..87f3bdd 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3145,5 +3318,3 @@ msgstr "Oštećeno zaglavlje %s"
+@@ -3145,5 +3519,3 @@ msgstr "Oštećeno zaglavlje %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Greška pri otvaranju rpm-a %s - greška %s"
 -
 -
 diff --git a/po/sv.po b/po/sv.po
-index b9c109b..e688792 100644
+index b9c109b..57ce514 100644
 --- a/po/sv.po
 +++ b/po/sv.po
-@@ -2,946 +2,969 @@
+@@ -2,946 +2,1052 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -144511,9 +151722,9 @@ index b9c109b..e688792 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Swedish (http://www.transifex.net/projects/p/yum/team/sv/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-07-22 09:08+0000\n"
-+"Last-Translator: Ulrika <aurorauddeborg at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Swedish (http://www.transifex.com/projects/p/yum/language/sv/)\n"
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -144523,7 +151734,7 @@ index b9c109b..e688792 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Uppdaterar"
  
@@ -144534,31 +151745,31 @@ index b9c109b..e688792 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../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:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Uppdaterade"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Installerade"
  
@@ -144585,7 +151796,7 @@ index b9c109b..e688792 100644
  msgstr "Raderade: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Tar bort"
  
@@ -144595,69 +151806,69 @@ index b9c109b..e688792 100644
  msgstr "Rensar upp"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Kommando \"%s\" redan definierat"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Gör i ordning förråd"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  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:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Konfigurationsfel: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Fel bland flaggor: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Installerade: %s-%s %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Byggde      : %s %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Verkställde : %s %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Du måste ange något kommando"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, 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:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Diskbehov:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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"
@@ -144668,7 +151879,7 @@ index b9c109b..e688792 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -144678,73 +151889,95 @@ index b9c109b..e688792 100644
 +msgstr "Felsammandrag\n-------------\n"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Det går inte att skapa en låsfil, avslutar"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Ett annat program håller för närvarande yum-låset, avslutar som konfigurerad av exit_on_lock"
++
++#: ../cli.py:532
  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:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " bortser ifrån, som begärt."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " avbryter."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Avslutar på användarens order"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Hämtar paket:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Fel när paket hämtades:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Kör transaktionskontroll"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  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:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "FEL med transaktionskontroll mot depsolve:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM behöver uppdateras"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Vänligen rapportera detta fel i %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Kör transaktionstest"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Transaktionskontrollfel:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Transaktionskontrollen lyckades"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Kör transaktionen"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -144754,18 +151987,18 @@ index b9c109b..e688792 100644
 +msgstr "Vägrar att automatiskt importera nycklar vid oövervakad körning.\nAnvänd \"-y\" för att åsidosätta."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Du kanske menade: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Inget paket %s%s%s tillgängligt."
@@ -144773,7 +152006,12 @@ index b9c109b..e688792 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Paket att installera"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -144782,13 +152020,13 @@ index b9c109b..e688792 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Inget att göra"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d paket noterade att uppdateras"
@@ -144798,12 +152036,12 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket noterade att uppdateras"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Inga paket noterade att uppdateras"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d paket noterade för distributionssynkronisering"
@@ -144813,12 +152051,12 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket noterade för distributionssynkronisering"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr "Inga paket noterade för distributionssynkronisering"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d paket noterade att tas bort"
@@ -144828,14 +152066,14 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket noterade att tas bort"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  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:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -144843,13 +152081,13 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket att nedgradera"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (från %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Installerat paket %s%s%s%s inte tillgängligt."
@@ -144857,7 +152095,7 @@ index b9c109b..e688792 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Paket att ominstallera"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -144865,22 +152103,22 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket att ominstallera"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Inga paket angivna"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Paket att installera"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "N/S matchade: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -144889,7 +152127,7 @@ index b9c109b..e688792 100644
 +msgstr "  Matchning %sendast%s av namn och sammandrag, använd \"search all\" för allting."
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -144899,13 +152137,13 @@ index b9c109b..e688792 100644
 +msgstr "  Matchning %sendast%s av fullständigt namn och sammandrag, använd \"search all\" för allting."
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Matchade: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -144914,18 +152152,18 @@ index b9c109b..e688792 100644
 +msgstr "  Matchning %shuvudsakligen%s av namn och sammandrag, använd \"search all\" för allting."
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Varning: Ingen matchning hittades för: %s"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Inga matchningar hittades"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Inga paket hittades för %s"
@@ -144935,118 +152173,145 @@ index b9c109b..e688792 100644
 +msgstr "Error: No Packages found for:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Rensar förråd: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Rensar upp allt"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Rensar upp huvuden"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Rensar upp paket"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Rensar upp xml-metadata"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Rensar upp databas-cache"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Rensar upp expire-cache-metadata"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Rensar upp cachad rpmdb-data"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Rensar upp insticksmoduler"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Varning: Inga grupper matchar: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Varning: Inga grupper matchar: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Installerade grupper:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Installerade språkgrupper:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Tillgängliga grupper:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Tillgängliga språkgrupper:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Klart"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Varning: Grupp %s finns inte."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  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"
 +msgstr "Inget paket i någon begärd grupp är tillgängligt för installation eller uppdatering"
++
++#: ../cli.py:1885
++#, 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:1326
-+#: ../cli.py:1705
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
  #, 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"
++msgid "No Environment named %s exists"
++msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Ingen grupp med namnet %s finns"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Inget paket att ta bort från grupper"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d paket att ta bort"
@@ -145056,20 +152321,20 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d paket att ta bort"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Paket %s är redan installerat, hoppar över"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
 -msgstr ""
@@ -145077,18 +152342,18 @@ index b9c109b..e688792 100644
 +msgstr "Ingen annat %s installerat, lägger till listan för potentiell installation"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Insticksmodulsalternativ"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Kommandoradsfel: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -145101,354 +152366,362 @@ index b9c109b..e688792 100644
 +msgstr "\n\n%s: flaggan %s behöver ett argument"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  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:1999
++#: ../cli.py:2218
  #, 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:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "visa detta hjälpmeddelande och avsluta"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "var tolerant vid fel"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  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:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "konfigurationsfilens plats"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "maximal tid att vänta på kommandon"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "nivå på felsökningsutskrifter"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  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:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "nivå på felutskrifter"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "nivå på felsökningsutskrifter för rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "tyst operation"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "utförlig operation"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "svara ja på alla frågor"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "svara nej på alla frågor"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "visa Yum-version och avsluta"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "ange installationsrot"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr "aktivera ett eller flera förråd (jokrertecken tillåts)"
 +msgstr "aktivera ett eller flera förråd (jokertecken tillåts)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr "inaktivera ett eller flera förråd (jokertecken tillåts)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "uteslut paket via namn eller mönster"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  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:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "aktivera bearbetning av utfasningar under uppdateringar"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "inaktivera Yum-insticksmoduler"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "inaktivera kontroll av gpg-signatur"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "inaktivera insticksmoduler efter namn"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "aktivera insticksmoduler efter namn"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "hoppa över paket med problem vid beroendeupplösning"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "styr om färg skall användas"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  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:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "sätt godtyckliga konfigurations- och förrådsalternativ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "jan"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "feb"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "mar"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "apr"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "maj"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "jun"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "jul"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "aug"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "sep"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "okt"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "nov"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "dec"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Försöker med en annan spegel."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Namn        : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Arkitektur  : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Epok        : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Version     : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Utgåva      : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Storlek     : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Förråd      : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Från förråd : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Verkställare: %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Verkställt  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Byggt       : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Installerat : %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Installerat av: %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Ändrat av   : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Sammandrag  : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "URL         : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Licens      : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Beskrivning : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "j"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "ja"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "nej"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Är detta ok [j/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -145459,166 +152732,190 @@ index b9c109b..e688792 100644
 +msgstr "\nGrupp: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Grupp-id: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Beskrivning: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Språk: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Obligatoriska paket:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Standardpaket:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Valfria paket:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Villkorliga paket:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "paket: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Inga beroenden för detta paket"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  beroende: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Ej uppfyllt beroende"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Matchat från:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Licens      : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Filnamn     : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Övrigt      : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  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:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Total storlek: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Total storlek att hämta: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Installerad storlek: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Ett fel uppstod vid beräkningen av installerad storlek"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Ominstallerar"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Nedgraderar"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Installerar på grund av beroenden"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Uppdaterar på grund av beroenden"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Tar bort på grund av beroenden"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Hoppas över (beroendeproblem)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Inte installerat"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Ej tillgängliga"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Paket"
 +msgid_plural "Packages"
@@ -145626,33 +152923,33 @@ index b9c109b..e688792 100644
 +msgstr[1] "Paket"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Ark"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Version"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Förråd"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Storl."
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     ersätter  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -145668,7 +152965,7 @@ index b9c109b..e688792 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Installerar   %5.5s paket\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Installera"
  
@@ -145676,7 +152973,7 @@ index b9c109b..e688792 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Uppdaterar    %5.5s Paket\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Uppgradera"
  
@@ -145684,7 +152981,7 @@ index b9c109b..e688792 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Tar bort      %5.5s paket\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Ta bort"
  
@@ -145692,7 +152989,7 @@ index b9c109b..e688792 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Ominstallerar %5.5s paket\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Ominstallation"
  
@@ -145700,58 +152997,58 @@ index b9c109b..e688792 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Nedgraderar   %5.5s paket\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Nedgradering"
- 
--#: ../output.py:1165
-+#: ../output.py:1544
++
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Beroende paket"
 +msgstr[1] "Beroende paket"
-+
-+#: ../output.py:1604
+ 
+-#: ../output.py:1165
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Borttagna"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Borttagna beroenden"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Installerade beroenden"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Uppdaterade beroenden"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Ersatte"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Misslyckade"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "två"
  
-@@ -949,565 +972,598 @@ msgstr "två"
+@@ -949,565 +1055,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -145764,57 +153061,57 @@ index b9c109b..e688792 100644
 +msgstr "\n Aktuell nedladdning avbröts, %savbryt (ctrl-c) igen%s inom %s%s%s sekunder\nför att avsluta.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "avbrott från användaren"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Totalt"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "UF"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "R"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "O"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "N"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<ej satt>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "System"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
@@ -145822,206 +153119,206 @@ index b9c109b..e688792 100644
 +msgstr "Hoppar över sammanslagen transaktion %d till %d, eftersom de överlappar"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Inga transaktioner"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Felaktiga transaktions ID:n, eller paket, angivna"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Kommandorad"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Inloggad användare"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Datum och tid"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Åtgärd(er)"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Ändrade"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Inget transaktions-ID angivet"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Felaktigt transaktions-ID angivet"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Hittade inte angivet transaktions-ID"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Hittade mer än ett transaktions-ID!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Inget transaktions-ID, eller paket, angivet"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Nedgraderade"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Äldre"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Nyare"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Transaktions-ID:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Starttid       :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Start-rpmdb    :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u sekunder)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u minuter)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u timmar)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u dagar)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Sluttid        : "
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Slut-rpmdb     :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Användare      :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Returkod       :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Avbruten"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Misslyckanden:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Misslyckades:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Lyckades"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Kommandoradsfel:"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, 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:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Transaktionen utförd med:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Ändrade paket:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Överhoppade paket:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Rpmdb-problem:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Skriptutdata:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Fel:"
  
@@ -146030,17 +153327,17 @@ index b9c109b..e688792 100644
 -msgstr "Installation"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Ber-inst"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Fasar ut"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Radering"
  
@@ -146053,224 +153350,226 @@ index b9c109b..e688792 100644
 -msgstr "Nedgradering"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Uppdatering"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Tid"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Senaste dagen"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Senaste veckan"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Senaste 2 veckorna"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Senaste 3 månaderna"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Senaste 6 månaderna"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Senaste året"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Mer än ett år tillbaka"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Ingen transaktion %s funnen"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Transaktions-ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Tillgänglig ytterligare historieinformation"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, 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:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paket          :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Tillstånd      :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Storlek        :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Byggvärd       :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Byggtid        :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Paketerare     : "
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Leverantör     :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Licens         : "
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Käll-RPM       : "
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Verkställt     :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Verkställare   :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Orsak          :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Från förråd    :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Installerat av :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Ändrat av      :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "installerat"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "en uppdatering"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "raderat"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "ominstallerat"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "en nedgradering"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "utfasning"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "uppdaterat"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "utfasat"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Kör transaktionskontroll"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Startar om beroendeupplösning med nya ändringar."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Avslutade beroendeupplösning"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Bearbetar beroende: %s för paket: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Behåller paketet: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Behåller paketet: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Ej upplöst beroende: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Paket: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -146281,7 +153580,7 @@ index b9c109b..e688792 100644
 +msgstr "\n    Behöver: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -146292,7 +153591,7 @@ index b9c109b..e688792 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -146303,7 +153602,7 @@ index b9c109b..e688792 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -146314,38 +153613,38 @@ index b9c109b..e688792 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Uppdaterat av"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Nedgraderat av"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Utfasat av"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Tillgängliga"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Bearbetar konflikt: %s står i konflikt med %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  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:2915
++#: ../output.py:2983
  #, 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."
@@ -146353,70 +153652,70 @@ index b9c109b..e688792 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Verifierar"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Kör"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Sover"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Oavbrytbar"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Zombie"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "Spårad/Stoppad"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Okänd"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Det andra programmet är: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Det andra programmet är: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Minne   : %5s RSS (%5s B VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Startade: %s - för %s sedan"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Status  : %s, pid: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -146428,7 +153727,7 @@ index b9c109b..e688792 100644
 +msgstr "\n\nSlutar efter att användaren avbröt"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -146440,7 +153739,7 @@ index b9c109b..e688792 100644
 +msgstr "\n\nSlutar med brutet rör (pipe)"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -146453,51 +153752,49 @@ index b9c109b..e688792 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Ett annat program håller för närvarande yum-låset, avslutar som konfigurerad"
 -" av exit_on_lock"
-+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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Insticksmodulsavslutsfel: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum-fel: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Fel: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Okänt fel: Felkod: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -146507,11 +153804,11 @@ index b9c109b..e688792 100644
 +msgstr "\nBeroenden upplösta"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Klart!"
  
-@@ -1519,7 +1575,7 @@ msgstr " Minianvändning:\n"
+@@ -1519,7 +1652,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."
  
@@ -146520,7 +153817,7 @@ index b9c109b..e688792 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1534,476 +1590,490 @@ msgid ""
+@@ -1534,585 +1667,650 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -146554,51 +153851,71 @@ index b9c109b..e688792 100644
  msgstr "Fel: Behöver skicka en lista paket till %s"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Fel: Behöver något att matcha emot"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Fel: Behöver en grupp eller lista av grupper"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Fel: clean behöver ett argument: %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Fel: felaktigt argument till clean: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Inget argument till skalet"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "Filnamn skickat till skalet: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, 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:176
++#: ../yumcommands.py:228
  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:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -146610,114 +153927,114 @@ index b9c109b..e688792 100644
 +msgstr "Det finns inga aktiverade förråd.\n 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:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "PAKET..."
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Installera ett eller flera paket på ditt system"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Förbereder installationsprocessen"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[PAKET...]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Uppdatera ett eller flera paket på ditt system"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Förbereder uppdateringsprocessen"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Synkroniser installerade paket med de senaste tillgängliga versionerna"
 +msgstr "Synkroniser installerade paket med de senaste tillgängliga versionerna"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Förbereder distributionssynkroniseringsprocessen"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  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:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Installerade paket"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Tillgängliga paket"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Extra paket"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Uppdaterade paket"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Fasar ut paket"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Nyligen tillagda paket"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "Inga matchande paket att lista"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Lista ett paket eller en grupp paket"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  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:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Förbereder processen att ta bort"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Visa, eller använd, gruppinformationen"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Förbereder grupprocessen"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Inga grupper att köra kommandot på"
  
@@ -146728,7 +154045,7 @@ index b9c109b..e688792 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Installera paketen i en grupp på ditt system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Ogiltigt underkommando till group, använd: %s."
@@ -146736,79 +154053,79 @@ index b9c109b..e688792 100644
 -#: ../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:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Visa detaljer om en paketgrupp"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Generera metadata-cache:n"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Skapar cache-filer för alla metadatafiler."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  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:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Metadata-cache skapad"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Ta bort cache:ade data"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  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:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Leta efter tillgängliga paketuppdateringar"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Sök i paketdetaljer efter den angivna strängen"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Söker paket: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Uppdatera paket med hänsyn tagen till utfasningar"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Förbereder uppgraderingsprocessen"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Installera en lokal RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Förbereder den lokala paketprocessen"
  
@@ -146817,150 +154134,150 @@ index b9c109b..e688792 100644
 -msgstr "Avgör vilket paket som tillhandahåller ett angivet beroende"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Söker i paketen efter beroende:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Kör ett interactivt yum-skal"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Förbereder ett yum-skal"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Lista ett pakets beroenden"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Letar efter beroenden: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Visa konfigurerade programvaruförråd"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "aktivt"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "inaktivt"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Förråds-id      : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Förrådsnamn     : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Förrådsstatus   : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Förrådsversion  : "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Förrådstaggar   : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Förråds-distro-taggar: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Förråd uppdaterat: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Förrådspaket    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Förrådstorlek   : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Förrådsbasurl   : "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Förrådsmetalänk : "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Uppdaterat    :"
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Förrådspeglar   : "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Aldrig (senast: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Omedelbart (senast: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s sekunder (senast: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Förråd går ut    : "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Förråd utesluter : "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Förråd inkluderar: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Förråd uteslutet : "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Förrådfilnamn: "
@@ -146968,33 +154285,33 @@ index b9c109b..e688792 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "förråds-id"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "status"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "förrådsnamn"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Visa ett hjälpsamt meddelande om användning"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Ingen hjälp tillgänglig för %s"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -147006,7 +154323,7 @@ index b9c109b..e688792 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -147018,182 +154335,214 @@ index b9c109b..e688792 100644
 +msgstr "\n\nalias: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Förbereder ominstallationsprocessen"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "ominstallera ett paket"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Förbereder nedgraderingsprocessen"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "nedgradera ett paket"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  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:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Yum versionsgrupper:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Grupp:"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Paket:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Installerade:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Gruppinstallerade:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Tillgängliga:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Grupptillgängliga:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Visa, eller använd, transaktionshistorien"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Transaktioner:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Starttid    :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Sluttid     : "
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Antal       :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm-DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum-DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Ogiltigt underkommando till history, använd: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  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:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Kontrollera om det finns problem i rpmdb:n"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "läs in en sparad transaktion från filnamn"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Ingen fil med sparad transaktion angiven."
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "läser in transaktionen från %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Transaktionen inläst från %s med %s medlemmar"
-@@ -2014,105 +2084,110 @@ msgstr "Transaktionen inläst från %s med %s medlemmar"
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Yums kontroller misslyckades: %s"
  
 -#: ../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 "Inga läs-/körrättigheter i aktuell katalog, flyttar till /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
- msgstr ""
+-msgstr ""
 -"Ett annat program håller för närvarande yum-låset, väntar på att den skall "
 -"avsluta ..."
++#: ../yummain.py:98
++msgid "No read/execute access in current directory, moving to /"
++msgstr "Inga läs-/körrättigheter i aktuell katalog, flyttar till /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Det går inte att skapa en låsfil, avslutar"
+-msgid "Can't create lock file; exiting"
+-msgstr "Det går inte att skapa en låsfil, avslutar"
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr ""
  
-+#: ../yummain.py:134
-+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 ..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Löser upp beroenden"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, 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"
@@ -147203,7 +154552,7 @@ index b9c109b..e688792 100644
 +msgstr "Din transaktion sparades, kör om den med:\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -147243,7 +154592,7 @@ index b9c109b..e688792 100644
  msgstr "Medlem: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s konverterad till att installera"
@@ -147300,7 +154649,7 @@ index b9c109b..e688792 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Läge för paket som tillhandahåller %s: %s"
-@@ -2120,1040 +2195,1069 @@ msgstr "Läge för paket som tillhandahåller %s: %s"
+@@ -2120,1040 +2318,1140 @@ 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 :(
@@ -147311,44 +154660,54 @@ index b9c109b..e688792 100644
  msgstr "Försöker uppdatera %s för att lösa upp beroenden"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, 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:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, 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:509
++#: ../yum/depsolve.py:527
  #, 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:512
++#: ../yum/depsolve.py:530
  #, 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:520
++#: ../yum/depsolve.py:538
  #, 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:551
++#: ../yum/depsolve.py:569
  #, 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:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -147357,87 +154716,87 @@ index b9c109b..e688792 100644
 +msgstr "%s finns bland tillhandahållande paket men det är redan installerat, tar bort."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, 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:620
++#: ../yum/depsolve.py:638
  #, 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:638
++#: ../yum/depsolve.py:656
  #, 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:687
++#: ../yum/depsolve.py:705
  #, 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:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Klart - tom transaktion"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Startar om slingan"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Beroendeprocessen avslutas"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Klart - beroenden upplösta"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Kontrollerar beroenden för %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, 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:1304
++#: ../yum/depsolve.py:1349
  #, 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:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "bättre arkitektur i po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s fasar ut %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -147448,25 +154807,25 @@ index b9c109b..e688792 100644
 +msgstr "arkitekturavstånd jämför %s med %s på %s\n  Vinnare: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "samma käll-rpm %s och %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, 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:1481
++#: ../yum/depsolve.py:1526
  #, 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:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "behöver minst: %d"
@@ -147474,153 +154833,163 @@ index b9c109b..e688792 100644
 +msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr "Vinnare: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "behöver minst: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Förlorare(med %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Bästa ordning: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  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:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, 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:560
++#: ../yum/__init__.py:578
  #, 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:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "insticksmoduler redan initierade"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  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:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Läser lokal RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  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:719
++#: ../yum/__init__.py:722
  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:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Förbereder paketsäckar"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  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:803
++#: ../yum/__init__.py:806
  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:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Bygger uppdateringsobjekt"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  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:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Hämtar gruppmetadata"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, 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:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, 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:929
++#: ../yum/__init__.py:930
  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:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Hämtar pakettaggsmetadata"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, 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:965
++#: ../yum/__init__.py:966
  #, 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:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Importerar ytterligare fillisteinformation"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -147630,24 +154999,58 @@ index b9c109b..e688792 100644
 +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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Letar efter överblivna beroenden som inte behövs"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Skyddade multilibversioner: %s ≠ %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, 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:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -147657,14 +155060,14 @@ index b9c109b..e688792 100644
 +msgstr "\nPaket hoppades över på grund av beroendeproblem:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s från %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -147673,22 +155076,22 @@ index b9c109b..e688792 100644
 +msgstr "** Hittade %d redan befintliga tidigare rpmdb-problem, ”yum check”-utdata följer:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Varning: RPMDB ändrad utanför yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "saknade behov"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "installerade konflikter"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -147697,18 +155100,18 @@ index b9c109b..e688792 100644
 +msgstr "Varning: skript- eller annat icke ödesdigert fel inträffade under transaktionen."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Transaktionen kunde inte starta:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Kunde inte köra transaktionen."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Kunde inte ta bort transaktionsfilen %s"
@@ -147716,7 +155119,7 @@ index b9c109b..e688792 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s skulle installerats men gjordes det inte!"
@@ -147727,7 +155130,7 @@ index b9c109b..e688792 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s skulle tagits bort men det gjordes inte!"
@@ -147745,32 +155148,32 @@ index b9c109b..e688792 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, 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:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Kunde inte öppna låset %s: %s "
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Kan inte kontrollera om PID %s är aktiv"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -147781,17 +155184,17 @@ index b9c109b..e688792 100644
 +msgstr "Paketet matchar inte den avsedda hämtningen.  Förslag: kör yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Kunde inte utföra kontrollsummering"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Paketet stämmer inte med kontrollsumman"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
 -msgstr ""
@@ -147799,7 +155202,7 @@ index b9c109b..e688792 100644
 +msgstr "paketet misslyckas med kontrollsumman men cachning är aktiverat för %s"
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "använder lokal kopia av %s"
@@ -147810,18 +155213,21 @@ index b9c109b..e688792 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
 -"Otillräckligt utrymme i hämtningskatalogen %s\n"
 -"    * fritt   %s\n"
 -"    * behovet %s"
--
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Huvudet är inte komplett."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -147831,55 +155237,55 @@ index b9c109b..e688792 100644
 +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:2396
++#: ../yum/__init__.py:2471
  #, 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:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Problem att öppna paketet %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, 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:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Paket %s är inte signerat"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Det går inte att ta bort %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s borttaget"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, 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:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s-filen %s borttagen"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s-filer borttagna"
@@ -147889,19 +155295,19 @@ index b9c109b..e688792 100644
 +msgstr[1] "%d %s-filer borttagna"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, 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:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -147911,7 +155317,7 @@ index b9c109b..e688792 100644
 +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:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Söker i %d paket"
@@ -147921,148 +155327,165 @@ index b9c109b..e688792 100644
 +msgstr[1] "Söker i %d paket"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "söker i paketet %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "söker i filposter"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "söker i tillhandahållandeposter"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, 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:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "paket %s noterades inte i gruppen %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, 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:3402
++#: ../yum/__init__.py:3649
  #, 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:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Varning: Gruppen %s har inte några paket."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Varning: Gruppen %s har inte några paket."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, 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."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, 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:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, 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:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Inga paket hittades för %s"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Paketobjektet var inte en paketobjektinstans"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Inget angivet att installeras"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
 -msgstr ""
 -"Kontrollerar virtuella tillhandahållanden eller filtillhandahållanden för %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
 -#, python-format
 -msgid "No Match for argument: %s"
 -msgstr "Ingen matchning för argument: %s"
--
++msgstr "Kontrollerar virtuella tillhandahållanden eller filtillhandahållanden för %s"
+ 
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Paket %s installerat och inte tillgänligt"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Inga paket tillgängliga att installera"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Paket: %s - redan i transaktionsmängden"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, 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:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -148073,67 +155496,67 @@ index b9c109b..e688792 100644
 +msgstr "Paket %s fasas ut av %s, men paketet som fasar ut tillhandahåller inte behoven"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, 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:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  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:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Ingen matchning för argument: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Inget paket att uppgradera matchar: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, 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:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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"
@@ -148141,43 +155564,43 @@ index b9c109b..e688792 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Inget paket att tas bort matchar"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Inget paket att ta bort matchar: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Hoppar över den körande kärnan: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Ta bort %s från transaktionen"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, 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:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Undersöker %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
@@ -148187,7 +155610,7 @@ index b9c109b..e688792 100644
 +msgstr "Kan inte lägga till paket %s till transaktionen.  Inte en kompatibel arkitektur: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -148196,7 +155619,7 @@ index b9c109b..e688792 100644
 +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:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -148207,7 +155630,7 @@ index b9c109b..e688792 100644
 +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:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -148218,95 +155641,95 @@ index b9c109b..e688792 100644
 +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:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Utesluter %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Noterar %s för installation"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, 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:4772
++#: ../yum/__init__.py:5225
  #, 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:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, 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:4846
++#: ../yum/__init__.py:5299
  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:4872
++#: ../yum/__init__.py:5325
  #, 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:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Inga paket tillgängliga att nedgradera"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, 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:5039
++#: ../yum/__init__.py:5496
  #, 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:5046
++#: ../yum/__init__.py:5506
  #, 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:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Misslyckades nedgradera: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Misslyckades att uppgradera: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Hämtar nyckel från %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
@@ -148315,24 +155738,24 @@ index b9c109b..e688792 100644
 +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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr "GPG-nyckelsignatur verifierad mot CA-nycklar"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Ogiltig GPG-nyckel från %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, 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:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -148351,7 +155774,7 @@ index b9c109b..e688792 100644
 +msgstr "Importerar %s-nyckel 0x%s:\n Användarid   : ”%s”\n Fingeravtryck: %s\n Paket        : %s (%s)\n Från         : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -148362,7 +155785,7 @@ index b9c109b..e688792 100644
 +" From       : %s"
 +msgstr "Importerar %s-nyckel 0x%s:\n Användarid   : ”%s”\n Fingeravtryck: %s\n Från         : %s"
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -148376,29 +155799,29 @@ index b9c109b..e688792 100644
 -" Från      : %s"
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
  #, 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:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "Nyckelimport misslyckades (kod %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Nyckelimport lyckades"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Installerade inte några nycklar"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -148409,20 +155832,20 @@ index b9c109b..e688792 100644
 +msgstr "GPG-nycklarna uppräknade för förrådet \"%s\" är redan installerade men de är inte korrekta för detta paket.\nKontrollera att de rätta nyckel-URL:erna är konfigurerade för detta förråd."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  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:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -148433,7 +155856,7 @@ index b9c109b..e688792 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "GPG-nyckel vid %s (0x%s) är redan importerad"
@@ -148441,19 +155864,19 @@ index b9c109b..e688792 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Nyckelimport misslyckades"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, 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:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -148464,119 +155887,124 @@ index b9c109b..e688792 100644
 +msgstr "GPG-nycklarna uppräknade för förrådet \"%s\" är redan installerade men de är inte korrekta.\nKontrollera att rätt nyckel-URL:ar är konfigurerade för detta förråd."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Kan inte hitta en lämplig spegel."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Fel uppstod när paket hämtades."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Rapportera gärna detta fel till %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Transaktionstestfel: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, 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:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Beroenden inte upplösta.  Kommer inte att spara ouppklarad transaktion."
 +msgstr "Beroenden inte upplösta.  Kommer inte att spara ouppklarad transaktion."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr "Kunde inte spara transaktionsfilen %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, 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:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "rpmdb-version stämmer inte med sparad transaktionsversion, "
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr "rpmdb-version stämmer inte med sparad transaktionsversion, "
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " bortser ifrån, som begärt."
- 
+-msgid " ignoring, as requested."
+-msgstr " bortser ifrån, som begärt."
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " avbryter."
+-msgid " aborting."
+-msgstr " avbryter."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  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:6092
++#: ../yum/__init__.py:6584
  #, 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:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, 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:6174
++#: ../yum/__init__.py:6667
  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:6176
++#: ../yum/__init__.py:6670
  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:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, 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:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Undersöker versionsberoenden för %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s har versionsberoende %s som var var användarinstallerat."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s: uppdaterar inga användarinstallerade versionsberoenden."
@@ -148679,7 +156107,7 @@ index b9c109b..e688792 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s tillhandahåller %s men det kan inte hittas"
-@@ -3162,6 +3266,19 @@ msgstr "%s tillhandahåller %s men det kan inte hittas"
+@@ -3162,6 +3460,23 @@ msgstr "%s tillhandahåller %s men det kan inte hittas"
  msgid "Repackaging"
  msgstr "Paketerar om"
  
@@ -148688,7 +156116,7 @@ index b9c109b..e688792 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Verifiera: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -148696,10 +156124,14 @@ index b9c109b..e688792 100644
 +"    * needed %s"
 +msgstr "Otillräckligt utrymme i hämtningskatalogen %s\n    * fritt   %s\n    * behovet %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3174,9 +3291,7 @@ msgstr "RPM %s misslyckas med md5-kontroll"
+@@ -3174,9 +3489,7 @@ msgstr "RPM %s misslyckas med md5-kontroll"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -148710,7 +156142,7 @@ index b9c109b..e688792 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3192,5 +3307,3 @@ msgstr "Trasigt huvud %s"
+@@ -3192,5 +3505,3 @@ msgstr "Trasigt huvud %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Fel när rpm %s öppnades - fel %s"
@@ -148718,10 +156150,10 @@ index b9c109b..e688792 100644
 -
 diff --git a/po/tr.po b/po/tr.po
 new file mode 100644
-index 0000000..1535397
+index 0000000..5deb30d
 --- /dev/null
 +++ b/po/tr.po
-@@ -0,0 +1,3296 @@
+@@ -0,0 +1,3491 @@
 +# SOME DESCRIPTIVE TITLE.
 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 +# This file is distributed under the same license as the PACKAGE package.
@@ -148733,9 +156165,9 @@ index 0000000..1535397
 +msgstr ""
 +"Project-Id-Version: Yum\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-11-11 09:29+0000\n"
-+"Last-Translator: Onuralp SEZER <thunderbirdtr at gmail.com>\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
++"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Turkish (http://www.transifex.com/projects/p/yum/language/tr/)\n"
 +"MIME-Version: 1.0\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
@@ -148743,7 +156175,7 @@ index 0000000..1535397
 +"Language: tr\n"
 +"Plural-Forms: nplurals=1; plural=0;\n"
 +
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
 +msgid "Updating"
 +msgstr "Güncelleniyor"
 +
@@ -148751,26 +156183,26 @@ index 0000000..1535397
 +msgid "Erasing"
 +msgstr "Siliniyor"
 +
-+#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
 +#: ../yum/rpmtrans.py:78
 +msgid "Installing"
 +msgstr "Kuruluyor"
 +
-+#: ../callback.py:49 ../callback.py:55 ../output.py:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
 +msgid "Obsoleted"
 +msgstr "Kullanım Dışı"
 +
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
 +msgid "Updated"
 +msgstr "Güncellendi"
 +
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
 +msgid "Erased"
 +msgstr "Silindi"
 +
-+#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
 +msgid "Installed"
 +msgstr "Kuruldu"
 +
@@ -148792,7 +156224,7 @@ index 0000000..1535397
 +msgid "Erased: %s"
 +msgstr "Silindi: %s"
 +
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
 +msgid "Removing"
 +msgstr "Kaldırılıyor"
 +
@@ -148800,58 +156232,58 @@ index 0000000..1535397
 +msgid "Cleanup"
 +msgstr "Temizle"
 +
-+#: ../cli.py:120
++#: ../cli.py:122
 +#, python-format
 +msgid "Command \"%s\" already defined"
 +msgstr "\"%s\" komutu zaten tanımlanmış"
 +
-+#: ../cli.py:135
++#: ../cli.py:137
 +msgid "Setting up repositories"
 +msgstr "Depolar ayarlanıyor"
 +
-+#: ../cli.py:146
++#: ../cli.py:148
 +msgid "Reading repository metadata in from local files"
 +msgstr "Depo meta verisi yerel dosyalardan okunuyor"
 +
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
 +#, python-format
 +msgid "Config Error: %s"
 +msgstr "Yapılandırma Hatası: %s"
 +
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
 +#, python-format
 +msgid "Options Error: %s"
 +msgstr "Seçeneklerde Hata: %s"
 +
-+#: ../cli.py:325
++#: ../cli.py:327
 +#, python-format
 +msgid "  Installed: %s-%s at %s"
 +msgstr "  Kuruldu: %s-%s at %s"
 +
-+#: ../cli.py:327
++#: ../cli.py:329
 +#, python-format
 +msgid "  Built    : %s at %s"
 +msgstr ""
 +
-+#: ../cli.py:329
++#: ../cli.py:331
 +#, python-format
 +msgid "  Committed: %s at %s"
 +msgstr ""
 +
-+#: ../cli.py:370
++#: ../cli.py:372
 +msgid "You need to give some command"
 +msgstr "Bir komut vermelisiniz"
 +
-+#: ../cli.py:384
++#: ../cli.py:386
 +#, python-format
 +msgid "No such command: %s. Please use %s --help"
 +msgstr "Böyle bir komut yok: %s. Lütfen %s--help komutunu kullanın"
 +
-+#: ../cli.py:442
++#: ../cli.py:444
 +msgid "Disk Requirements:\n"
 +msgstr "Disk Gereksinimleri:\n"
 +
-+#: ../cli.py:444
++#: ../cli.py:446
 +#, python-format
 +msgid "  At least %dMB more space needed on the %s filesystem.\n"
 +msgid_plural "  At least %dMB more space needed on the %s filesystem.\n"
@@ -148859,315 +156291,366 @@ index 0000000..1535397
 +
 +#. TODO: simplify the dependency errors?
 +#. Fixup the summary
-+#: ../cli.py:449
++#: ../cli.py:451
 +msgid ""
 +"Error Summary\n"
 +"-------------\n"
 +msgstr "Hata Özeti\n-------------\n"
 +
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
 +msgid "Trying to run the transaction but nothing to do. Exiting."
 +msgstr ""
 +
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr "iptal ediliyor."
++
++#: ../cli.py:588
 +msgid "Exiting on user Command"
 +msgstr "Kullanıcı Komutu ile Çıkılıyor"
 +
-+#: ../cli.py:546
++#: ../cli.py:592
 +msgid "Downloading Packages:"
 +msgstr "Paketler İndiriliyor:"
 +
-+#: ../cli.py:551
++#: ../cli.py:597
 +msgid "Error Downloading Packages:\n"
 +msgstr "Paketler İndirilirken Hata Oluştu:\n"
 +
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
 +msgid "Running Transaction Check"
 +msgstr ""
 +
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
 +msgid "ERROR You need to update rpm to handle:"
 +msgstr "HATA Bunu işlemek için rpm'i güncellemelisiniz:"
 +
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
 +msgid "ERROR with transaction check vs depsolve:"
 +msgstr ""
 +
-+#: ../cli.py:587
++#: ../cli.py:633
 +msgid "RPM needs to be updated"
 +msgstr "RPM'nin güncellenmesi gerekiyor"
 +
-+#: ../cli.py:588
++#: ../cli.py:634
 +#, python-format
 +msgid "Please report this error in %s"
 +msgstr "Lütfen %s'deki bu hatayı bildirin"
 +
-+#: ../cli.py:594
++#: ../cli.py:640
 +msgid "Running Transaction Test"
 +msgstr "İşlem Sınaması Yürütülüyor"
 +
-+#: ../cli.py:606
++#: ../cli.py:652
 +msgid "Transaction Check Error:\n"
 +msgstr "İşlem Denetimi Hatası:\n"
 +
-+#: ../cli.py:613
++#: ../cli.py:659
 +msgid "Transaction Test Succeeded"
 +msgstr "İşlem Sınaması Başarılı"
 +
-+#: ../cli.py:645
++#: ../cli.py:691
 +msgid "Running Transaction"
 +msgstr "İşlem Yürütülüyor"
 +
-+#: ../cli.py:678
++#: ../cli.py:724
 +msgid ""
 +"Refusing to automatically import keys when running unattended.\n"
 +"Use \"-y\" to override."
 +msgstr ""
 +
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
 +msgid "  * Maybe you meant: "
 +msgstr "  * Belki de bunu demek istediniz: "
 +
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
 +#, python-format
 +msgid "Package(s) %s%s%s available, but not installed."
 +msgstr "%s%s%s paket(ler)i kullanılabilir durumda ama kurulmamış."
 +
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
 +#, python-format
 +msgid "No package %s%s%s available."
 +msgstr "%s%s%s diye kullanılabilir bir paket yok."
 +
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr ""
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] "%d paket kurulacak"
 +
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
 +msgid "Nothing to do"
 +msgstr "Yapılacak birşey yok"
 +
-+#: ../cli.py:897
++#: ../cli.py:953
 +#, python-format
 +msgid "%d package marked for Update"
 +msgid_plural "%d packages marked for Update"
 +msgstr[0] "%d paket Güncelleme için işaretlendi"
 +
-+#: ../cli.py:899
++#: ../cli.py:955
 +msgid "No Packages marked for Update"
 +msgstr "Hiçbir paket, Güncelleme için işaretlenmedi"
 +
-+#: ../cli.py:1011
++#: ../cli.py:1067
 +#, python-format
 +msgid "%d package marked for Distribution Synchronization"
 +msgid_plural "%d packages marked for Distribution Synchronization"
 +msgstr[0] "%d paket Dağıtım Eşzamanlaması için işaretlendi"
 +
-+#: ../cli.py:1013
++#: ../cli.py:1069
 +msgid "No Packages marked for Distribution Synchronization"
 +msgstr "Hiçbir paket, Dağıtım Eşzamanlaması için işaretlenmedi"
 +
-+#: ../cli.py:1038
++#: ../cli.py:1124
 +#, python-format
 +msgid "%d package marked for removal"
 +msgid_plural "%d packages marked for removal"
 +msgstr[0] "%d paket kaldırılmak için işaretlendi"
 +
-+#: ../cli.py:1040
++#: ../cli.py:1126
 +msgid "No Packages marked for removal"
 +msgstr "Hiçbir paket, kaldırılmak üzere işaretlenmedi"
 +
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] "%d paket indirgenmek için işaretlendi"
 +
-+#: ../cli.py:1114
++#: ../cli.py:1207
 +#, python-format
 +msgid " (from %s)"
 +msgstr " (%s ' den)"
 +
-+#: ../cli.py:1115
++#: ../cli.py:1208
 +#, python-format
 +msgid "Installed package %s%s%s%s not available."
 +msgstr ""
 +
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] "%d paket yeniden kurulacak"
 +
-+#: ../cli.py:1149
++#: ../cli.py:1246
 +msgid "No Packages Provided"
 +msgstr "Hiçbir Paket Sağlanmadı"
 +
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Kurulacak paket(ler)"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
 +#, python-format
 +msgid "N/S Matched: %s"
 +msgstr ""
 +
-+#: ../cli.py:1286
++#: ../cli.py:1384
 +#, python-format
 +msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1288
++#: ../cli.py:1386
 +#, python-format
 +msgid ""
 +"  Full name and summary matches %sonly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1306
++#: ../cli.py:1404
 +#, python-format
 +msgid "Matched: %s"
 +msgstr "Eşleşen: %s"
 +
-+#: ../cli.py:1313
++#: ../cli.py:1411
 +#, python-format
 +msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 +msgstr ""
 +
-+#: ../cli.py:1317
++#: ../cli.py:1415
 +#, python-format
 +msgid "Warning: No matches found for: %s"
 +msgstr "Uyarı: Bunun için hiçbir eşleşme bulunamadı: %s"
 +
-+#: ../cli.py:1320
++#: ../cli.py:1418
 +msgid "No Matches found"
 +msgstr "Hiçbir Eşleşme bulunamadı"
 +
-+#: ../cli.py:1436
++#: ../cli.py:1536
 +#, python-format
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
 +msgstr ""
 +
-+#: ../cli.py:1472
++#: ../cli.py:1572
 +msgid "Cleaning repos: "
 +msgstr "Depolar temizleniyor: "
 +
-+#: ../cli.py:1477
++#: ../cli.py:1577
 +msgid "Cleaning up Everything"
 +msgstr "Herşey Temizleniyor"
 +
-+#: ../cli.py:1493
++#: ../cli.py:1593
 +msgid "Cleaning up Headers"
 +msgstr "Başlıklar Temizleniyor"
 +
-+#: ../cli.py:1496
++#: ../cli.py:1596
 +msgid "Cleaning up Packages"
 +msgstr "Paketler Temizleniyor"
 +
-+#: ../cli.py:1499
++#: ../cli.py:1599
 +msgid "Cleaning up xml metadata"
 +msgstr "Xml meta verisi temizleniyor"
 +
-+#: ../cli.py:1502
++#: ../cli.py:1602
 +msgid "Cleaning up database cache"
 +msgstr "Veritabanı önbelleği temizleniyor"
 +
-+#: ../cli.py:1505
++#: ../cli.py:1605
 +msgid "Cleaning up expire-cache metadata"
 +msgstr "Zamanaşımı önbelleği meta verisi temizleniyor"
 +
-+#: ../cli.py:1508
++#: ../cli.py:1608
 +msgid "Cleaning up cached rpmdb data"
 +msgstr "Önbelleğe alınmış rpmdb verisi temizleniyor"
 +
-+#: ../cli.py:1511
++#: ../cli.py:1611
 +msgid "Cleaning up plugins"
 +msgstr "Eklentiler temizleniyor"
 +
-+#: ../cli.py:1547
-+#, python-format
-+msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
 +msgid "Installed Groups:"
 +msgstr "Kurulan Gruplar:"
 +
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
 +msgid "Installed Language Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
 +msgid "Available Groups:"
 +msgstr "Kullanılabilir Gruplar:"
 +
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
 +msgid "Available Language Groups:"
 +msgstr ""
 +
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
 +msgid "Done"
 +msgstr "Yapıldı"
 +
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
 +#, python-format
 +msgid "Warning: Group %s does not exist."
 +msgstr "Uyarı: %s adlı bir grup yok."
 +
-+#: ../cli.py:1703
++#: ../cli.py:1883
 +msgid "No packages in any requested group available to install or update"
 +msgstr "İstenilen gruplardaki hiçbir paketin kurulum ya da güncellemesi kullanılabilir değil."
 +
-+#: ../cli.py:1705
++#: ../cli.py:1885
 +#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d paket kurulacak"
 +
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
 +#, python-format
 +msgid "No group named %s exists"
 +msgstr "%s adlı bir grup yok"
 +
-+#: ../cli.py:1731
++#: ../cli.py:1945
 +msgid "No packages to remove from groups"
 +msgstr "Gruplardan kaldırılacak hiçbir paket yok"
 +
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
 +#, python-format
 +msgid "%d package to remove"
 +msgid_plural "%d packages to remove"
 +msgstr[0] "%d paket kaldırılacak"
 +
-+#: ../cli.py:1774
++#: ../cli.py:1988
 +#, python-format
 +msgid "Package %s is already installed, skipping"
 +msgstr "%s paketi zaten kurulmuş, atlanıyor"
 +
-+#: ../cli.py:1785
++#: ../cli.py:1999
 +#, python-format
 +msgid "Discarding non-comparable pkg %s.%s"
 +msgstr ""
 +
 +#. we've not got any installed that match n or n+a
-+#: ../cli.py:1811
++#: ../cli.py:2025
 +#, python-format
 +msgid "No other %s installed, adding to list for potential install"
 +msgstr ""
 +
-+#: ../cli.py:1831
++#: ../cli.py:2045
 +msgid "Plugin Options"
 +msgstr "Eklenti Seçenekleri"
 +
-+#: ../cli.py:1843
++#: ../cli.py:2057
 +#, python-format
 +msgid "Command line error: %s"
 +msgstr "Komut satırı hatası: %s"
 +
-+#: ../cli.py:1865
++#: ../cli.py:2079
 +#, python-format
 +msgid ""
 +"\n"
@@ -149175,451 +156658,483 @@ index 0000000..1535397
 +"%s: %s option requires an argument"
 +msgstr "\n\n%s: %s seçeneği bir argüman gerektiriyor"
 +
-+#: ../cli.py:1928
++#: ../cli.py:2147
 +msgid "--color takes one of: auto, always, never"
 +msgstr "--color, şunlardan birini alabilir: auto, always, never"
 +
 +#. We have a relative installroot ... haha
-+#: ../cli.py:1999
++#: ../cli.py:2218
 +#, python-format
 +msgid "--installroot must be an absolute path: %s"
 +msgstr ""
 +
-+#: ../cli.py:2053
++#: ../cli.py:2272
 +msgid "show this help message and exit"
 +msgstr "bu yardım mesajını göster ve çık"
 +
-+#: ../cli.py:2057
++#: ../cli.py:2276
 +msgid "be tolerant of errors"
 +msgstr "Hatalarda toleranslı ol "
 +
-+#: ../cli.py:2060
++#: ../cli.py:2279
 +msgid "run entirely from system cache, don't update cache"
 +msgstr "tamamen sistem önbelleğinden çalış, önbelleği güncelleme"
 +
-+#: ../cli.py:2063
++#: ../cli.py:2282
 +msgid "config file location"
 +msgstr "yapılandırma dosyası konumu"
 +
-+#: ../cli.py:2066
++#: ../cli.py:2285
 +msgid "maximum command wait time"
 +msgstr "en fazla komut bekleme süresi"
 +
-+#: ../cli.py:2068
++#: ../cli.py:2287
 +msgid "debugging output level"
 +msgstr "hata ayıklama çıktısı düzeyi"
 +
-+#: ../cli.py:2072
++#: ../cli.py:2291
 +msgid "show duplicates, in repos, in list/search commands"
 +msgstr "Depoda , liste/arama komutunlarında , çakışmaları göster"
 +
-+#: ../cli.py:2074
++#: ../cli.py:2296
 +msgid "error output level"
 +msgstr "hata çıktısı düzeyi"
 +
-+#: ../cli.py:2077
++#: ../cli.py:2299
 +msgid "debugging output level for rpm"
 +msgstr "rpm için hata ayıklama çıktısı düzeyi"
 +
-+#: ../cli.py:2080
++#: ../cli.py:2302
 +msgid "quiet operation"
 +msgstr "sessiz işlem"
 +
-+#: ../cli.py:2082
++#: ../cli.py:2304
 +msgid "verbose operation"
 +msgstr "açıklamalı işlem"
 +
-+#: ../cli.py:2084
++#: ../cli.py:2306
 +msgid "answer yes for all questions"
 +msgstr "tüm soruları evet olarak cevapla"
 +
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "tüm sorulara hayır cevabını ver"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
 +msgid "show Yum version and exit"
 +msgstr "Yum sürümünü göster ve çık"
 +
-+#: ../cli.py:2091
++#: ../cli.py:2313
 +msgid "set install root"
 +msgstr "kurulum kökünü ayarla"
 +
-+#: ../cli.py:2095
++#: ../cli.py:2317
 +msgid "enable one or more repositories (wildcards allowed)"
 +msgstr "Bir veya birden depoyu aktifleştir (Joker karakter izin verilir)"
 +
-+#: ../cli.py:2099
++#: ../cli.py:2321
 +msgid "disable one or more repositories (wildcards allowed)"
 +msgstr "Bir veya birden depoyu devre dışı bırak (Joker karakter izin verilir)"
 +
-+#: ../cli.py:2102
++#: ../cli.py:2324
 +msgid "exclude package(s) by name or glob"
 +msgstr ""
 +
-+#: ../cli.py:2104
++#: ../cli.py:2326
 +msgid "disable exclude from main, for a repo or for everything"
 +msgstr ""
 +
-+#: ../cli.py:2107
++#: ../cli.py:2329
 +msgid "enable obsoletes processing during updates"
 +msgstr "Güncelleme boyunca kullanılmayan işlemini etkinleştir"
 +
-+#: ../cli.py:2109
++#: ../cli.py:2331
 +msgid "disable Yum plugins"
 +msgstr "Yum eklentilerini devre dışı bırak"
 +
-+#: ../cli.py:2111
++#: ../cli.py:2333
 +msgid "disable gpg signature checking"
 +msgstr "gpg imza denetimini devre dışı bırak"
 +
-+#: ../cli.py:2113
++#: ../cli.py:2335
 +msgid "disable plugins by name"
 +msgstr "eklentileri ada göre devre dışı bırak"
 +
-+#: ../cli.py:2116
++#: ../cli.py:2338
 +msgid "enable plugins by name"
 +msgstr "eklentileri ada göre etkinleştir"
 +
-+#: ../cli.py:2119
++#: ../cli.py:2341
 +msgid "skip packages with depsolving problems"
 +msgstr "Bağımlılık problemleri olan paketleri atla"
 +
-+#: ../cli.py:2121
++#: ../cli.py:2343
 +msgid "control whether color is used"
 +msgstr "renk kullanılıp kullanılmayacağını kontrol et"
 +
-+#: ../cli.py:2123
++#: ../cli.py:2345
 +msgid "set value of $releasever in yum config and repo files"
 +msgstr ""
 +
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
 +msgid "set arbitrary config and repo options"
 +msgstr ""
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jan"
 +msgstr "Oca"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Feb"
 +msgstr "Şub"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Mar"
 +msgstr "Mar"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Apr"
 +msgstr "Nis"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "May"
 +msgstr "May"
 +
-+#: ../output.py:453
++#: ../output.py:458
 +msgid "Jun"
 +msgstr "Haz"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Jul"
 +msgstr "Tem"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Aug"
 +msgstr "Ağu"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Sep"
 +msgstr "Eyl"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Oct"
 +msgstr "Eki"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Nov"
 +msgstr "Kas"
 +
-+#: ../output.py:454
++#: ../output.py:459
 +msgid "Dec"
 +msgstr "Ara"
 +
-+#: ../output.py:468
++#: ../output.py:473
 +msgid "Trying other mirror."
 +msgstr "Başka bir yansı deneniyor."
 +
-+#: ../output.py:811
++#: ../output.py:816
 +#, python-format
 +msgid "Name        : %s%s%s"
 +msgstr "Ad        : %s%s%s"
 +
-+#: ../output.py:812
++#: ../output.py:817
 +#, python-format
 +msgid "Arch        : %s"
 +msgstr "Mimari        : %s"
 +
-+#: ../output.py:814
++#: ../output.py:819
 +#, python-format
 +msgid "Epoch       : %s"
 +msgstr ""
 +
-+#: ../output.py:815
++#: ../output.py:820
 +#, python-format
 +msgid "Version     : %s"
 +msgstr "Sürüm     : %s"
 +
-+#: ../output.py:816
++#: ../output.py:821
 +#, python-format
 +msgid "Release     : %s"
 +msgstr "Dağıtım     : %s"
 +
-+#: ../output.py:817
++#: ../output.py:822
 +#, python-format
 +msgid "Size        : %s"
 +msgstr "Boyut        : %s"
 +
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
 +#, python-format
 +msgid "Repo        : %s"
 +msgstr "Depo        : %s"
 +
-+#: ../output.py:820
++#: ../output.py:825
 +#, python-format
 +msgid "From repo   : %s"
 +msgstr "Depodan   : %s"
 +
-+#: ../output.py:822
++#: ../output.py:827
 +#, python-format
 +msgid "Committer   : %s"
 +msgstr "Committer   : %s"
 +
-+#: ../output.py:823
++#: ../output.py:828
 +#, python-format
 +msgid "Committime  : %s"
 +msgstr "Komitzamanı  : %s"
 +
-+#: ../output.py:824
++#: ../output.py:829
 +#, python-format
 +msgid "Buildtime   : %s"
 +msgstr "İnşaatzamanı   : %s"
 +
-+#: ../output.py:826
++#: ../output.py:831
 +#, python-format
 +msgid "Install time: %s"
 +msgstr "Kurulum zamanı: %s"
 +
-+#: ../output.py:834
++#: ../output.py:839
 +#, python-format
 +msgid "Installed by: %s"
 +msgstr "Kuran: %s"
 +
-+#: ../output.py:841
++#: ../output.py:846
 +#, python-format
 +msgid "Changed by  : %s"
 +msgstr "Değiştiren  : %s"
 +
-+#: ../output.py:842
++#: ../output.py:847
 +msgid "Summary     : "
 +msgstr "Özet     : "
 +
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
 +#, python-format
 +msgid "URL         : %s"
 +msgstr "URL         : %s"
 +
-+#: ../output.py:845
++#: ../output.py:850
 +msgid "License     : "
 +msgstr "Lisans     : "
 +
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
 +msgid "Description : "
 +msgstr "Açıklama : "
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "y"
 +msgstr "e"
 +
-+#: ../output.py:964
++#: ../output.py:969
 +msgid "yes"
 +msgstr "evet"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "n"
 +msgstr "h"
 +
-+#: ../output.py:965
++#: ../output.py:970
 +msgid "no"
 +msgstr "hayır"
 +
-+#: ../output.py:969
++#: ../output.py:974
 +msgid "Is this ok [y/N]: "
 +msgstr "Tamam mı [e/H]: "
 +
-+#: ../output.py:1092
++#: ../output.py:1097
 +#, python-format
 +msgid ""
 +"\n"
 +"Group: %s"
 +msgstr "\nGrup: %s"
 +
-+#: ../output.py:1096
++#: ../output.py:1101
 +#, python-format
 +msgid " Group-Id: %s"
 +msgstr " Grup-Kimliği: %s"
 +
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
 +#, python-format
 +msgid " Description: %s"
 +msgstr "Açıklama: %s"
 +
-+#: ../output.py:1119
++#: ../output.py:1124
 +#, python-format
 +msgid " Language: %s"
 +msgstr " Dil: %s"
 +
-+#: ../output.py:1121
++#: ../output.py:1126
 +msgid " Mandatory Packages:"
 +msgstr " Zorunlu Paketler:"
 +
-+#: ../output.py:1122
++#: ../output.py:1127
 +msgid " Default Packages:"
 +msgstr " Öntanımlı Paketler:"
 +
-+#: ../output.py:1123
++#: ../output.py:1128
 +msgid " Optional Packages:"
 +msgstr " İsteğe Bağlı Paketler:"
 +
-+#: ../output.py:1124
++#: ../output.py:1129
 +msgid " Conditional Packages:"
 +msgstr " Şartlı Paketler:"
 +
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr "Paketler Kuruldu:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
 +#, python-format
 +msgid "package: %s"
 +msgstr "paket: %s"
 +
-+#: ../output.py:1157
++#: ../output.py:1219
 +msgid "  No dependencies for this package"
 +msgstr "  Bu paket için hiçbir bağımlılık yok"
 +
-+#: ../output.py:1162
++#: ../output.py:1224
 +#, python-format
 +msgid "  dependency: %s"
 +msgstr "  bağımlılık: %s"
 +
-+#: ../output.py:1164
++#: ../output.py:1226
 +msgid "   Unsatisfied dependency"
 +msgstr "Yetersiz bağımlılık"
 +
-+#: ../output.py:1275
++#: ../output.py:1337
 +msgid "Matched from:"
 +msgstr ""
 +
-+#: ../output.py:1286
++#: ../output.py:1348
 +#, python-format
 +msgid "License     : %s"
 +msgstr "Lisans     : %s"
 +
-+#: ../output.py:1289
++#: ../output.py:1351
 +#, python-format
 +msgid "Filename    : %s"
 +msgstr "Dosya adı    : %s"
 +
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
 +msgid "Other       : "
 +msgstr "Diğer       : "
 +
-+#: ../output.py:1364
++#: ../output.py:1426
 +msgid "There was an error calculating total download size"
 +msgstr "Toplam indirme boyutu hesaplanırken bir hata oluştu"
 +
-+#: ../output.py:1369
++#: ../output.py:1431
 +#, python-format
 +msgid "Total size: %s"
 +msgstr "Toplam boyut: %s"
 +
-+#: ../output.py:1371
++#: ../output.py:1433
 +#, python-format
 +msgid "Total download size: %s"
 +msgstr "Toplam indirme boyutu: %s"
 +
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
 +#, python-format
 +msgid "Installed size: %s"
 +msgstr "Kurulu boyutu: %s"
 +
-+#: ../output.py:1392
++#: ../output.py:1454
 +msgid "There was an error calculating installed size"
 +msgstr "Kurulu boyutu hesaplarken bir hata oluştu"
 +
-+#: ../output.py:1442
++#: ../output.py:1504
 +msgid "Reinstalling"
 +msgstr "Yeniden kuruluyor"
 +
-+#: ../output.py:1443
++#: ../output.py:1505
 +msgid "Downgrading"
 +msgstr "Sürüm düşürülüyor"
 +
-+#: ../output.py:1444
++#: ../output.py:1506
 +msgid "Installing for dependencies"
 +msgstr "Bağımlılıklar nedeniyle kuruluyor"
 +
-+#: ../output.py:1445
++#: ../output.py:1507
 +msgid "Updating for dependencies"
 +msgstr "Bağımlılıklar nedeniyle güncelleniyor"
 +
-+#: ../output.py:1446
++#: ../output.py:1508
 +msgid "Removing for dependencies"
 +msgstr "Bağımlılıklar nedeniyle kaldırılıyor"
 +
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
 +msgid "Skipped (dependency problems)"
 +msgstr "Atlandı (bağımlılık sorunları)"
 +
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
 +msgid "Not installed"
 +msgstr "Kurulmadı"
 +
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
 +msgid "Not available"
 +msgstr "Kullanılabilir değil"
 +
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
 +msgid "Package"
 +msgid_plural "Packages"
 +msgstr[0] "Paketler"
 +
-+#: ../output.py:1478
++#: ../output.py:1540
 +msgid "Arch"
 +msgstr "Mimari"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Version"
 +msgstr "Sürüm"
 +
-+#: ../output.py:1479
++#: ../output.py:1541
 +msgid "Repository"
 +msgstr "Depo"
 +
-+#: ../output.py:1480
++#: ../output.py:1542
 +msgid "Size"
 +msgstr "Boyut"
 +
-+#: ../output.py:1492
++#: ../output.py:1554
 +#, python-format
 +msgid "     replacing  %s%s%s.%s %s\n"
 +msgstr ""
 +
-+#: ../output.py:1501
++#: ../output.py:1563
 +#, python-format
 +msgid ""
 +"\n"
@@ -149627,57 +157142,57 @@ index 0000000..1535397
 +"%s\n"
 +msgstr ""
 +
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Kur"
 +
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Yükselt"
 +
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Kaldır"
 +
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Yeniden Kur"
 +
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr ""
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Bağımlı paketler"
 +
-+#: ../output.py:1604
++#: ../output.py:1666
 +msgid "Removed"
 +msgstr "Kaldırıldı"
 +
-+#: ../output.py:1605
++#: ../output.py:1667
 +msgid "Dependency Removed"
 +msgstr "Bağımlılık Kaldırıldı"
 +
-+#: ../output.py:1607
++#: ../output.py:1669
 +msgid "Dependency Installed"
 +msgstr "Bağımlılık Kuruldu"
 +
-+#: ../output.py:1609
++#: ../output.py:1671
 +msgid "Dependency Updated"
 +msgstr "Bağımlılık Güncellendi"
 +
-+#: ../output.py:1611
++#: ../output.py:1673
 +msgid "Replaced"
 +msgstr "Değiştirildi"
 +
-+#: ../output.py:1612
++#: ../output.py:1674
 +msgid "Failed"
 +msgstr "Başarısız Oldu"
 +
 +#. Delta between C-c's so we treat as exit
-+#: ../output.py:1699
++#: ../output.py:1764
 +msgid "two"
 +msgstr "iki"
 +
@@ -149685,7 +157200,7 @@ index 0000000..1535397
 +#. Current download cancelled, interrupt (ctrl-c) again within two seconds
 +#. to exit.
 +#. Where "interupt (ctrl-c) again" and "two" are highlighted.
-+#: ../output.py:1710
++#: ../output.py:1775
 +#, python-format
 +msgid ""
 +"\n"
@@ -149693,542 +157208,542 @@ index 0000000..1535397
 +"to exit.\n"
 +msgstr ""
 +
-+#: ../output.py:1721
++#: ../output.py:1786
 +msgid "user interrupt"
 +msgstr ""
 +
-+#: ../output.py:1747
++#: ../output.py:1812
 +msgid "Total"
 +msgstr "Toplam"
 +
-+#: ../output.py:1769
++#: ../output.py:1834
 +msgid "I"
 +msgstr "I"
 +
-+#: ../output.py:1770
++#: ../output.py:1835
 +msgid "O"
 +msgstr "O"
 +
-+#: ../output.py:1771
++#: ../output.py:1836
 +msgid "E"
 +msgstr "E"
 +
-+#: ../output.py:1772
++#: ../output.py:1837
 +msgid "R"
 +msgstr "R"
 +
-+#: ../output.py:1773
++#: ../output.py:1838
 +msgid "D"
 +msgstr "D"
 +
-+#: ../output.py:1774
++#: ../output.py:1839
 +msgid "U"
 +msgstr "U"
 +
-+#: ../output.py:1788
++#: ../output.py:1853
 +msgid "<unset>"
 +msgstr "<unset>"
 +
-+#: ../output.py:1789
++#: ../output.py:1854
 +msgid "System"
 +msgstr "Sistem"
 +
-+#: ../output.py:1858
++#: ../output.py:1923
 +#, python-format
 +msgid "Skipping merged transaction %d to %d, as it overlaps"
 +msgstr ""
 +
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
 +msgid "No transactions"
 +msgstr ""
 +
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
 +msgid "Bad transaction IDs, or package(s), given"
 +msgstr ""
 +
-+#: ../output.py:1940
++#: ../output.py:2007
 +msgid "Command line"
 +msgstr "Komut satırı"
 +
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
 +msgid "Login user"
 +msgstr "Kullanıcı Girişi"
 +
 +#. REALLY Needs to use columns!
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
 +msgid "ID"
 +msgstr "ID"
 +
-+#: ../output.py:1945
++#: ../output.py:2012
 +msgid "Date and time"
 +msgstr "Tarih ve saat"
 +
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
 +msgid "Action(s)"
 +msgstr "Eylem(ler)"
 +
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
 +msgid "Altered"
 +msgstr "Değişikliğe uğradı"
 +
-+#: ../output.py:1994
++#: ../output.py:2061
 +msgid "No transaction ID given"
 +msgstr ""
 +
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
 +msgid "Bad transaction ID given"
 +msgstr ""
 +
-+#: ../output.py:2025
++#: ../output.py:2092
 +msgid "Not found given transaction ID"
 +msgstr ""
 +
-+#: ../output.py:2033
++#: ../output.py:2100
 +msgid "Found more than one transaction ID!"
 +msgstr ""
 +
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
 +msgid "No transaction ID, or package, given"
 +msgstr ""
 +
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
 +msgid "Downgraded"
 +msgstr "İndirgendi"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Older"
 +msgstr "Daha eski"
 +
-+#: ../output.py:2157
++#: ../output.py:2224
 +msgid "Newer"
 +msgstr "Daha yeni"
 +
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
 +msgid "Transaction ID :"
 +msgstr ""
 +
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
 +msgid "Begin time     :"
 +msgstr "Başlama zamanı     :"
 +
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
 +msgid "Begin rpmdb    :"
 +msgstr "rpmdb başlangıcı    :"
 +
-+#: ../output.py:2219
++#: ../output.py:2286
 +#, python-format
 +msgid "(%u seconds)"
 +msgstr "(%u saniye)"
 +
-+#: ../output.py:2221
++#: ../output.py:2288
 +#, python-format
 +msgid "(%u minutes)"
 +msgstr "(%u dakika)"
 +
-+#: ../output.py:2223
++#: ../output.py:2290
 +#, python-format
 +msgid "(%u hours)"
 +msgstr "(%u dakika)"
 +
-+#: ../output.py:2225
++#: ../output.py:2292
 +#, python-format
 +msgid "(%u days)"
 +msgstr "(%u gün)"
 +
-+#: ../output.py:2226
++#: ../output.py:2293
 +msgid "End time       :"
 +msgstr "Bitiş zamanı       :"
 +
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
 +msgid "End rpmdb      :"
 +msgstr "rpmdb sonu      :"
 +
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
 +msgid "User           :"
 +msgstr "Kullanıcı           :"
 +
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
 +msgid "Return-Code    :"
 +msgstr "Return-Code    :"
 +
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
 +msgid "Aborted"
 +msgstr "İptal Edildi"
 +
-+#: ../output.py:2243
++#: ../output.py:2310
 +msgid "Failures:"
 +msgstr ""
 +
-+#: ../output.py:2247
++#: ../output.py:2314
 +msgid "Failure:"
 +msgstr "Başarısız:"
 +
-+#: ../output.py:2249
++#: ../output.py:2316
 +msgid "Success"
 +msgstr "Başarılı"
 +
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
 +msgid "Command Line   :"
 +msgstr "Komut Satırı   :"
 +
-+#: ../output.py:2265
++#: ../output.py:2332
 +#, python-format
 +msgid "Additional non-default information stored: %d"
 +msgstr ""
 +
 +#. This is _possible_, but not common
-+#: ../output.py:2270
++#: ../output.py:2337
 +msgid "Transaction performed with:"
 +msgstr ""
 +
-+#: ../output.py:2274
++#: ../output.py:2341
 +msgid "Packages Altered:"
 +msgstr "Değişikliğe Uğrayan Paketler:"
 +
-+#: ../output.py:2278
++#: ../output.py:2345
 +msgid "Packages Skipped:"
 +msgstr "Atlanan Paketler:"
 +
-+#: ../output.py:2286
++#: ../output.py:2353
 +msgid "Rpmdb Problems:"
 +msgstr "Rpmdb Sorunları:"
 +
-+#: ../output.py:2297
++#: ../output.py:2364
 +msgid "Scriptlet output:"
 +msgstr ""
 +
-+#: ../output.py:2303
++#: ../output.py:2370
 +msgid "Errors:"
 +msgstr "Hatalar:"
 +
-+#: ../output.py:2311
++#: ../output.py:2378
 +msgid "Dep-Install"
 +msgstr ""
 +
-+#: ../output.py:2313
++#: ../output.py:2380
 +msgid "Obsoleting"
 +msgstr ""
 +
-+#: ../output.py:2314
++#: ../output.py:2381
 +msgid "Erase"
 +msgstr "Sil"
 +
-+#: ../output.py:2318
++#: ../output.py:2385
 +msgid "Update"
 +msgstr "Güncelle"
 +
-+#: ../output.py:2392
++#: ../output.py:2459
 +msgid "Time"
 +msgstr "Zaman"
 +
-+#: ../output.py:2418
++#: ../output.py:2485
 +msgid "Last day"
 +msgstr "Son bir gün"
 +
-+#: ../output.py:2419
++#: ../output.py:2486
 +msgid "Last week"
 +msgstr "Son bir hafta"
 +
-+#: ../output.py:2420
++#: ../output.py:2487
 +msgid "Last 2 weeks"
 +msgstr "Son 2 hafta"
 +
 +#. US default :p
-+#: ../output.py:2421
++#: ../output.py:2488
 +msgid "Last 3 months"
 +msgstr "Son 3 ay"
 +
-+#: ../output.py:2422
++#: ../output.py:2489
 +msgid "Last 6 months"
 +msgstr "Son 6 ay"
 +
-+#: ../output.py:2423
++#: ../output.py:2490
 +msgid "Last year"
 +msgstr "Geçen yıl"
 +
-+#: ../output.py:2424
++#: ../output.py:2491
 +msgid "Over a year ago"
 +msgstr "Bir yıldan fazla zaman önce"
 +
-+#: ../output.py:2471
++#: ../output.py:2538
 +#, python-format
 +msgid "No Transaction %s found"
 +msgstr ""
 +
-+#: ../output.py:2477
++#: ../output.py:2544
 +msgid "Transaction ID:"
 +msgstr "İşlem ID:"
 +
-+#: ../output.py:2478
++#: ../output.py:2545
 +msgid "Available additional history information:"
 +msgstr "Kullanılabilir ek geçmiş bilgisi:"
 +
-+#: ../output.py:2491
++#: ../output.py:2558
 +#, python-format
 +msgid "%s: No additional data found by this name"
 +msgstr ""
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Paket        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Durum          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Boyut           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "İnşa makinesi     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "İnşa zamanı     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Paketleyen       :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Üretici         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Lisans        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "Kaynak RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
 +msgid "installed"
 +msgstr "kuruldu"
 +
-+#: ../output.py:2701
++#: ../output.py:2768
 +msgid "an update"
 +msgstr ""
 +
-+#: ../output.py:2702
++#: ../output.py:2769
 +msgid "erased"
 +msgstr "silindi"
 +
-+#: ../output.py:2703
++#: ../output.py:2770
 +msgid "reinstalled"
 +msgstr "yeniden kuruldu"
 +
-+#: ../output.py:2704
++#: ../output.py:2771
 +msgid "a downgrade"
 +msgstr ""
 +
-+#: ../output.py:2705
++#: ../output.py:2772
 +msgid "obsoleting"
 +msgstr ""
 +
-+#: ../output.py:2706
++#: ../output.py:2773
 +msgid "updated"
 +msgstr "güncellendi"
 +
-+#: ../output.py:2707
++#: ../output.py:2774
 +msgid "obsoleted"
 +msgstr "eskimiş"
 +
-+#: ../output.py:2711
++#: ../output.py:2778
 +#, python-format
 +msgid "---> Package %s.%s %s:%s-%s will be %s"
 +msgstr ""
 +
-+#: ../output.py:2722
++#: ../output.py:2789
 +msgid "--> Running transaction check"
 +msgstr ""
 +
-+#: ../output.py:2728
++#: ../output.py:2795
 +msgid "--> Restarting Dependency Resolution with new changes."
 +msgstr ""
 +
-+#: ../output.py:2734
++#: ../output.py:2801
 +msgid "--> Finished Dependency Resolution"
 +msgstr ""
 +
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
 +#, python-format
 +msgid "--> Processing Dependency: %s for package: %s"
 +msgstr ""
 +
-+#: ../output.py:2773
++#: ../output.py:2841
 +#, python-format
-+msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
 +msgstr ""
 +
-+#: ../output.py:2782
++#: ../output.py:2850
 +#, python-format
 +msgid "--> Unresolved Dependency: %s"
 +msgstr ""
 +
-+#: ../output.py:2799
++#: ../output.py:2867
 +#, python-format
 +msgid "Package: %s"
 +msgstr "Paket: %s"
 +
-+#: ../output.py:2801
++#: ../output.py:2869
 +#, python-format
 +msgid ""
 +"\n"
 +"    Requires: %s"
 +msgstr "\n    Gereksinimler: %s"
 +
-+#: ../output.py:2810
++#: ../output.py:2878
 +#, python-format
 +msgid ""
 +"\n"
 +"    %s: %s (%s)"
 +msgstr "\n    %s: %s (%s)"
 +
-+#: ../output.py:2815
++#: ../output.py:2883
 +#, python-format
 +msgid ""
 +"\n"
 +"        %s"
 +msgstr "\n        %s"
 +
-+#: ../output.py:2817
++#: ../output.py:2885
 +msgid ""
 +"\n"
 +"        Not found"
 +msgstr "\n        Bulunamadı"
 +
 +#. These should be the only three things we care about:
-+#: ../output.py:2832
++#: ../output.py:2900
 +msgid "Updated By"
 +msgstr "Güncelleyen:"
 +
-+#: ../output.py:2833
++#: ../output.py:2901
 +msgid "Downgraded By"
 +msgstr "İndirgeyen:"
 +
-+#: ../output.py:2834
++#: ../output.py:2902
 +msgid "Obsoleted By"
 +msgstr "Tarafından eskimiş"
 +
-+#: ../output.py:2852
++#: ../output.py:2920
 +msgid "Available"
 +msgstr "Kullanılabilir"
 +
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
 +#, python-format
 +msgid "--> Processing Conflict: %s conflicts %s"
 +msgstr "--> Uyuşmazlık İşleniyor: %s, %s ile uyuşmuyor"
 +
-+#: ../output.py:2906
++#: ../output.py:2974
 +msgid "--> Populating transaction set with selected packages. Please wait."
 +msgstr ""
 +
-+#: ../output.py:2915
++#: ../output.py:2983
 +#, python-format
 +msgid "---> Downloading header for %s to pack into transaction set."
 +msgstr ""
 +
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Doğrulanıyor"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
 +msgid "Running"
 +msgstr "Çalışıyor"
 +
-+#: ../utils.py:130
++#: ../utils.py:124
 +msgid "Sleeping"
 +msgstr "Uykuda"
 +
-+#: ../utils.py:131
++#: ../utils.py:125
 +msgid "Uninterruptible"
 +msgstr "Durdurulamaz"
 +
-+#: ../utils.py:132
++#: ../utils.py:126
 +msgid "Zombie"
 +msgstr "Zombi"
 +
-+#: ../utils.py:133
++#: ../utils.py:127
 +msgid "Traced/Stopped"
 +msgstr ""
 +
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
 +msgid "Unknown"
 +msgstr "Bilinmiyor"
 +
-+#: ../utils.py:155
++#: ../utils.py:153
 +msgid "  The other application is: PackageKit"
 +msgstr "  Diğer uygulama: PackageKit"
 +
-+#: ../utils.py:157
++#: ../utils.py:155
 +#, python-format
 +msgid "  The other application is: %s"
 +msgstr "  Diğer uygulama: %s"
 +
-+#: ../utils.py:160
++#: ../utils.py:158
 +#, python-format
 +msgid "    Memory : %5s RSS (%5sB VSZ)"
 +msgstr "    Bellek : %5s RSS (%5sB VSZ)"
 +
-+#: ../utils.py:165
++#: ../utils.py:163
 +#, python-format
 +msgid "    Started: %s - %s ago"
 +msgstr "    Başladı: %s - %s kadar önce"
 +
-+#: ../utils.py:167
++#: ../utils.py:165
 +#, python-format
 +msgid "    State  : %s, pid: %d"
 +msgstr "    Durum  : %s, pid: %d"
 +
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on user cancel"
 +msgstr ""
 +
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
 +msgid ""
 +"\n"
 +"\n"
 +"Exiting on Broken Pipe"
 +msgstr ""
 +
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
 +#, python-format
 +msgid ""
 +"\n"
@@ -150236,47 +157751,41 @@ index 0000000..1535397
 +"%s"
 +msgstr "\n\n%s"
 +
-+#: ../utils.py:286 ../yummain.py:140
-+msgid ""
-+"Another app is currently holding the yum lock; exiting as configured by "
-+"exit_on_lock"
-+msgstr ""
-+
-+#: ../utils.py:352
++#: ../utils.py:326
 +#, python-format
 +msgid "PluginExit Error: %s"
 +msgstr "PluginExit Hatası: %s"
 +
-+#: ../utils.py:355
++#: ../utils.py:329
 +#, python-format
 +msgid "Yum Error: %s"
 +msgstr "Yum Hatası: %s"
 +
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
 +#, python-format
 +msgid "Error: %s"
 +msgstr "Hata: %s"
 +
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
 +msgid " You could try using --skip-broken to work around the problem"
 +msgstr "--skip-broken kullanmayı deneyerek problemli durumda çalıştırabilirsiniz."
 +
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
 +msgid " You could try running: rpm -Va --nofiles --nodigest"
 +msgstr "Bunu çalıştırmayı deneyebilirsiniz: rpm -Va --nofiles --nodigest"
 +
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
 +#, python-format
 +msgid "Unknown Error(s): Exit Code: %d:"
 +msgstr "Bilinmeyen Hata(lar): Çıkış Kodu: %d:"
 +
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
 +msgid ""
 +"\n"
 +"Dependencies Resolved"
 +msgstr "\nBağımlılıklar Çözüldü"
 +
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
 +msgid "Complete!"
 +msgstr "Tamamlandı!"
 +
@@ -150315,518 +157824,561 @@ index 0000000..1535397
 +msgid "Error: Need to pass a list of pkgs to %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
 +msgid "Error: Need an item to match"
 +msgstr "Hata:Nesnenin uyumlu olması lazım"
 +
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
 +msgid "Error: Need a group or list of groups"
 +msgstr ""
 +
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
 +#, python-format
 +msgid "Error: clean requires an option: %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
 +#, python-format
 +msgid "Error: invalid clean argument: %r"
 +msgstr "Hata: Geçersiz argüman : %r"
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
 +msgid "No argument to shell"
 +msgstr "Kabuk argümanı yok"
 +
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
 +#, python-format
 +msgid "Filename passed to shell: %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
 +#, python-format
 +msgid "File %s given as argument to shell does not exist."
 +msgstr ""
 +
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
 +msgid "Error: more than one file given as argument to shell."
 +msgstr ""
 +
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
 +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:303
++#: ../yumcommands.py:383
 +msgid "PACKAGE..."
 +msgstr "PAKET..."
 +
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
 +msgid "Install a package or packages on your system"
 +msgstr "Sisteminize paket veya paketleri yükleyin."
 +
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
 +msgid "Setting up Install Process"
 +msgstr "Yükleme İşlemi ayarlanıyor"
 +
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
 +msgid "[PACKAGE...]"
 +msgstr "[PAKET...]"
 +
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
 +msgid "Update a package or packages on your system"
 +msgstr ""
 +
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
 +msgid "Setting up Update Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
 +msgid "Synchronize installed packages to the latest available versions"
 +msgstr ""
 +
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
 +msgid "Setting up Distribution Synchronization Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
 +msgid "Display details about a package or group of packages"
 +msgstr "Bir paket ya da paket grubu hakkındaki ayrıntıları görüntüle"
 +
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
 +msgid "Installed Packages"
 +msgstr "Kurulan Paketler"
 +
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
 +msgid "Available Packages"
 +msgstr "Kullanılabilir Paketler"
 +
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
 +msgid "Extra Packages"
 +msgstr "Ek Paketler"
 +
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
 +msgid "Updated Packages"
 +msgstr "Güncellenen Paketler"
 +
 +#. This only happens in verbose mode
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
 +msgid "Obsoleting Packages"
 +msgstr "Eksimiş Paketler"
 +
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
 +msgid "Recently Added Packages"
 +msgstr "Yeni Eklenen Paketler"
 +
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
 +msgid "No matching Packages to list"
 +msgstr "Paketler liste ile uyumlu değil"
 +
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
 +msgid "List a package or groups of packages"
 +msgstr "Paket listeleri veya Paket grupları"
 +
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
 +msgid "Remove a package or packages from your system"
 +msgstr "Bir paketi ya da paketleri sisteminizden kaldırın"
 +
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
 +msgid "Setting up Remove Process"
 +msgstr "Kaldırma İşlemi Ayarlanıyor"
 +
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr ""
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
 +msgstr "Grup İşlemi Ayarlanıyor"
 +
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
 +msgstr ""
 +
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr ""
 +
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr ""
 +
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr ""
 +
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
 +msgid "Generate the metadata cache"
 +msgstr "Önbellek metaverisi üret."
 +
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
 +msgid "Making cache files for all metadata files."
 +msgstr ""
 +
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
 +msgid "This may take a while depending on the speed of this computer"
 +msgstr ""
 +
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
 +msgid "Metadata Cache Created"
 +msgstr "Önbellek metaverisi yaratıldı"
 +
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
 +msgid "Remove cached data"
 +msgstr "Önbellek verisini sil"
 +
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
 +msgid "Find what package provides the given value"
 +msgstr ""
 +
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
 +msgid "Check for available package updates"
 +msgstr ""
 +
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
 +msgid "Search package details for the given string"
 +msgstr ""
 +
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
 +msgid "Searching Packages: "
 +msgstr "Paketler Aranıyor: "
 +
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
 +msgid "Update packages taking obsoletes into account"
 +msgstr ""
 +
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
 +msgid "Setting up Upgrade Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
 +msgid "Install a local RPM"
 +msgstr "Yerel RPM yükle"
 +
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
 +msgid "Setting up Local Package Process"
 +msgstr "Yerel Paket İşlemi ayarlanıyor"
 +
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
 +msgid "Searching Packages for Dependency:"
 +msgstr "Paketler için bağımlılıklar aranıyor:"
 +
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
 +msgid "Run an interactive yum shell"
 +msgstr "İnteraktif yum kabuğu çalıştır"
 +
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
 +msgid "Setting up Yum Shell"
 +msgstr "Yum Kabuğu Ayarlanıyor"
 +
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
 +msgid "List a package's dependencies"
 +msgstr "Bir paketin bağımlılıklarını listele"
 +
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
 +msgid "Finding dependencies: "
 +msgstr "Bağımlılıklar bulunuyor: "
 +
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
 +msgid "Display the configured software repositories"
 +msgstr "Yapılandırılmış yazılım depolarını görüntüle"
 +
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
 +msgid "enabled"
 +msgstr "etkin"
 +
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
 +msgid "disabled"
 +msgstr "devre dışı"
 +
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
 +msgid "Repo-id      : "
 +msgstr "Depo-id      : "
 +
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
 +msgid "Repo-name    : "
 +msgstr "Depo-ismi    : "
 +
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
 +msgid "Repo-status  : "
 +msgstr "Depo-durumu  : "
 +
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
 +msgid "Repo-revision: "
 +msgstr "Repo-revizesi: "
 +
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
 +msgid "Repo-tags    : "
 +msgstr "Depo-tagları    : "
 +
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
 +msgid "Repo-distro-tags: "
 +msgstr "Depo-dağıtım-tagları: "
 +
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
 +msgid "Repo-updated : "
 +msgstr "Depo-Güncellendi:"
 +
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
 +msgid "Repo-pkgs    : "
 +msgstr "Depo-pkgs    : "
 +
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
 +msgid "Repo-size    : "
 +msgstr "Depo-boyutu    : "
 +
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
 +msgid "Repo-baseurl : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
 +msgid "Repo-metalink: "
 +msgstr "Depo-metalink: "
 +
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
 +msgid "  Updated    : "
 +msgstr "  Güncellendi    : "
 +
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
 +msgid "Repo-mirrors : "
 +msgstr "Depo-yansımaları : "
 +
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
 +#, python-format
 +msgid "Never (last: %s)"
 +msgstr "Asla (Son: %s)"
 +
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
 +#, python-format
 +msgid "Instant (last: %s)"
 +msgstr ""
 +
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
 +#, python-format
 +msgid "%s second(s) (last: %s)"
 +msgstr ""
 +
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
 +msgid "Repo-expire  : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
 +msgid "Repo-exclude : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
 +msgid "Repo-include : "
 +msgstr ""
 +
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
 +msgid "Repo-excluded: "
 +msgstr ""
 +
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
 +msgid "Repo-filename: "
 +msgstr ""
 +
 +#. Work out the first (id) and last (enabled/disalbed/count),
 +#. then chop the middle (name)...
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
 +msgid "repo id"
 +msgstr ""
 +
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
 +msgid "status"
 +msgstr "durum"
 +
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
 +msgid "repo name"
 +msgstr ""
 +
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
 +msgid "Display a helpful usage message"
 +msgstr ""
 +
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
 +#, python-format
 +msgid "No help available for %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
 +msgid ""
 +"\n"
 +"\n"
 +"aliases: "
 +msgstr ""
 +
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
 +msgid ""
 +"\n"
 +"\n"
 +"alias: "
 +msgstr ""
 +
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
 +msgid "Setting up Reinstall Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
 +msgid "reinstall a package"
 +msgstr ""
 +
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
 +msgid "Setting up Downgrade Process"
 +msgstr ""
 +
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
 +msgid "downgrade a package"
 +msgstr ""
 +
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
 +msgid "Display a version for the machine and/or available repos."
 +msgstr ""
 +
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
 +msgid " Yum version groups:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
 +msgid " Group   :"
 +msgstr " Grup   :"
 +
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
 +msgid " Packages:"
 +msgstr " Paketler:"
 +
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
 +msgid "Installed:"
 +msgstr "Kuruldu:"
 +
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
 +msgid "Group-Installed:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
 +msgid "Available:"
 +msgstr "Kullanılabilir:"
 +
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
 +msgid "Group-Available:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
 +msgid "Display, or use, the transaction history"
 +msgstr ""
 +
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
 +#, python-format
 +msgid "Invalid history sub-command, use: %s."
 +msgstr ""
 +
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
 +msgid "You don't have access to the history DB."
 +msgstr ""
 +
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
 +msgid "Check for problems in the rpmdb"
 +msgstr ""
 +
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
 +msgid "load a saved transaction from filename"
 +msgstr ""
 +
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
 +msgid "No saved transaction file specified."
 +msgstr ""
 +
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
 +#, python-format
 +msgid "loading transaction from %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
 +#, python-format
 +msgid "Transaction loaded from %s with %s members"
 +msgstr ""
 +
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
 +#. This is mainly for PackageSackError from rpmdb.
 +#: ../yummain.py:84
 +#, python-format
 +msgid " Yum checks failed: %s"
 +msgstr ""
 +
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr ""
 +
-+#: ../yummain.py:118
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr ""
 +
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr ""
-+
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
 +#. Depsolve stage
-+#: ../yummain.py:184
++#: ../yummain.py:164
 +msgid "Resolving Dependencies"
 +msgstr "Bağımlılıklar Çözülüyor"
 +
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
 +#, python-format
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
 +msgstr ""
 +
-+#: ../yummain.py:332
++#: ../yummain.py:312
 +msgid ""
 +"\n"
 +"\n"
@@ -150856,7 +158408,7 @@ index 0000000..1535397
 +msgid "Member: %s"
 +msgstr "Üye: %s"
 +
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
 +#, python-format
 +msgid "%s converted to install"
 +msgstr ""
@@ -150913,326 +158465,380 @@ index 0000000..1535397
 +msgid "Trying to update %s to resolve dep"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
 +#, python-format
 +msgid "No update paths found for %s. Failure!"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
 +#, python-format
 +msgid "TSINFO: %s package requiring %s marked as erase"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
 +#, python-format
 +msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
 +#, python-format
 +msgid "TSINFO: Updating %s to resolve dep."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
 +#, python-format
 +msgid "Cannot find an update path for dep for: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
 +#, python-format
 +msgid "Quick matched %s to require for %s"
 +msgstr ""
 +
 +#. is it already installed?
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
 +#, python-format
 +msgid "%s is in providing packages but it is already installed, removing."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
 +#, python-format
 +msgid "Potential resolving package %s has newer instance in ts."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
 +#, python-format
 +msgid "Potential resolving package %s has newer instance installed."
 +msgstr ""
 +
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
 +#, python-format
 +msgid "%s already in ts, skipping this one"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
 +#, python-format
 +msgid "TSINFO: Marking %s as update for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
 +#, python-format
 +msgid "TSINFO: Marking %s as install for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
 +msgid "Success - empty transaction"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
 +msgid "Restarting Loop"
 +msgstr "Döngü Yeniden Başlatılıyor"
 +
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
 +msgid "Dependency Process ending"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
 +msgid "Success - deps resolved"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
 +#, python-format
 +msgid "Checking deps for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
 +#, python-format
 +msgid "looking for %s as a requirement of %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
 +#, python-format
 +msgid "Running compare_providers() for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
 +#, python-format
 +msgid "better arch in po %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
 +#, python-format
 +msgid "%s obsoletes %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
 +#, python-format
 +msgid ""
 +"archdist compared %s to %s on %s\n"
 +"  Winner: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
 +#, python-format
 +msgid "common sourcerpm %s and %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
 +#, python-format
 +msgid "base package %s is installed for %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
 +#, python-format
 +msgid "common prefix of %s between %s and %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
 +#, python-format
 +msgid "provides vercmp: %s"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
 +#, python-format
 +msgid " Winner: %s"
 +msgstr " Kazanan: %s"
 +
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
 +#, python-format
 +msgid " Loser(with %d): %s"
 +msgstr " Kaybeden(%d ile): %s"
 +
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
 +#, python-format
 +msgid "Best Order: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
 +msgid "doConfigSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
 +#, python-format
 +msgid "Repository %r: Error parsing config: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
 +#, python-format
 +msgid "Repository %r is missing name in configuration, using id"
 +msgstr ""
 +
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
 +msgid "plugins already initialised"
 +msgstr ""
 +
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
 +msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
 +msgid "Reading Local RPMDB"
 +msgstr ""
 +
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
 +msgid "doRepoSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
 +msgid "doSackSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
 +msgid "Setting up Package Sacks"
 +msgstr ""
 +
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
 +#, python-format
 +msgid "repo object for repo %s lacks a _resetSack method\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
 +msgid "therefore this repo cannot be reset.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
 +msgid "doUpdateSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
 +msgid "Building updates object"
 +msgstr ""
 +
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
 +msgid "doGroupSetup() will go away in a future version of Yum.\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
 +msgid "Getting group metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
 +#, python-format
 +msgid "Adding group file from repository: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
 +#, python-format
 +msgid "Failed to add groups file for repository: %s - %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
 +msgid "No Groups Available in any repository"
 +msgstr ""
 +
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
 +msgid "Getting pkgtags metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
 +#, python-format
 +msgid "Adding tags from repository: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
 +#, python-format
 +msgid "Failed to add Pkg Tags for repository: %s - %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
 +msgid "Importing additional filelist information"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
 +#, python-format
 +msgid "The program %s%s%s is found in the yum-utils package."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
 +msgid ""
 +"There are unfinished transactions remaining. You might consider running yum-"
 +"complete-transaction first to finish them."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
 +msgid "--> Finding unneeded leftover dependencies"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
 +#, python-format
 +msgid "Protected multilib versions: %s != %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
 +#, python-format
 +msgid "Trying to remove \"%s\", which is protected"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
 +msgid ""
 +"\n"
 +"Packages skipped because of dependency problems:"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
 +#, python-format
 +msgid "    %s from %s"
 +msgstr ""
 +
 +#. FIXME: _N()
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
 +#, python-format
 +msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
 +msgid "Warning: RPMDB altered outside of yum."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
 +msgid "missing requires"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
 +msgid "installed conflict"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
 +msgid ""
 +"Warning: scriptlet or other non-fatal errors occurred during transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
 +msgid "Transaction couldn't start:"
 +msgstr ""
 +
 +#. should this be 'to_unicoded'?
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
 +msgid "Could not run transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
 +#, 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:1756
++#: ../yum/__init__.py:1792
 +#, python-format
 +msgid "%s was supposed to be installed but is not!"
 +msgstr ""
@@ -151242,460 +158848,480 @@ index 0000000..1535397
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
 +#, python-format
 +msgid "%s was supposed to be removed but is not!"
 +msgstr ""
 +
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
 +#, python-format
 +msgid "Existing lock %s: another copy is running as pid %s."
 +msgstr ""
 +
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
 +#, python-format
 +msgid "Could not create lock at %s: %s "
 +msgstr ""
 +
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr ""
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
 +#, python-format
 +msgid ""
 +"Package does not match intended download. Suggestion: run yum "
 +"--enablerepo=%s clean metadata"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
 +msgid "Could not perform checksum"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
 +msgid "Package does not match checksum"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
 +#, python-format
 +msgid "package fails checksum but caching is enabled for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
 +#, python-format
 +msgid "using local copy of %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2296
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr ""
++
++#: ../yum/__init__.py:2371
 +msgid "Header is not complete."
 +msgstr ""
 +
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
 +#, python-format
 +msgid ""
 +"Header not in local cache and caching-only mode enabled. Cannot download %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
 +#, python-format
 +msgid "Public key for %s is not installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
 +#, python-format
 +msgid "Problem opening package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
 +#, python-format
 +msgid "Public key for %s is not trusted"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
 +#, python-format
 +msgid "Package %s is not signed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
 +#, python-format
 +msgid "Cannot remove %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
 +#, python-format
 +msgid "%s removed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
 +#, python-format
 +msgid "Cannot remove %s file %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
 +#, python-format
 +msgid "%s file %s removed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
 +#, python-format
 +msgid "%d %s file removed"
 +msgid_plural "%d %s files removed"
 +msgstr[0] ""
 +
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
 +#, python-format
 +msgid "More than one identical match in sack for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
 +#, python-format
 +msgid "Nothing matches %s.%s %s:%s-%s from update"
 +msgstr ""
 +
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
 +msgid ""
 +"searchPackages() will go away in a future version of Yum."
 +"                      Use searchGenerator() instead. \n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
 +#, python-format
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
 +msgstr[0] ""
 +
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
 +#, python-format
 +msgid "searching package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
 +msgid "searching in file entries"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
 +msgid "searching in provides entries"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
 +msgid "No group data available for configured repositories"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
 +#, python-format
 +msgid "No Group named %s exists"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
 +#, python-format
 +msgid "package %s was not marked in group %s"
 +msgstr ""
 +
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
 +#, python-format
 +msgid "Adding package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
 +#, python-format
 +msgid "No package named %s available to be installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
 +#, python-format
-+msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
 +msgstr ""
 +
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
 +#, python-format
 +msgid "Group %s does have %u conditional packages, which may get installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
 +#. This can happen due to excludes after .up has
 +#. happened.
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
 +#, python-format
 +msgid "Package tuple %s could not be found in packagesack"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
 +#, python-format
 +msgid "Package tuple %s could not be found in rpmdb"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
 +#, python-format
 +msgid "Invalid version flag from: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
 +#, python-format
 +msgid "No Package found for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
 +msgid "Package Object was not a package object instance"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
 +msgid "Nothing specified to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
 +#, python-format
 +msgid "Checking for virtual provide or file-provide for %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
 +#, python-format
 +msgid "Package %s installed and not available"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
 +msgid "No package(s) available to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
 +#, python-format
 +msgid "Package: %s  - already in transaction set"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
 +#, python-format
 +msgid "Package %s is obsoleted by %s which is already installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
 +#, python-format
 +msgid ""
 +"Package %s is obsoleted by %s, but obsoleting package does not provide for "
 +"requirements"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
 +#, python-format
 +msgid "Package %s is obsoleted by %s, trying to install %s instead"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
 +#, python-format
 +msgid "Package %s already installed and latest version"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
 +#, python-format
 +msgid "Package matching %s already installed. Checking for update."
 +msgstr ""
 +
 +#. update everything (the easy case)
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
 +msgid "Updating Everything"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
 +#, python-format
 +msgid "Not Updating Package that is already obsoleted: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
 +#, python-format
 +msgid "%s"
 +msgstr "%s"
 +
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
 +#, python-format
 +msgid "Package is already obsoleted: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
 +#, python-format
 +msgid "Not Updating Package that is obsoleted: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
 +#, python-format
 +msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
 +#, python-format
 +msgid "Skipping the running kernel: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
 +#, python-format
 +msgid "Removing %s from the transaction"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
 +#, python-format
 +msgid "Cannot open: %s. Skipping."
 +msgstr "Açılamıyor: %s. Atlanıyor."
 +
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
 +#, python-format
 +msgid "Examining %s: %s"
 +msgstr "%s İnceleniyor: %s"
 +
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
 +#, python-format
 +msgid "Cannot localinstall deltarpm: %s. Skipping."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
 +#, python-format
 +msgid ""
 +"Cannot add package %s to transaction. Not a compatible architecture: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
 +#, python-format
 +msgid "Cannot install package %s. It is obsoleted by installed package %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
 +#, python-format
 +msgid ""
 +"Package %s not installed, cannot update it. Run yum install to install it "
 +"instead."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
 +#, python-format
 +msgid ""
 +"Package %s.%s not installed, cannot update it. Run yum install to install it"
 +" instead."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
 +#, python-format
 +msgid "Excluding %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
 +#, python-format
 +msgid "Marking %s to be installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
 +#, python-format
 +msgid "Marking %s as an update to %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
 +#, python-format
 +msgid "%s: does not update installed package."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
 +#, python-format
 +msgid "Cannot open file: %s. Skipping."
 +msgstr ""
 +
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
 +msgid "Problem in reinstall: no package matched to remove"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
 +#, python-format
 +msgid "Problem in reinstall: no package %s matched to install"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
 +msgid "No package(s) available to downgrade"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
 +#, python-format
 +msgid "Package %s is allowed multiple installs, skipping"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
 +#, python-format
 +msgid "No Match for available package: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
 +#, python-format
 +msgid "Only Upgrade available on package: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
 +#, python-format
 +msgid "Failed to downgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
 +#, python-format
 +msgid "Retrieving key from %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
 +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:5306
++#: ../yum/__init__.py:5766
 +#, python-format
 +msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
 +msgid "GPG key signature verified against CA Key(s)"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
 +#, python-format
 +msgid "Invalid GPG Key from %s: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
 +#, python-format
 +msgid "GPG key parsing failed: key does not have value %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -151705,7 +159331,7 @@ index 0000000..1535397
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
 +#, python-format
 +msgid ""
 +"Importing %s key 0x%s:\n"
@@ -151714,7 +159340,7 @@ index 0000000..1535397
 +" From       : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5379
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -151724,44 +159350,44 @@ index 0000000..1535397
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5393
++#: ../yum/__init__.py:5853
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already installed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
 +#, python-format
 +msgid "Key import failed (code %d)"
 +msgstr "Anahtarın içe aktarımı başarısız oldu (kod %d)"
 +
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
 +msgid "Key imported successfully"
 +msgstr "Anahtar başarıyla içe aktarıldı"
 +
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
 +msgid "Didn't install any keys"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
 +#, 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:5450
++#: ../yum/__init__.py:5910
 +msgid "Import of key(s) didn't help, wrong key(s)?"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Hayır"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Evet"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -151772,123 +159398,120 @@ index 0000000..1535397
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
 +#, python-format
 +msgid "GPG key at %s (0x%s) is already imported"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
 +#, python-format
 +msgid "Didn't install any keys for repo %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
 +#, 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:5705
++#: ../yum/__init__.py:6172
 +msgid "Unable to find a suitable mirror."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
 +msgid "Errors were encountered while downloading packages."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
 +#, python-format
 +msgid "Please report this error at %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
 +msgid "Test Transaction Errors: "
 +msgstr ""
 +
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
 +#, python-format
 +msgid "Could not set cachedir: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
 +msgid "Dependencies not solved. Will not save unresolved transaction."
 +msgstr ""
 +
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
 +#, python-format
 +msgid "Could not save transaction file %s: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
 +#, python-format
 +msgid "Could not access/read saved transaction %s : %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6038
-+msgid "rpmdb ver mismatched saved transaction version, "
-+msgstr ""
-+
-+#: ../yum/__init__.py:6040
-+msgid " ignoring, as requested."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
-+msgid " aborting."
-+msgstr "iptal ediliyor."
-+
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
 +msgid "cannot find tsflags or tsflags not integer."
 +msgstr ""
 +
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
 +#, python-format
 +msgid "Found txmbr in unknown current state: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
 +#, python-format
 +msgid "Could not find txmbr: %s in state %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
 +#, python-format
 +msgid "Could not find txmbr: %s from origin: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
 +msgid "Transaction members, relations are missing or ts has been modified,"
 +msgstr ""
 +
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
 +msgid " ignoring, as requested. You must redepsolve!"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -151982,7 +159605,7 @@ index 0000000..1535397
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -151990,6 +159613,10 @@ index 0000000..1535397
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
 +#: ../rpmUtils/oldUtils.py:33
 +#, python-format
 +msgid "Header cannot be opened or does not match %s, %s."
@@ -152019,16 +159646,17 @@ index 0000000..1535397
 +msgid "Error opening rpm %s - error %s"
 +msgstr ""
 diff --git a/po/uk.po b/po/uk.po
-index f5a658d..667147f 100644
+index f5a658d..85da080 100644
 --- a/po/uk.po
 +++ b/po/uk.po
-@@ -2,951 +2,979 @@
+@@ -2,951 +2,1063 @@
  # 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, 2012.
++# Yuri Chornoivan <yurchor at ukr.net>, 2011-2012.
++# Yuri Chornoivan <yurchor at ukr.net>, 2011-2012, 2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -152038,8 +159666,8 @@ index f5a658d..667147f 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Ukrainian (http://www.transifex.net/projects/p/yum/team/uk/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:15+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-31 08:31+0000\n"
 +"Last-Translator: Yuri Chornoivan <yurchor at ukr.net>\n"
 +"Language-Team: Ukrainian (http://www.transifex.com/projects/p/yum/language/uk/)\n"
  "MIME-Version: 1.0\n"
@@ -152050,7 +159678,7 @@ index f5a658d..667147f 100644
 +"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:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr "Оновлення"
  
@@ -152061,31 +159689,31 @@ index f5a658d..667147f 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr "Став застарілим"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "Оновлено"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "Встановлено"
  
@@ -152112,7 +159740,7 @@ index f5a658d..667147f 100644
  msgstr "Вилучено: %s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "Вилучення"
  
@@ -152122,69 +159750,69 @@ index f5a658d..667147f 100644
  msgstr "Очищення диска"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "Команду «%s» вже визначено"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr "Налаштування сховищ"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr "Читання метаданих сховища з локальних файлів"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "Помилка налаштування: %s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr "Помилка у параметрах: %s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  Встановлено: %s-%s у %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  Зібрано    : %s о %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr "  Надіслано  : %s о %s"
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr "Вам слід вказати якусь команду"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr "Команди %s не виявлено. Будь ласка, скористайтеся командою %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr "Вимоги до диска:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -152197,7 +159825,7 @@ index f5a658d..667147f 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
@@ -152205,78 +159833,100 @@ index f5a658d..667147f 100644
 -"Резюме помилок\n"
 -"-------------\n"
 +msgstr "Резюме помилок\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "Не вдалося створити файл блокування. Завершення роботи."
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "Зараз yum блокує стороння програма. Завершуємо роботу відповідно до налаштування exit_on_lock"
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
 -msgstr ""
 -"Спроба виконання операції за умови порожнього списку операцій. Завершуємо "
 -"роботу."
 +msgstr "Спроба виконання операції за умови порожнього списку операцій. Завершуємо роботу."
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "новітня версія rpmdb не відповідає збереженим даним щодо версії у операції,"
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " ігнорується у відповідь на запит."
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " завершення роботи."
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr "Завершення роботи за бажанням користувача"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr "Звантаження пакунків:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr "Помилка завантаження пакетів:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr "Виконання перевірки операції"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr "ПОМИЛКА. Вам слід оновити rpm для обробки:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr "ПОМИЛКА перевірки дії під час розв’язання залежностей:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM слід оновити"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr "Будь ласка, повідомте про цю помилку за адресою %s"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr "Запускається операція з перевірки"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr "Помилка під час перевірки операції:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr "Операцію з перевірки успішно завершено"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr "Виконання операції"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -152286,18 +159936,18 @@ index f5a658d..667147f 100644
 +msgstr "Автоматичне імпортування ключів під час некерованого запуску заборонено.\nСкасувати заборону можна параметром «-y»."
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr "  * Можливо, ви хотіли використати: "
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr "Пакунок %s%s%s недоступний."
@@ -152305,7 +159955,12 @@ index f5a658d..667147f 100644
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "Пакунки, які слід встановити"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "Помилковий параметр %s до %s."
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
@@ -152315,13 +159970,13 @@ index f5a658d..667147f 100644
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "Нічого виконувати"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr "%d пакунків позначено для оновлення"
@@ -152332,12 +159987,12 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків позначено для оновлення"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr "Для оновлення не позначено жодного пакунка"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr "%d пакунків позначено для виконання синхронізації дистрибутивів"
@@ -152348,14 +160003,14 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків позначено для виконання синхронізації дистрибутивів"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
 -msgstr ""
 -"Для виконання синхронізації дистрибутивів не позначено жодного пакунка"
 +msgstr "Для виконання синхронізації дистрибутивів не позначено жодного пакунка"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr "%d пакунків позначено для вилучення"
@@ -152366,14 +160021,14 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків позначено для вилучення"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "Для вилучення не позначено жодного пакунка"
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "Пакунки, версію яких слід знизити"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -152382,13 +160037,13 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків зі зниженням версії"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr " (з %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr "Встановлений пакунок %s%s%s%s недоступний."
@@ -152396,7 +160051,7 @@ index f5a658d..667147f 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "Пакунки для перевстановлення"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -152405,22 +160060,22 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків для перевстановлення"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "Не надано жодного пакунка"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "Пакунки, які слід встановити"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr "Відповідність Н/Р: %s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
 -msgstr ""
@@ -152429,7 +160084,7 @@ index f5a658d..667147f 100644
 +msgstr "  Виконано пошук %sлише%s за назвою і резюме, скористайтеся «search all» для пошуку у всіх даних"
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -152439,13 +160094,13 @@ index f5a658d..667147f 100644
 +msgstr "  Виконано пошук %sлише%s за повною назвою і резюме, скористайтеся «search all» для пошуку у всіх даних"
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "Відповідники: %s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
 -msgstr ""
@@ -152454,18 +160109,18 @@ index f5a658d..667147f 100644
 +msgstr "  Виконано пошук %sпереважно%s за назвою і резюме, скористайтеся «search all» для пошуку у всіх даних"
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "Попередження: відповідників %s не знайдено"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr "Не знайдено відповідників"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "Пакунків з %s не знайдено"
@@ -152475,118 +160130,145 @@ index f5a658d..667147f 100644
 +msgstr "Помилка. Таких пакунків не знайдено:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr "Спорожнення записів сховищ: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr "Вилучення всього"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr "Вилучення заголовків"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr "Вилучення зайвих пакунків"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr "Вилучення метаданих xml"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr "Вилучення кешу бази даних"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr "Вилучення метаданих застарілого кешу"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr "Вилучення кешованих даних rpmdb"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr "Вилучення додатків"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
- msgstr "Попередження: відповідних груп не знайдено: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
+-msgstr "Попередження: відповідних груп не знайдено: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "Встановлені групи середовищ:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "Доступні групи середовищ:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "Встановлені групи:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr "Встановлені групи мов:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr "Наявні групи:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr "Доступні групи мов:"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "Попередження: немає відповідності середовищ/груп: %s"
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr "Виконано"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "Попередження: групи/середовища з назвою %s не існує."
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "Попередження: середовища з назвою %s не існує."
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "Попередження: групи з назвою %s не існує."
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
 -msgstr ""
 -"У жодній з вказаних груп немає пакунків для встановлення або оновлення"
 +msgstr "У жодній з вказаних груп немає пакунків для встановлення або оновлення"
- 
--#: ../cli.py:1326
-+#: ../cli.py:1705
- #, python-format
--msgid "%d Package(s) to Install"
--msgstr "%d пакунків для встановлення"
++
++#: ../cli.py:1885
++#, python-format
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] "%d пакунок для встановлення"
 +msgstr[1] "%d пакунки для встановлення"
 +msgstr[2] "%d пакунків для встановлення"
  
+-#: ../cli.py:1326
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
+ #, python-format
+-msgid "%d Package(s) to Install"
+-msgstr "%d пакунків для встановлення"
++msgid "No Environment named %s exists"
++msgstr "Середовища з назвою %s не існує"
+ 
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "Групи з назвою %s не існує"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr "Пакунків для вилучення з груп не знайдено"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr "%d пакунків для вилучення"
@@ -152597,37 +160279,37 @@ index f5a658d..667147f 100644
 +msgstr[2] "%d пакунків для вилучення"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "Пакунок %s вже встановлено, пропускаємо"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr "Не встановлено інших %s, додаємо до списку потенційного встановлення"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "Параметри додатка"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "Помилка виконання команди: %s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -152640,359 +160322,367 @@ index f5a658d..667147f 100644
 +msgstr "\n\n%s: для параметра %s потрібен аргумент"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color повинен мати один з аргументів: auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr "Аргументом --installroot має бути абсолютний шлях: %s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "показати це довідкове повідомлення і завершити роботу"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr "ігнорувати помилки"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "запустити на основі системного кешу, не оновлювати кеш"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "розташування файла налаштувань"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "максимальний час очікування на завершення команди"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "рівень докладності діагностичних повідомлень"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr "показати дублікати у сховищах та командах побудови списку та пошуку"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "рівень докладності повідомлень про помилки"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr "рівень докладності діагностичних повідомлень rpm"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr "обробка без виведення повідомлень"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "докладна обробка команд"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr "відповісти «так» на всі питання"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr "відповідати «ні» на всі питання"
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr "показати версію Yum і завершити роботу"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr "встановити кореневий каталог встановлення"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"увімкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
 +msgstr "увімкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
 -msgstr ""
 -"вимкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
 +msgstr "вимкнути одне або декілька сховищ (можна використовувати шаблони заміни)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr "виключити пакунки за назвою або формальним виразом"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr "вимкнути виключення з main для сховища або на загальному рівні"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr "увімкнути обробку застарілих пакунків під час оновлень"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "вимкнути додатки Yum"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr "вимкнути перевірку підписів gpg"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "вимкнути додатки за назвою"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr "увімкнути додатки за назвою"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr "пропустити пакунки з помилками у розв’язанні залежностей"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "визначає, чи слід використовувати розфарбовування"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
 -msgstr ""
 -"встановити значення $releasever у налаштуванні yum config and repo files"
 +msgstr "встановити значення $releasever у налаштуванні yum config and repo files"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "не оновлювати, лише отримати дані"
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "визначає альтернативний каталог для зберігання пакунків"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr "встановити довільні параметри налаштування і сховищ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "січ"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "лют"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "бер"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "кві"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "тра"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "чер"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "лип"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "сер"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "вер"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "жов"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "лис"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "гру"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr "Спроба використання іншого дзеркала."
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr "Назва       : %s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr "Архітектура : %s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr "Епоха       : %s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr "Версія      : %s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr "Випуск      : %s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr "Розмір      : %s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr "Сховище     : %s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr "Зі сховища  : %s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "Автор       : %s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "Час внеску  : %s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "Час збирання : %s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "Встановлення: %s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr "Користувач : %s"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "Змінено     : %s"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr "Резюме      : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr "Адреса      : %s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr "Ліцензія     : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr "Опис        : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "так"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "ні"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr "Виконати дію? [y/N]: "
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -153003,166 +160693,190 @@ index f5a658d..667147f 100644
 +msgstr "\nГрупа: %s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " Ід. групи: %s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " Опис: %s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr " Мова: %s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " Обов’язкові пакунки:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " Типові пакунки:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " Додаткові пакунки:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " Залежні пакунки:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr " Встановлені пакунки:"
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\nГрупа середовища: %s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr " Ід. середовища: %s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr " Обов’язкові групи:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr " Додаткові групи:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr " Встановлені групи:"
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "пакунок: %s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr "  Пакунок не залежить від інших пакунків"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr "  залежність: %s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr "   Незадоволена залежність"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr "Відповідність:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr "Ліцензія    : %s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "Назва файла : %s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr "Містить     : "
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "Інше        : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "Під час обчислення загального обсягу звантаження сталася помилка"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr "Загальний обсяг: %s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "Загальний обсяг звантаження: %s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "Розмір після встановлення: %s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr "Під час обчислення обсягу після встановлення сталася помилка"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "Перевстановлення"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "Зниження версії"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "Встановлення для залежностей"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "Оновлення для залежностей"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "Вилучення для залежностей"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "Пропущено (проблеми з залежностями)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "Не встановлено"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "Недоступний"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "Пакунок"
 +msgid_plural "Packages"
@@ -153171,33 +160885,33 @@ index f5a658d..667147f 100644
 +msgstr[2] "Пакунки"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "Архітектура"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "Версія"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr "Сховище"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "Розмір"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "     заміна  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -153213,7 +160927,7 @@ index f5a658d..667147f 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "Встановлення %5.5s пакунків\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "Встановити"
  
@@ -153221,7 +160935,7 @@ index f5a658d..667147f 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "Оновлення  %5.5s пакунків\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
 +msgstr "Оновити"
  
@@ -153229,7 +160943,7 @@ index f5a658d..667147f 100644
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "Вилучення %5.5s пакунків\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "Вилучити"
  
@@ -153237,7 +160951,7 @@ index f5a658d..667147f 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "Перевстановлення %5.5s пакунків\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "Перевстановлення"
  
@@ -153245,11 +160959,11 @@ index f5a658d..667147f 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "Зниження версії %5.5s пакунків\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "Понизити"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] "Залежні пакунки"
@@ -153257,47 +160971,47 @@ index f5a658d..667147f 100644
 +msgstr[2] "Залежні пакунки"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "Вилучено"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "Вилучено залежності"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "Встановлено залежності"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "Оновлено залежності"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "Замінено"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "Помилка"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "два"
  
-@@ -954,564 +982,598 @@ msgstr "два"
+@@ -954,564 +1066,592 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -153310,262 +161024,262 @@ index f5a658d..667147f 100644
 +msgstr "\n Поточне звантаження скасовано, %sперервіть роботу (ctrl-c) ще раз%s протягом %s%s%s секунд,\nщоб завершити операцію.\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "перервано користувачем"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "Загалом"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<не встановлено>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "Система"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr "Пропущено операцію з об’єднання %d з %d через перекриття даних"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr "Немає операцій"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "Вказано помилкові ідентифікатори операцій або пакунки"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr "Командний рядок"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr "Користувач"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "Ід."
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "Дата і час"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "Дії"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr "Змінено"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr "Не вказано ідентифікатора операції"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "Вказано помилковий ідентифікатор операції"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr "Не виявлено вказаного ідентифікатора операції"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr "Виявлено більше одного ідентифікатора операції!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr "Не вказано ідентифікатора операції або назви пакунка"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "Знижено версію"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "Старіший"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "Новіший"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "Ід. операції   :"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "Час початку     :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr "Початок rpmdb   :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr "(%u секунд)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr "(%u хвилин)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr "(%u годин)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr "(%u днів)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "Час завершення  :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr "Завершення rpmdb:"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "Користувач     :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "Повернутий код :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "Перервано"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr "Помилки:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "Помилка:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "Успіх"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "Командний рядок :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr "Збережені додаткові нетипові дані        : %d"
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr "Результат виконання операції:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr "Змінено пакунків:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "Пропущено пакунків:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr "Проблеми з rpmdb:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Виведено скриптом:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "Помилки:"
  
@@ -153574,17 +161288,17 @@ index f5a658d..667147f 100644
 -msgstr "Встановити"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "Встановлення з залежностями"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "Робить застарілим"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr "Стерти"
  
@@ -153597,225 +161311,227 @@ index f5a658d..667147f 100644
 -msgstr "Понизити"
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "Оновити"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "Час"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "Протягом дня"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "Попереднього тижня"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "Попередні 2 тижні"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "Попередні 3 місяці"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "Попередні 6 місяців"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "Попередній рік"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "Понад рік тому"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "Не знайдено операції %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "Ід. операції  :"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "Доступні додаткові дані з журналу:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr "%s: для цієї назви додаткових даних не знайдено"
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr "Пакунок        :"
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr "Стан           :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr "Розмір         :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr "Вузол збирання :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr "Час збирання   :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr "Пакувальник    :"
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr "Постачальник   :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr "Ліцензія       :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr "Адреса         :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr "RPM з кодом    :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr "Час надсилання :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "Автор внеску   :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr "Причина        :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr "Зі сховища      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "Встановлено    :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "Автор змін     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
 -msgstr "встановлення"
 +msgstr "встановлено"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr "оновленням"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "вилучено"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "перевстановлено"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr "зниженням версії"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr "робити застарілим"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "оновлено"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "визнано застарілим"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr "---> Пакунок %s.%s %s:%s-%s буде %s"
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr "--> Виконання перевірки операції"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr "--> Перезапускається визначення залежностей з урахуванням змін."
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr "--> Визначення залежностей завершено"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr "--> Обробка залежності: %s для пакунка: %s"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> Збережено пакунок: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> Збережено пакунок: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> Зберігаємо пакунок: %s через %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr "--> Нерозв'язана залежність: %s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "Пакунок: %s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -153826,7 +161542,7 @@ index f5a658d..667147f 100644
 +msgstr "\n    Потребує: %s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -153837,7 +161553,7 @@ index f5a658d..667147f 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -153848,7 +161564,7 @@ index f5a658d..667147f 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -153859,38 +161575,38 @@ index f5a658d..667147f 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "Оновлено"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "Знижено версію"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "Став застарілим"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "Наявні"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> Обробка конфлікту: %s конфліктів %s"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr "--> Додавання вибраних пакунків до операції. Зачекайте, будь ласка."
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr "---> У список операцій звантажується заголовок пакунка %s."
@@ -153898,70 +161614,70 @@ index f5a658d..667147f 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "Перевірка"
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr "Виконання"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "Сплю"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "Безперервний"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "Зомбі"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "З трасуванням/зупинкою"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "Невідомо"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  Сторонньою програмою є: PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  Сторонньою програмою є: %s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    Пм’ять : %5s RSS (%5sБ VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    Почато: %s - %s тому"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    Стан   : %s, PID: %d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -153973,7 +161689,7 @@ index f5a658d..667147f 100644
 +msgstr "\n\nЗавершення роботи на запит користувача"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -153985,7 +161701,7 @@ index f5a658d..667147f 100644
 +msgstr "\n\nЗавершення роботи через розрив зв’язку"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -153995,54 +161711,52 @@ index f5a658d..667147f 100644
 -"\n"
 -"\n"
 -"%s"
-+msgstr "\n\n%s"
- 
+-
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
 -msgstr ""
 -"Зараз yum блокує стороння програма. Завершуємо роботу відповідно до "
 -"налаштування exit_on_lock"
-+msgstr "Зараз yum блокує стороння програма. Завершуємо роботу відповідно до налаштування exit_on_lock"
++msgstr "\n\n%s"
  
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "Помилка PluginExit: %s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Помилка Yum: %s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "Помилка: %s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
  msgstr " Щоб обійти проблему, спробуйте скористатися параметром --skip-broken"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../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:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr "Невідомі помилки: код виходу: %d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -154052,11 +161766,11 @@ index f5a658d..667147f 100644
 +msgstr "\nЗалежності розв’язано"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "Завершено!"
  
-@@ -1521,11 +1583,9 @@ msgstr " Коротко щодо використання:\n"
+@@ -1521,11 +1661,9 @@ msgstr " Коротко щодо використання:\n"
  
  #: ../yumcommands.py:52
  msgid "You need to be root to perform this command."
@@ -154070,7 +161784,7 @@ index f5a658d..667147f 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1540,479 +1600,490 @@ msgid ""
+@@ -1540,589 +1678,653 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -154105,51 +161819,71 @@ index f5a658d..667147f 100644
  msgstr "Помилка: %s слід передати список пакунків"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "Помилка: для %s потрібно принаймні два пакунки"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "Помилка: до %s слід передати ід. сховища і команду"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "Помилка: до %s слід передати один чинний ід. сховища"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "Помилка: сховище %s не увімкнено"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "Помилка: слід вказати ключ для встановлення відповідності"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "Помилка: слід вказати групу або список груп"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "Помилка: для виконання clean слід вказати %s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "Помилка: некоректний аргумент clean: %r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr "Не вказано аргумент shell"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr "shell передано назву файла: %s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr "Файла %s, переданого як аргумент параметра shell, не знайдено."
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr "Помилка: shell передано як аргументи декілька файлів."
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -154161,114 +161895,114 @@ index f5a658d..667147f 100644
 +msgstr "Не увімкнено жодного сховища.\n Для перегляду списку всіх сховищ віддайте команду «yum repolist all».\n Увімкнути сховище можна за допомогою команди yum-config-manager --enable <repo>"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "ПАКУНОК…"
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "Встановлення пакунка або пакунків у вашій системі"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "Налаштування процесу встановлення"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[ПАКУНОК…]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "Оновлення пакунків вашої системи"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "Налаштування процесу оновлення"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
 -msgstr ""
 -"Синхронізація встановлених пакунків з найсвіжішими доступними версіями"
 +msgstr "Синхронізація встановлених пакунків з найсвіжішими доступними версіями"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "Налаштування процесу синхронізації дистрибутивів"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "Показати подробиці щодо пакунка або групи пакунків"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "Встановлені пакунки"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "Доступних пакунків"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr "Зайвих пакунків"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "Оновлених пакунків"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "Застарілих пакунків"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "Останні додані пакунки"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "У списку не виявлено відповідних пакунків"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "Список пакунків або груп пакунків"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "Вилучення пакунка або пакунків з вашої системі"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr "Налаштування процесу вилучення"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "Показати або використати дані груп"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "Налаштування обробки груп"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "Не виявлено груп, над якими має бути виконано команду"
  
@@ -154279,7 +162013,7 @@ index f5a658d..667147f 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "Встановлення пакунків групи"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "Некоректна підкоманда груп, скористайтеся: %s."
@@ -154287,29 +162021,29 @@ index f5a658d..667147f 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "Вилучення пакунків групи"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "Немає встановленого файла груп."
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "Показ подробиць щодо групи пакунків"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "У вас немає прав доступу до бази даних груп."
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "Створення кешу метаданих"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "Створення файлів кешу для всіх файлів метаданих."
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
 -msgstr ""
 -"Процедура може тривати досить довго, тривалість залежить від потужності "
@@ -154317,52 +162051,52 @@ index f5a658d..667147f 100644
 +msgstr "Процедура може тривати досить довго, тривалість залежить від потужності комп’ютера."
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "Створено кеш метаданих"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr "Вилучення кешованих даних"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "Пошук пакунка за вказаним ключем"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr "Перевірка доступності оновлень пакунків"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "Пошук подробиць щодо пакунка за вказаним рядком"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "Пошук пакунків: "
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "Оновлення пакунків з врахуванням застарівання пакунків"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr "Налаштування процесу оновлення"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr "Встановлення локального пакунка RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr "Налаштування обробки локального пакунка"
  
@@ -154371,150 +162105,150 @@ index f5a658d..667147f 100644
 -msgstr "Визначення пакунка, що містить вказану залежність"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "Пошук пакунків для задоволення залежності:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr "Запуск інтерактивної оболонки yum"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr "Налаштування оболонки Yum"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "Показ списку залежностей пакунків"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr "Пошук залежностей: "
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr "Показ списку увімкнених сховищ програмного забезпечення"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "увімкнено"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "вимкнено"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr "Ід. сховища   : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr "Назва сховища : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr "Стан сховища  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr "Версія сховища: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr "Мітки сховища : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr "Мітки дистрибутива сховища: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr "Оновлення сховища: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr "Пакунки сховища: "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr "Розмір сховища: "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr "Адреса сховища: "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr "Метапосилання сховища: "
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr "  Оновлено   : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr "Дзеркала сховищ: "
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr "Ніколи (востаннє: %s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr "Негайно (лишилося: %s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr "%s секунд (лишилося: %s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr "Строк дії сховища: "
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr "Виключення сховища: "
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr "Включення сховища: "
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr "Виключені сховища: "
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
 +msgstr "Назва файла сховища: "
@@ -154522,33 +162256,33 @@ index f5a658d..667147f 100644
  #. Work out the first (id) and last (enabled/disalbed/count),
  #. then chop the middle (name)...
 -#: ../yumcommands.py:1032 ../yumcommands.py:1061
-+#: ../yumcommands.py:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr "ід. сховища"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "стан"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr "назва сховища"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr "Показати корисну підказку щодо використання"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "Довідки щодо %s не виявлено"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -154560,7 +162294,7 @@ index f5a658d..667147f 100644
 +msgstr "\n\nінші назви: "
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -154572,148 +162306,189 @@ index f5a658d..667147f 100644
 +msgstr "\n\nінша назва: "
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr "Налаштування процесу перевстановлення"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr "перевстановлення пакунка"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr "Налаштування процесу зниження версії"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr "зниження версії пакунка"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr "Показ версії для вашої архітектури і/або списку доступних сховищ."
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr " Групи версій Yum:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " Група   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " Пакунки:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "Встановлено:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "Встановлені групи:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "Доступні:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "Доступні групи:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "Показ або використання журналу операцій"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr "Операції:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr "Час початку :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr "Час закінч. :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "Лічильники  :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr "  rpm DB :"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr "  yum DB :"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "Некоректна підкоманда журналу, скористайтеся: %s."
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr "У вас немає права доступу до бази даних журналу."
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr "Пошук проблем у rpmdb"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr "завантажити збережену операцію з файла з вказаною назвою"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr "Не вказано файла збережених записів операцій"
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr "завантаження операції з %s"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr "Операцію завантажено з %s, кількість дій — %s"
-@@ -2023,106 +2094,110 @@ msgstr "Операцію завантажено з %s, кількість дій
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "Простий спосіб заміни пакунків замість використання командної оболонки"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "Обробляти сховище як групу пакунків для встановлення або вилучення всіх цих пакунків одночасно"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d пакунок оновлення"
++msgstr[1] "%d пакунки оновлення"
++msgstr[2] "%d пакунків оновлення"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d пакунок для вилучення або повторного встановлення"
++msgstr[1] "%d пакунки для вилучення або повторного встановлення"
++msgstr[2] "%d пакунків для вилучення або повторного встановлення"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d пакунок для вилучення або синхронізації"
++msgstr[1] "%d пакунки для вилучення або синхронізації"
++msgstr[2] "%d пакунків для вилучення або синхронізації"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "Некоректна підкоманда %s"
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  msgid " Yum checks failed: %s"
  msgstr " Спроба перевірки yum зазнала невдачі: %s"
  
@@ -154722,32 +162497,25 @@ index f5a658d..667147f 100644
 -"Another app is currently holding the yum lock; waiting for it to exit..."
 -msgstr ""
 -"Зараз yum блокує стороння програма. Зачекаємо на завершення її роботи..."
-+#: ../yummain.py:110
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
 +msgstr "Немає доступу до читання або виконання до поточного каталогу, пересуваємо до /"
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
+-msgstr "Не вдалося створити файл блокування. Завершення роботи."
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
 +msgstr "Немає доступу до getcwd() у поточному каталозі, переходимо до /"
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
- msgstr "Не вдалося створити файл блокування. Завершення роботи."
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr "Зараз yum блокує стороння програма. Зачекаємо на завершення її роботи..."
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr "Розв’язання залежностей"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
@@ -154759,7 +162527,7 @@ index f5a658d..667147f 100644
 +msgstr "Ваш запис операції було збережено, повторити операцію можна за допомогою\n yum load-transaction %s"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -154799,7 +162567,7 @@ index f5a658d..667147f 100644
  msgstr "Частина: %s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s перетворено для встановлення"
@@ -154856,7 +162624,7 @@ index f5a658d..667147f 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "Режим надання пакунка %s: %s"
-@@ -2130,1044 +2205,1071 @@ msgstr "Режим надання пакунка %s: %s"
+@@ -2130,1044 +2332,1142 @@ 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 :(
@@ -154867,19 +162635,29 @@ index f5a658d..667147f 100644
  msgstr "Спроба оновлення %s з метою розв’язання залежностей"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr "Не знайдено шляхів оновлення %s. Помилка!"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "Для %s не знайдено шляхів для оновлення. Помилка через потребу у %s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "Оновлення %s. Не виправляє потребу у %s!"
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr "TSINFO: пакунок %s, потрібний для %s, позначено для вилучення"
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
 -msgstr ""
@@ -154888,26 +162666,26 @@ index f5a658d..667147f 100644
 +msgstr "TSINFO: %s стає застарілим після встановлення %s для розв’язання залежностей."
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr "TSINFO: оновлення %s для розв’язання залежностей."
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr "Не вдалося знайти шлях оновлення для залежності %s"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr "Встановлено швидку відповідність %s пакунку потрібному для пакунка %s"
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
 -msgstr ""
@@ -154915,87 +162693,87 @@ index f5a658d..667147f 100644
 +msgstr "%s належить до списку супутніх пакунків, його вже встановлено, пропускаємо."
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr "Потенційний пакунок розв’язання %s має новішу версію у ts."
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr "Встановлено новішу версію потенційного пакунка розв’язання %s."
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s вже перебуває у списку, пропускаємо його"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr "TSINFO: позначення %s як оновлення для %s"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, 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:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr "Успіх — порожня операція"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "Перезапуск циклу"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "Завершення процесу розв’язання залежностей"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "Успіх — залежності розв’язано"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr "Перевірка залежностей для %s"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr "пошук %s, потрібного для %s"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr "Виконання compare_providers() для %s"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "краща архітектура у po %s"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s робить застарілим %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -155006,25 +162784,25 @@ index f5a658d..667147f 100644
 +msgstr "archdist порівняно %s з %s у %s\n  Кращий варіант: %s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr "загальний sourcerpm %s і %s"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "базовий пакунок %s встановлено для %s"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr "загальний префікс %s для %s і %s"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "мінімальна вимога: %d"
@@ -155032,41 +162810,46 @@ index f5a658d..667147f 100644
 +msgstr "містить vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr " Переможець: %s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr "мінімальна вимога: %d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " Невдаха(з %d): %s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "Найкращий порядок: %s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr "doConfigSetup() буде усунуто у майбутніх версіях Yum.\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "Пропускаємо непридатне до читання сховище %s"
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr "Сховище %r: помилка під час обробки налаштувань: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
 -msgstr ""
@@ -155075,113 +162858,118 @@ index f5a658d..667147f 100644
 +msgstr "Для сховища %r у налаштуваннях не вказано назви, використовуємо ідентифікатор"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "додатки вже ініціалізовано"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr "doRpmDBSetup() буде усунуто у наступних версіях Yum.\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr "Читання локальної RPMDB"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr "doRepoSetup() буде усунуто у майбутніх версіях Yum.\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr "doSackSetup() буде усунуто у майбутніх версіях Yum.\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "Налаштування наборів пакунків"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, 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:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr "тому параметри цього сховища не може бути відновлено до початкових.\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr "doUpdateSetup() буде усунуто у майбутніх версіях Yum.\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr "Побудова об’єкта оновлення"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr "doGroupSetup() буде усунуто у майбутніх версіях Yum.\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr "Отримання метаданих групи"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr "Додавання файла групи зі сховища: %s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "Не вдалося отримати файл груп для сховищ %s"
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr "Не вдалося додати файл груп зі сховища: %s — %s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr "У жодному сховищі немає доступних груп"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr "Отримання метаданих міток пакунків"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr "Додавання міток зі сховища: %s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr "Не вдалося додати мітки пакунків для сховища: %s — %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "Імпортування додаткових відомостей списку файлів"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, 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:1093
++#: ../yum/__init__.py:1094
  msgid ""
  "There are unfinished transactions remaining. You might consider running yum-"
  "complete-transaction first to finish them."
@@ -155191,24 +162979,58 @@ index f5a658d..667147f 100644
 +msgstr "Залишилися незавершені операції. Для їх завершення вам слід спочатку запустити yum-complete-transaction."
  
 -#: ../yum/__init__.py:983
-+#: ../yum/__init__.py:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr "--> Пошук непотрібних залишкових операцій"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr "Захищені версії multilib: %s != %s"
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr " Виявлено проблеми з версіями бібліотек для різних архітектур.\nЦе часто означає, що проблеми насправді десь у іншому місці,\nа перевірка версій для сторонніх архітектур лише вказує на\nіснування цієї проблеми. Приклад:\n\n  1. Ви маєте оновити %(name)s, для якого не вистачає певної\n     залежності, потрібної для встановлення іншого пакунка. Yum\n     намагається вирішити цю проблему встановленням старішої\n     версіїi %(name)s для іншої архітектури. Якщо цю помилкову\n     архітектуру буде вимкнено, yum повідомить вам, що є основною\n     проблемою (якому
  пакунку потрібні залежності, яких не\n     вистачає). Ви можете повторити спробу оновлення з параметром\n     --exclude %(name)s.інша_архітектура ... Це надасть вам\n     змогу ознайомитися з повідомлення про справжні причини\n     неможливості встановлення пакунка.\n\n  2. У системі встановлено пакунки %(name)s для декількох\n     архітектур, але yum бачит оновлення лише для однієї з цих\n     архітектур. Якщо пакунки для обох архітектур вам не потрібні,\n     ви можете вилучити той з них, для якого не вистачає оновлених\n     пакунків, і все має запрацювати.\n\n  3. У вашій с
 истемі встановлено декілька версій %(name)s.\n     Скористайтеся командою «yum check», щоб наказати yum показати\n     пов’язані з цим повідомлення про помилки.\n\n...крім того, ви можете скористатися параметром\n--setopt=protected_multilib=false, щоб усунути цю перевірку. Втім,\nне варто користуватися цим параметром, оскільки це майже напевно\nпризведе до якихось помилок (часто це може спричинити ще більші\nпроблеми).\n\n"
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "Спроба вилучення захищеного запису «%s»"
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -155218,14 +163040,14 @@ index f5a658d..667147f 100644
 +msgstr "\nПакунки, пропущені через проблеми з залежностями:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s з %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
 -msgstr ""
@@ -155234,22 +163056,22 @@ index f5a658d..667147f 100644
 +msgstr "** Знайдено %d проблем rpmdb, які вже існували, командою «yum check» виведено такі дані:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr "Попередження: RPMDB змінено поза межами yum."
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "не має потрібних"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "конфлікт встановлення"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
 -msgstr ""
@@ -155258,18 +163080,18 @@ index f5a658d..667147f 100644
 +msgstr "Попередження: під час виконання операції сталися помилки виконання скриптів та інші некритичні помилки."
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "Не вдалося розпочати операцію:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr "Не вдалося розпочати операцію."
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "Не вдалося вилучити файл операції %s"
@@ -155277,7 +163099,7 @@ index f5a658d..667147f 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s мало бути встановлено, але цю дію не було виконано!"
@@ -155288,7 +163110,7 @@ index f5a658d..667147f 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s мало бути вилучено, але цього не сталося!"
@@ -155306,32 +163128,32 @@ index f5a658d..667147f 100644
 -
  #. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, 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:2017
++#: ../yum/__init__.py:2053
  #, python-format
  msgid "Could not create lock at %s: %s "
  msgstr "Не вдалося створити блокування %s: %s "
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
 +#, python-format
 +msgid "Could not open lock %s: %s"
 +msgstr "Не вдалося вилучити блокування %s: %s"
 +
 +#. The pid doesn't exist
 +#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
 +#, python-format
 +msgid "Unable to check if PID %s is active"
 +msgstr "Не вдалося перевірити, чи є активним PID %s"
 +
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -155342,23 +163164,23 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок не відповідає тому, який програма має намір звантажити. Пропозиція: віддайте команду yum -enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "Не вдалося перевірити контрольну суму"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr "Контрольна сума пакунка не збігається з еталонною"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "використано локальну копію %s"
@@ -155373,14 +163195,18 @@ index f5a658d..667147f 100644
 -"Недостатньо місця у каталозі для звантажень %s\n"
 -"    * вільно   %s\n"
 -"    * потрібно %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "завершуємо роботу, оскільки вказано --downloadonly"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "Заголовок не завершено."
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
@@ -155390,55 +163216,55 @@ index f5a658d..667147f 100644
 +msgstr "Заголовка немає у локальному кеші, увімкнено режим «лише кешування». Не вдалося звантажити %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr "Відкритий ключ для %s не встановлено"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "Проблеми з відкриттям пакунка %s"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "Відкритий ключ %s не є надійним"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "Пакунок %s не підписано"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "Не вдалося вилучити %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s вилучено"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "Не вдалося вилучити файл %s, %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "Файл %s, %s, вилучено"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "Вилучено %d файлів %s"
@@ -155449,19 +163275,19 @@ index f5a658d..667147f 100644
 +msgstr[2] "Вилучено %d файлів %s"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr "У наборі для %s знайдено декілька ідентичних відповідників"
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
@@ -155471,7 +163297,7 @@ index f5a658d..667147f 100644
 +msgstr "searchPackages() буде усунуто у майбутніх версіях Yum.                      Використовуйте краще searchGenerator(). \n"
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "Пошук %d пакунків"
@@ -155482,111 +163308,128 @@ index f5a658d..667147f 100644
 +msgstr[2] "Пошук %d пакунків"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "пошук пакунка %s"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "пошук серед файлів"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "пошук у супутніх записах"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "Групи з назвою %s не існує"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "пакунок %s було позначено у групі %s"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "Пропускаємо пакунок %s з групи %s"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "Додавання пакунка %s з групи %s"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "Не вдалося знайти пакунок з назвою %s для встановлення"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
- msgstr "Попередження: у групі %s немає жодного пакунка."
+-msgid "Warning: Group %s does not have any packages."
+-msgstr "Попередження: у групі %s немає жодного пакунка."
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "Попередження: у групі %s немає жодного пакунка для встановлення."
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr "У групі %s %u необов’язкових пакунки, які може бути встановлено."
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "Пропускаємо групу %s з середовища %s"
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr "У наборі пакунків не вдалося знайти кортеж пакунків %s"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, 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:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr "Некоректний прапорець версії від: %s"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr "Пакунків з %s не знайдено"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "Попередження: групи середовища з назвою %s не існує."
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "Пакунок: %s не можна встановлювати одночасно з %s"
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr "Об’єкт пакунка не був екземпляром об’єкта пакунка"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "Список встановлення порожній"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "Пошук віртуальних супутніх пакунків або файлів для %s"
@@ -155598,30 +163441,30 @@ index f5a658d..667147f 100644
 -msgstr "Відповідника параметра не знайдено: %s"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr "Пакунок %s вже встановлено, його не можна позначити"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr "Немає доступних для встановлення пакунків"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr "Пакунок: %s  — вже у наборі операцій"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr "Пакунок %s став застарілим після встановлення %s"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -155632,7 +163475,7 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок %s став застарілим після встановлення %s, але застарілий пакунок не містить вимог до інших пакунків"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
 -msgstr ""
@@ -155641,61 +163484,61 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок %s став застарілим після встановлення %s, спробуємо встановити замість нього %s"
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr "Пакунок %s вже встановлено, його версія є найсвіжішою"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, 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:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr "Повне оновлення"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "Відповідника параметра не знайдено: %s"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr "Відповідного пакунка для оновлення не знайдено: %s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, 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:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr "Неоновлюваний пакунок, який застарів: %s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
  msgstr "Неоновлюваний пакунок, який було оновлено раніше: %s.%s %s:%s-%s"
@@ -155703,50 +163546,50 @@ index f5a658d..667147f 100644
 -#: ../yum/__init__.py:3982
 -msgid "No package matched to remove"
 -msgstr "Відповідного пакунка для вилучення не знайдено"
-+#: ../yum/__init__.py:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
 +msgstr "Відповідного пакунка для вилучення не знайдено: %s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "Пропущено поточне робоче ядро: %s"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "Вилучення %s з запису операції"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr "Не вдалося відкрити: %s. Пропускаємо."
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr "Перевірка %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, 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:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr "Не вдалося додати пакунок %s до операції. Несумісна архітектура: %s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
 -msgstr ""
@@ -155755,7 +163598,7 @@ index f5a658d..667147f 100644
 +msgstr "Не вдалося встановити пакунок %s. Він є застарілим після встановлення пакунка %s"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -155766,7 +163609,7 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок %s не встановлено, не вдалося оновити його. Віддайте команду yum install, щоб встановити цей пакунок."
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -155777,42 +163620,42 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок %s.%s не встановлено, його не можна оновити. Вам слід скористатися командою «yum install» для його встановлення."
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "Виключення %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "Позначення %s для встановлення"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "Позначення %s як оновлення %s"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s: не оновлює встановлений пакунок."
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "Не вдалося відкрити файл %s. Пропускаємо."
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "Проблема з перевстановленням: не виявлено пакунків для вилучення"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
 -msgstr ""
@@ -155821,12 +163664,12 @@ index f5a658d..667147f 100644
 +msgstr "Проблема з перевстановленням: не виявлено відповідного пакунка %s для встановлення"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "Немає доступних для зниження версії пакунків"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
 -msgstr ""
@@ -155834,66 +163677,66 @@ index f5a658d..667147f 100644
 +msgstr "Пакунок %s можна встановлювати паралельно з іншими версіями, пропускаємо"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "Немає відповідників для доступного пакунка: %s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr "Для пакунка доступне лише оновлення: %s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "Не вдалося знизити версію: %s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr "Не вдалося оновити: %s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr "Отримання ключа з %s"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr "Перевірено відповідність підпису ключа GPG ключам CA"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr "Некоректний ключ GPG з %s: %s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr "Помилка обробник ключа GPG: у ключі немає значення %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -155912,7 +163755,7 @@ index f5a658d..667147f 100644
 +msgstr "Імпортування ключа %s 0x%s:\n Ід. корист.: «%s»\n Відбиток   : %s\n Пакунок    : %s (%s)\n Походження : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -155926,9 +163769,8 @@ index f5a658d..667147f 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "Імпортування ключа %s 0x%s:\n Ід. корист.: «%s»\n Відбиток   : %s\n Походження : %s"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5379
++
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -155937,30 +163779,31 @@ index f5a658d..667147f 100644
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Пакунок, який не вдалося обробити: %s\n Ключі GPG налаштовано так: %s\n"
-+
-+#: ../yum/__init__.py:5393
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr "Ключ GPG у %s (0x%s) вже встановлено"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr "Помилка імпортування ключа (код %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "Ключ успішно імпортовано"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr "Не встановлено жодного ключа"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -155971,20 +163814,20 @@ index f5a658d..667147f 100644
 +msgstr "Ключі GPG зі списку сховища «%s» вже встановлено, але вони є некоректними для цього пакунка.\nПеревірте, чи правильно вказано адреси URL для цього сховища."
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr "Імпортування ключів не допомогло, помилкові ключі?"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "Ні"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "Так"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -155995,7 +163838,7 @@ index f5a658d..667147f 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr "\n\n\n Ключ CA: %s\n Сховище, яке не вдалося обробити: %s\n Ключі GPG налаштовано так: %s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "Ключ GPG у %s (0x%s) вже імпортовано"
@@ -156003,19 +163846,19 @@ index f5a658d..667147f 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "Помилка імпортування ключа"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "Помилка під час імпортування ключа %s"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr "Не встановлено жодного ключа для сховища %s"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -156026,34 +163869,34 @@ index f5a658d..667147f 100644
 +msgstr "Ключі GPG зі списку сховища «%s» вже встановлено, але вони є некоректними.\nПеревірте, чи правильно вказано адреси URL для цього сховища."
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr "Не вдалося знайти відповідного дзеркала."
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "Під час спроби звантаження пакунків сталися помилки."
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "Повідомте про цю помилку за адресою %s"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "Помилки під час тестування: "
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr "Не вдалося визначити теку кешування: %s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
 -"Залежності не розв’язано. Запис операції з нерозв’язаними залежностями не "
@@ -156061,13 +163904,13 @@ index f5a658d..667147f 100644
 +msgstr "Залежності не розв’язано. Запис операції з нерозв’язаними залежностями не буде збережено."
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr "Не вдалося зберегти файл операцій %s: %s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
@@ -156075,50 +163918,50 @@ index f5a658d..667147f 100644
 +msgstr "Не вдалося отримати доступ або прочитати збережений запис операції %s: %s"
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr "версія rpmdb не відповідає збереженим даним щодо версії у операції, "
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr "версія rpmdb не відповідає збереженим даним щодо версії у операції, "
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr " ігнорується у відповідь на запит."
+-msgid " ignoring, as requested."
+-msgstr " ігнорується у відповідь на запит."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "версія rpmdb не відповідає збереженим даним щодо версії у операції,"
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
- msgstr " завершення роботи."
- 
+-msgid " aborting."
+-msgstr " завершення роботи."
+-
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr "не вдалося знайти tsflags або tsflags не є цілим числом."
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr "Знайдено txmbr у невідомому поточному стані: %s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr "Не вдалося знайти txmbr: %s з джерела: %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr "Не вистачає дій операції, зв’язків або ts було змінено,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 -msgstr ""
 -" ігнорується у відповідь на запит. Вам слід повторно виконати розв’язання "
@@ -156126,25 +163969,30 @@ index f5a658d..667147f 100644
 +msgstr " ігнорується у відповідь на запит. Вам слід повторно виконати розв’язання залежностей!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s вже було перевірено, його не можна вилучати."
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr "Перевірка залежностей версій %s"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s має залежність від версії %s, яку було встановлено користувачем."
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s потрібен пакунку, який має бути встановлено."
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr "%s немає залежностей від версій, встановлених користувачем."
@@ -156244,7 +164092,7 @@ index f5a658d..667147f 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s містить %s, але його не вдалося знайти"
-@@ -3176,6 +3278,19 @@ msgstr "%s містить %s, але його не вдалося знайти"
+@@ -3176,6 +3476,23 @@ msgstr "%s містить %s, але його не вдалося знайти"
  msgid "Repackaging"
  msgstr "Перепакування"
  
@@ -156253,7 +164101,7 @@ index f5a658d..667147f 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr "Перевірка: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -156261,10 +164109,14 @@ index f5a658d..667147f 100644
 +"    * needed %s"
 +msgstr "Недостатньо місця у каталозі для звантажень %s\n    * вільно   %s\n    * потрібно %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "Пакунок не відповідає тому, який програма має намір звантажити."
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3188,9 +3303,7 @@ msgstr "RPM %s не пройшов перевірки на md5"
+@@ -3188,9 +3505,7 @@ msgstr "RPM %s не пройшов перевірки на md5"
  
  #: ../rpmUtils/oldUtils.py:151
  msgid "Could not open RPM database for reading. Perhaps it is already in use?"
@@ -156275,17 +164127,17 @@ index f5a658d..667147f 100644
  
  #: ../rpmUtils/oldUtils.py:183
  msgid "Got an empty Header, something has gone wrong"
-@@ -3206,5 +3319,3 @@ msgstr "Пошкоджений заголовок %s"
+@@ -3206,5 +3521,3 @@ msgstr "Пошкоджений заголовок %s"
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr "Помилка під час відкриття rpm %s — помилка %s"
 -
 -
 diff --git a/po/ur.po b/po/ur.po
-index 40bd619..0677883 100644
+index 40bd619..8b7c23c 100644
 --- a/po/ur.po
 +++ b/po/ur.po
-@@ -2,427 +2,455 @@
+@@ -2,427 +2,506 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -156299,8 +164151,8 @@ index 40bd619..0677883 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Urdu (http://www.transifex.net/projects/p/yum/team/ur/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Urdu (http://www.transifex.com/projects/p/yum/language/ur/)\n"
  "MIME-Version: 1.0\n"
@@ -156311,7 +164163,7 @@ index 40bd619..0677883 100644
 +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -156322,31 +164174,31 @@ index 40bd619..0677883 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -156373,7 +164225,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -156383,69 +164235,69 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -156456,121 +164308,147 @@ index 40bd619..0677883 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
+ msgstr ""
+ 
+-#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
+-#: ../yumcommands.py:190
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, 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:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -156580,12 +164458,12 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -156595,12 +164473,12 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -156610,14 +164488,14 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -156625,13 +164503,13 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -156639,7 +164517,7 @@ index 40bd619..0677883 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
@@ -156647,58 +164525,58 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -156707,115 +164585,140 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, 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:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -156825,392 +164728,400 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +458,452 @@ msgid ""
+@@ -430,438 +509,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -157218,165 +165129,189 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
@@ -157384,387 +165319,387 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +911,58 @@ msgid ""
+@@ -869,57 +994,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +970,7 @@ msgstr ""
+@@ -927,7 +1053,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +978,542 @@ msgid ""
+@@ -935,484 +1061,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -157773,17 +165708,17 @@ index 40bd619..0677883 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -157796,224 +165731,225 @@ index 40bd619..0677883 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -158021,7 +165957,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -158029,7 +165965,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -158037,7 +165973,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -158045,38 +165981,38 @@ index 40bd619..0677883 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -158084,70 +166020,70 @@ index 40bd619..0677883 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -158155,7 +166091,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -158163,68 +166099,67 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1521,47 @@ msgid ""
+@@ -1420,47 +1604,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1573,7 @@ msgstr ""
+@@ -1472,7 +1650,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -158233,7 +166168,7 @@ index 40bd619..0677883 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1590,488 @@ msgid ""
+@@ -1489,555 +1667,648 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -158250,51 +166185,71 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -158302,200 +166257,200 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -158504,183 +166459,183 @@ index 40bd619..0677883 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -158688,7 +166643,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -158696,180 +166651,210 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2082,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -158878,7 +166863,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -158914,7 +166899,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -158971,7 +166956,7 @@ index 40bd619..0677883 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2193,1069 @@ msgstr ""
+@@ -2045,991 +2316,1140 @@ 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 :(
@@ -158982,130 +166967,140 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -159113,254 +167108,298 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -159368,7 +167407,7 @@ index 40bd619..0677883 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -159379,14 +167418,14 @@ index 40bd619..0677883 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -159394,7 +167433,7 @@ index 40bd619..0677883 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -159402,7 +167441,7 @@ index 40bd619..0677883 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -159411,14 +167450,14 @@ index 40bd619..0677883 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -159426,23 +167465,23 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -159453,70 +167492,73 @@ index 40bd619..0677883 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -159526,26 +167568,26 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -159555,111 +167597,127 @@ index 40bd619..0677883 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -159671,30 +167729,30 @@ index 40bd619..0677883 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -159702,123 +167760,123 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -159826,7 +167884,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -159834,118 +167892,118 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -159959,7 +168017,7 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -159968,9 +168026,10 @@ index 40bd619..0677883 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -159978,32 +168037,31 @@ index 40bd619..0677883 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -160011,20 +168069,20 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -160035,26 +168093,26 @@ index 40bd619..0677883 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -160062,117 +168120,121 @@ index 40bd619..0677883 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -160272,7 +168334,7 @@ index 40bd619..0677883 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3264,19 @@ msgstr ""
+@@ -3038,6 +3458,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -160281,7 +168343,7 @@ index 40bd619..0677883 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -160289,17 +168351,21 @@ index 40bd619..0677883 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3305,3 @@ msgstr ""
+@@ -3066,5 +3503,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
 -
 -
 diff --git a/po/yum.pot b/po/yum.pot
-index 97ae91a..85a650d 100644
+index 97ae91a..27dd693 100644
 --- a/po/yum.pot
 +++ b/po/yum.pot
 @@ -8,7 +8,7 @@ msgid ""
@@ -160307,11 +168373,11 @@ index 97ae91a..85a650d 100644
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
 -"POT-Creation-Date: 2011-06-06 10:21-0400\n"
-+"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"POT-Creation-Date: 2013-03-06 16:02-0500\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,494 @@ msgstr ""
+@@ -16,415 +16,493 @@ msgstr ""
  "MIME-Version: 1.0\n"
  "Content-Type: text/plain; charset=CHARSET\n"
  "Content-Transfer-Encoding: 8bit\n"
@@ -160406,15 +168472,17 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:273 ../cli.py:277 ../utils.py:320
++#: ../cli.py:273 ../cli.py:277
  #, python-format
- msgid "Config Error: %s"
+-msgid "Config Error: %s"
++msgid "Config error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
++#: ../cli.py:280 ../cli.py:2211
  #, python-format
- msgid "Options Error: %s"
+-msgid "Options Error: %s"
++msgid "Options error: %s"
  msgstr ""
  
 -#: ../cli.py:293
@@ -160485,155 +168553,165 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../cli.py:497
+-msgid "Exiting on user Command"
 +#: ../cli.py:577
 +msgid "future rpmdb ver mismatched saved transaction version,"
 +msgstr ""
 +
-+#: ../cli.py:579 ../yum/__init__.py:6523
++#: ../cli.py:579 ../yum/__init__.py:6601
 +msgid " ignoring, as requested."
 +msgstr ""
 +
-+#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++#: ../cli.py:582 ../yum/__init__.py:6604 ../yum/__init__.py:6751
 +msgid " aborting."
-+msgstr ""
-+
-+#: ../cli.py:588
- msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:592
- msgid "Downloading Packages:"
+-msgid "Downloading Packages:"
++#: ../cli.py:588
++msgid "Exiting on user command"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:597
- msgid "Error Downloading Packages:\n"
+-msgid "Error Downloading Packages:\n"
++#: ../cli.py:592
++msgid "Downloading packages:"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:616 ../yum/__init__.py:6215
- msgid "Running Transaction Check"
+-msgid "Running Transaction Check"
++#: ../cli.py:597
++msgid "Error downloading packages:\n"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:625 ../yum/__init__.py:6224
++#: ../cli.py:616
++msgid "Running transaction check"
++msgstr ""
++
++#: ../cli.py:626 ../yum/__init__.py:6291
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:627 ../yum/__init__.py:6227
++#: ../cli.py:628 ../yum/__init__.py:6294
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:633
++#: ../cli.py:635
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:634
++#: ../cli.py:639
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:640
- msgid "Running Transaction Test"
+-msgid "Running Transaction Test"
++#: ../cli.py:645
++msgid "Running transaction test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:652
- msgid "Transaction Check Error:\n"
+-msgid "Transaction Check Error:\n"
++#: ../cli.py:657
++msgid "Transaction check error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:659
- msgid "Transaction Test Succeeded"
+-msgid "Transaction Test Succeeded"
++#: ../cli.py:664
++msgid "Transaction test succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:691
- msgid "Running Transaction"
+-msgid "Running Transaction"
++#: ../cli.py:696
++msgid "Running transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:724
++#: ../cli.py:729
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
  msgstr ""
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:743 ../cli.py:786
++#: ../cli.py:748 ../cli.py:791
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:769 ../cli.py:777
++#: ../cli.py:774 ../cli.py:782
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
  msgstr ""
  
 -#: ../cli.py:689 ../cli.py:722 ../cli.py:908
-+#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
++#: ../cli.py:788 ../cli.py:896 ../cli.py:1163
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
-+#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#: ../cli.py:876 ../cli.py:886 ../cli.py:1106 ../cli.py:1116
 +#, python-format
 +msgid "Bad %s argument %s."
  msgstr ""
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:900 ../yumcommands.py:3331
++#: ../cli.py:905 ../yumcommands.py:3464
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
-+#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
++#: ../cli.py:908 ../cli.py:909 ../cli.py:1174 ../cli.py:1175 ../cli.py:1229
++#: ../cli.py:1230 ../cli.py:1265 ../yumcommands.py:325 ../yumcommands.py:3618
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:953
++#: ../cli.py:958
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
-+msgid "%d package marked for Update"
-+msgid_plural "%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:955
- msgid "No Packages marked for Update"
+-msgid "No Packages marked for Update"
++#: ../cli.py:960
++msgid "No packages marked for update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1067
++#: ../cli.py:1072
  #, 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"
++msgid "%d package marked for distribution synchronization"
++msgid_plural "%d packages marked for distribution synchronization"
 +msgstr[0] ""
 +msgstr[1] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1069
- msgid "No Packages marked for Distribution Synchronization"
+-msgid "No Packages marked for Distribution Synchronization"
++#: ../cli.py:1074
++msgid "No packages marked for distribution synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1124
++#: ../cli.py:1129
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -160643,14 +168721,14 @@ index 97ae91a..85a650d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1126
++#: ../cli.py:1131
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1166
++#: ../cli.py:1171
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
@@ -160658,197 +168736,206 @@ index 97ae91a..85a650d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1207
++#: ../cli.py:1212
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1208
++#: ../cli.py:1213
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
  
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
--msgstr ""
-+#: ../cli.py:1221
++#: ../cli.py:1226 ../yumcommands.py:3494 ../yumcommands.py:3529
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] ""
 +msgstr[1] ""
++
++#: ../cli.py:1251
++msgid "No packages provided"
+ msgstr ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1246
- msgid "No Packages Provided"
+-msgid "No Packages Provided"
++#: ../cli.py:1264
++msgid "Package(s) to install"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1259
-+msgid "Package(s) to install"
-+msgstr ""
-+
-+#: ../cli.py:1367
++#: ../cli.py:1372
  #, python-format
- msgid "N/S Matched: %s"
+-msgid "N/S Matched: %s"
++msgid "N/S matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1384
++#: ../cli.py:1389
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1386
++#: ../cli.py:1391
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1404
++#: ../cli.py:1409
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1411
++#: ../cli.py:1416
  #, python-format
  msgid ""
  "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1415
++#: ../cli.py:1420
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1418
- msgid "No Matches found"
+-msgid "No Matches found"
++#: ../cli.py:1423
++msgid "No matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1536
++#: ../cli.py:1541
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
-+"Error: No Packages found for:\n"
++"Error: No packages found for:\n"
 +"  %s"
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1572
++#: ../cli.py:1577
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1577
- msgid "Cleaning up Everything"
+-msgid "Cleaning up Everything"
++#: ../cli.py:1582
++msgid "Cleaning up everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1593
- msgid "Cleaning up Headers"
+-msgid "Cleaning up Headers"
++#: ../cli.py:1598
++msgid "Cleaning up headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1596
- msgid "Cleaning up Packages"
+-msgid "Cleaning up Packages"
++#: ../cli.py:1601
++msgid "Cleaning up packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1599
++#: ../cli.py:1604
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1602
++#: ../cli.py:1607
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1605
++#: ../cli.py:1610
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1608
++#: ../cli.py:1613
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1611
++#: ../cli.py:1616
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
 -#, python-format
 -msgid "Warning: No groups match: %s"
-+#: ../cli.py:1727
-+msgid "Installed Environment Groups:"
-+msgstr ""
-+
-+#: ../cli.py:1728
-+msgid "Available Environment Groups:"
++#: ../cli.py:1732
++msgid "Installed environment groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1735
- msgid "Installed Groups:"
+-msgid "Installed Groups:"
++#: ../cli.py:1733
++msgid "Available environment groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1742
- msgid "Installed Language Groups:"
+-msgid "Installed Language Groups:"
++#: ../cli.py:1740
++msgid "Installed groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1749
++#: ../cli.py:1747
++msgid "Installed language groups:"
++msgstr ""
++
++#: ../cli.py:1754
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1756
- msgid "Available Language Groups:"
+-msgid "Available Language Groups:"
++#: ../cli.py:1761
++msgid "Available language groups:"
++msgstr ""
++
++#: ../cli.py:1764
++#, python-format
++msgid "Warning: no environments/groups match: %s"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1759
-+#, python-format
-+msgid "Warning: No Environments/Groups match: %s"
-+msgstr ""
-+
-+#: ../cli.py:1763
++#: ../cli.py:1768
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1818
-+#, python-format
-+msgid "Warning: Group/Environment %s does not exist."
++#: ../cli.py:1823
+ #, python-format
+-msgid "Warning: Group %s does not exist."
++msgid "Warning: group/environment %s does not exist."
 +msgstr ""
 +
-+#: ../cli.py:1859
++#: ../cli.py:1864
 +#, python-format
-+msgid "Warning: Environment %s does not exist."
-+msgstr ""
-+
-+#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
- #, python-format
- msgid "Warning: Group %s does not exist."
++msgid "Warning: environment %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1883
++#: ../cli.py:1878 ../cli.py:1884
++#, python-format
++msgid "Warning: group %s does not exist."
++msgstr ""
++
++#: ../cli.py:1888
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1885
++#: ../cli.py:1890
  #, python-format
 -msgid "%d Package(s) to Install"
 +msgid "%d package to Install"
@@ -160856,25 +168943,24 @@ index 97ae91a..85a650d 100644
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
-+#: ../yum/__init__.py:3824
++#: ../cli.py:1924
 +#, python-format
-+msgid "No Environment named %s exists"
++msgid "No environment named %s exists"
  msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1935 ../yum/__init__.py:4282
++#: ../cli.py:1940 ../yum/__init__.py:4336
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1945
++#: ../cli.py:1950
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1947 ../yumcommands.py:3351
++#: ../cli.py:1952 ../yumcommands.py:3550
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -160884,200 +168970,200 @@ index 97ae91a..85a650d 100644
 +msgstr[1] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1988
++#: ../cli.py:1993
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1999
++#: ../cli.py:2004
  #, 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:2025
++#: ../cli.py:2030
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:2045
++#: ../cli.py:2050
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:2057
++#: ../cli.py:2062
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:2079
++#: ../cli.py:2084
  #, python-format
  msgid ""
  "\n"
-@@ -432,438 +511,484 @@ msgid ""
+@@ -432,438 +510,484 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:2147
++#: ../cli.py:2152
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:2218
++#: ../cli.py:2223
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2272
++#: ../cli.py:2277
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2276
++#: ../cli.py:2281
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2279
++#: ../cli.py:2284
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2282
++#: ../cli.py:2287
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2285
++#: ../cli.py:2290
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2287
++#: ../cli.py:2292
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2291
++#: ../cli.py:2296
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2296
++#: ../cli.py:2301
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2299
++#: ../cli.py:2304
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2302
++#: ../cli.py:2307
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2304
++#: ../cli.py:2309
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2306
++#: ../cli.py:2311
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2308
++#: ../cli.py:2313
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2312
++#: ../cli.py:2317
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2313
++#: ../cli.py:2318
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2317
++#: ../cli.py:2322
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2321
++#: ../cli.py:2326
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2324
++#: ../cli.py:2329
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2326
++#: ../cli.py:2331
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2329
++#: ../cli.py:2334
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2331
++#: ../cli.py:2336
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2333
++#: ../cli.py:2338
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2335
++#: ../cli.py:2340
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2338
++#: ../cli.py:2343
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2341
++#: ../cli.py:2346
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2343
++#: ../cli.py:2348
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2345
++#: ../cli.py:2350
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2347
++#: ../cli.py:2352
 +msgid "don't update, just download"
 +msgstr ""
 +
-+#: ../cli.py:2349
++#: ../cli.py:2354
 +msgid "specifies an alternate directory to store packages"
 +msgstr ""
 +
-+#: ../cli.py:2351
++#: ../cli.py:2356
  msgid "set arbitrary config and repo options"
  msgstr ""
  
@@ -161252,7 +169338,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:969
++#: ../output.py:969 ../yumcommands.py:3199
  msgid "y"
  msgstr ""
  
@@ -161505,7 +169591,7 @@ index 97ae91a..85a650d 100644
  #, python-format
  msgid ""
  "\n"
-@@ -871,57 +996,58 @@ msgid ""
+@@ -871,57 +995,58 @@ msgid ""
  "%s\n"
  msgstr ""
  
@@ -161586,7 +169672,7 @@ index 97ae91a..85a650d 100644
  msgid "two"
  msgstr ""
  
-@@ -929,7 +1055,7 @@ msgstr ""
+@@ -929,7 +1054,7 @@ msgstr ""
  #. Current download cancelled, interrupt (ctrl-c) again within two seconds
  #. to exit.
  #. Where "interupt (ctrl-c) again" and "two" are highlighted.
@@ -161595,7 +169681,7 @@ index 97ae91a..85a650d 100644
  #, python-format
  msgid ""
  "\n"
-@@ -938,484 +1064,542 @@ msgid ""
+@@ -938,484 +1063,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
@@ -162205,7 +170291,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:128 ../yumcommands.py:2193
++#: ../utils.py:128 ../yumcommands.py:2224
  msgid "Unknown"
  msgstr ""
  
@@ -162259,7 +170345,7 @@ index 97ae91a..85a650d 100644
  #, python-format
  msgid ""
  "\n"
-@@ -1423,47 +1607,41 @@ msgid ""
+@@ -1423,59 +1606,63 @@ msgid ""
  "%s"
  msgstr ""
  
@@ -162267,9 +170353,17 @@ index 97ae91a..85a650d 100644
 -msgid ""
 -"Another app is currently holding the yum lock; exiting as configured by "
 -"exit_on_lock"
--msgstr ""
--
++#: ../utils.py:320
++#, python-format
++msgid "Config Error: %s"
+ msgstr ""
+ 
 -#: ../utils.py:287
++#: ../utils.py:323
++#, python-format
++msgid "Options Error: %s"
++msgstr ""
++
 +#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
@@ -162282,13 +170376,13 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
++#: ../utils.py:387 ../yummain.py:152 ../yummain.py:196
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:391 ../yummain.py:191
++#: ../utils.py:391 ../yummain.py:201
  msgid " You could try using --skip-broken to work around the problem"
  msgstr ""
  
@@ -162298,114 +170392,120 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
-+#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
++#: ../utils.py:400 ../yummain.py:162 ../yummain.py:209
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:406 ../yummain.py:205
++#: ../utils.py:406 ../yummain.py:215
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:422 ../yummain.py:237
++#: ../utils.py:422 ../yummain.py:252
  msgid "Complete!"
  msgstr ""
  
-@@ -1475,7 +1653,7 @@ msgstr ""
+-#: ../yumcommands.py:42
++#: ../yumcommands.py:44
+ msgid " Mini usage:\n"
+ msgstr ""
+ 
+-#: ../yumcommands.py:52
++#: ../yumcommands.py:54
  msgid "You need to be root to perform this command."
  msgstr ""
  
 -#: ../yumcommands.py:59
-+#: ../yumcommands.py:67
++#: ../yumcommands.py:69
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1493,1363 +1671,1564 @@ msgid ""
+@@ -1493,1363 +1680,1617 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
 -#: ../yumcommands.py:74
-+#: ../yumcommands.py:82
++#: ../yumcommands.py:84
  #, python-format
  msgid "Problem repository: %s"
  msgstr ""
  
 -#: ../yumcommands.py:80
-+#: ../yumcommands.py:96
++#: ../yumcommands.py:98
  #, python-format
  msgid "Error: Need to pass a list of pkgs to %s"
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:114
++#: ../yumcommands.py:116
 +#, python-format
 +msgid "Error: Need at least two packages to %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:129
++#: ../yumcommands.py:131
 +#, python-format
 +msgid "Error: Need to pass a repoid. and command to %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:136 ../yumcommands.py:142
++#: ../yumcommands.py:138 ../yumcommands.py:144
 +#, python-format
 +msgid "Error: Need to pass a single valid repoid. to %s"
 +msgstr ""
 +
-+#: ../yumcommands.py:147
++#: ../yumcommands.py:149
 +#, python-format
 +msgid "Error: Repo %s is not enabled"
 +msgstr ""
 +
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:166
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:178
++#: ../yumcommands.py:180
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:197
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:201
++#: ../yumcommands.py:203
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:216
++#: ../yumcommands.py:218
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:218
++#: ../yumcommands.py:220
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:222
++#: ../yumcommands.py:224
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:228
++#: ../yumcommands.py:230
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:247
++#: ../yumcommands.py:249
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -162413,200 +170513,200 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:383
++#: ../yumcommands.py:385
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:390
++#: ../yumcommands.py:392
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:421
++#: ../yumcommands.py:423
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:447 ../yumcommands.py:507
++#: ../yumcommands.py:449 ../yumcommands.py:509
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:454
++#: ../yumcommands.py:456
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:483
++#: ../yumcommands.py:485
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:514
++#: ../yumcommands.py:516
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:543
++#: ../yumcommands.py:545
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:603
++#: ../yumcommands.py:605
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:672
++#: ../yumcommands.py:674
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:682
++#: ../yumcommands.py:684
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:687
++#: ../yumcommands.py:689
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:691
++#: ../yumcommands.py:693
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
++#: ../yumcommands.py:701 ../yumcommands.py:708 ../yumcommands.py:1570
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:708
++#: ../yumcommands.py:710
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:715
++#: ../yumcommands.py:717
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:766
++#: ../yumcommands.py:768
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:797
++#: ../yumcommands.py:800
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:845
++#: ../yumcommands.py:850
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:906
++#: ../yumcommands.py:911
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:909
++#: ../yumcommands.py:914
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:915
++#: ../yumcommands.py:920
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:985
++#: ../yumcommands.py:990
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:992
++#: ../yumcommands.py:997
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:994
++#: ../yumcommands.py:999
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1256
++#: ../yumcommands.py:1261
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1282
++#: ../yumcommands.py:1287
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1283
++#: ../yumcommands.py:1288
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1312
++#: ../yumcommands.py:1332
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1350
++#: ../yumcommands.py:1370
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1417
++#: ../yumcommands.py:1448
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1485
++#: ../yumcommands.py:1516
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1587
++#: ../yumcommands.py:1618
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1613
++#: ../yumcommands.py:1644
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1666
++#: ../yumcommands.py:1697
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1696
++#: ../yumcommands.py:1727
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1731
++#: ../yumcommands.py:1762
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1761
++#: ../yumcommands.py:1792
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -162615,183 +170715,183 @@ index 97ae91a..85a650d 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1825
++#: ../yumcommands.py:1856
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1867
++#: ../yumcommands.py:1898
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1893
++#: ../yumcommands.py:1924
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1936
++#: ../yumcommands.py:1967
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1963
++#: ../yumcommands.py:1994
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:2005
++#: ../yumcommands.py:2036
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:2094 ../yumcommands.py:2095
++#: ../yumcommands.py:2125 ../yumcommands.py:2126
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:2121 ../yumcommands.py:2122
++#: ../yumcommands.py:2152 ../yumcommands.py:2153
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:2137
++#: ../yumcommands.py:2168
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:2138
++#: ../yumcommands.py:2169
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:2141
++#: ../yumcommands.py:2172
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:2144
++#: ../yumcommands.py:2175
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:2148
++#: ../yumcommands.py:2179
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:2154
++#: ../yumcommands.py:2185
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:2159
++#: ../yumcommands.py:2190
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:2161
++#: ../yumcommands.py:2192
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:2162
++#: ../yumcommands.py:2193
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:2169 ../yumcommands.py:2190
++#: ../yumcommands.py:2200 ../yumcommands.py:2221
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:2177
++#: ../yumcommands.py:2208
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:2181
++#: ../yumcommands.py:2212
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:2184
++#: ../yumcommands.py:2215
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:2199
++#: ../yumcommands.py:2230
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:2201
++#: ../yumcommands.py:2232
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:2204
++#: ../yumcommands.py:2235
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:2206
++#: ../yumcommands.py:2237
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:2209
++#: ../yumcommands.py:2240
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:2213
++#: ../yumcommands.py:2244
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:2217
++#: ../yumcommands.py:2248
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:2221
++#: ../yumcommands.py:2252
  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:2230 ../yumcommands.py:2259
++#: ../yumcommands.py:2261 ../yumcommands.py:2290
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
++#: ../yumcommands.py:2278 ../yumcommands.py:2279 ../yumcommands.py:2297
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2260
++#: ../yumcommands.py:2291
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2332
++#: ../yumcommands.py:2363
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2374
++#: ../yumcommands.py:2405
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2379
++#: ../yumcommands.py:2410
  msgid ""
  "\n"
  "\n"
@@ -162799,7 +170899,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2381
++#: ../yumcommands.py:2412
  msgid ""
  "\n"
  "\n"
@@ -162807,179 +170907,201 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2466
++#: ../yumcommands.py:2497
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2478
++#: ../yumcommands.py:2509
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2541
++#: ../yumcommands.py:2572
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2552
++#: ../yumcommands.py:2583
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2591
++#: ../yumcommands.py:2622
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2674
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2653
++#: ../yumcommands.py:2684
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2654
++#: ../yumcommands.py:2685
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2683
++#: ../yumcommands.py:2714
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2691
++#: ../yumcommands.py:2722
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2700
++#: ../yumcommands.py:2731
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2709
++#: ../yumcommands.py:2740
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2783
++#: ../yumcommands.py:2814
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2876 ../yumcommands.py:2880
++#: ../yumcommands.py:2907 ../yumcommands.py:2911
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2881
++#: ../yumcommands.py:2912
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2882
++#: ../yumcommands.py:2913
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2883
++#: ../yumcommands.py:2914
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2884
++#: ../yumcommands.py:2915
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2885
++#: ../yumcommands.py:2916
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2886
++#: ../yumcommands.py:2917
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2887
++#: ../yumcommands.py:2918
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2888
++#: ../yumcommands.py:2919
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2889
++#: ../yumcommands.py:2920
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2922
++#: ../yumcommands.py:2953
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2929
++#: ../yumcommands.py:2960
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:3036
++#: ../yumcommands.py:3067
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:3102
++#: ../yumcommands.py:3143
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:3119
- msgid "No saved transaction file specified."
+-msgid "No saved transaction file specified."
++#: ../yumcommands.py:3184
++#, python-format
++msgid "showing transaction files from %s"
++msgstr ""
++
++#: ../yumcommands.py:3224
++msgid "Members"
++msgstr ""
++
++#: ../yumcommands.py:3229
++msgid "Filename"
++msgstr ""
++
++#: ../yumcommands.py:3235
++#, python-format
++msgid "Saved transactions from %s; looked at %u files"
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:3123
++#: ../yumcommands.py:3238
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:3129
++#: ../yumcommands.py:3244
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
  
-+#: ../yumcommands.py:3169
-+msgid "Simple way to swap packages, isntead of using shell"
++#: ../yumcommands.py:3300
++msgid "Simple way to swap packages, instead of using shell"
 +msgstr ""
 +
-+#: ../yumcommands.py:3264
++#: ../yumcommands.py:3395
 +msgid ""
 +"Treat a repo. as a group of packages, so we can install/remove all of them"
 +msgstr ""
 +
-+#: ../yumcommands.py:3341
++#: ../yumcommands.py:3474
 +#, python-format
 +msgid "%d package to update"
 +msgid_plural "%d packages to update"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../yumcommands.py:3370
++#: ../yumcommands.py:3509 ../yumcommands.py:3540
++#, python-format
++msgid "%d package to move to"
++msgid_plural "%d packages to move to"
++msgstr[0] ""
++msgstr[1] ""
++
++#: ../yumcommands.py:3569
 +#, python-format
 +msgid "%d package to remove/reinstall"
 +msgid_plural "%d packages to remove/reinstall"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../yumcommands.py:3413
++#: ../yumcommands.py:3612
 +#, python-format
 +msgid "%d package to remove/sync"
 +msgid_plural "%d packages to remove/sync"
 +msgstr[0] ""
 +msgstr[1] ""
 +
-+#: ../yumcommands.py:3417
++#: ../yumcommands.py:3616
 +#, python-format
 +msgid "Not a valid sub-command of %s"
 +msgstr ""
@@ -163005,12 +171127,12 @@ index 97ae91a..85a650d 100644
  
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:164
++#: ../yummain.py:169
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:227 ../yummain.py:235
++#: ../yummain.py:242 ../yummain.py:250
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -163019,7 +171141,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:312
++#: ../yummain.py:327
  msgid ""
  "\n"
  "\n"
@@ -163055,7 +171177,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:945
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -163205,57 +171327,63 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:975
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:935
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:947
++#. No callback?
++#: ../yum/depsolve.py:922
++#, python-format
++msgid "Removing %s due to obsoletes from %s"
++msgstr ""
++
++#: ../yum/depsolve.py:955
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:969
++#: ../yum/depsolve.py:977
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:993
++#: ../yum/depsolve.py:1001
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1082
++#: ../yum/depsolve.py:1090
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1349
++#: ../yum/depsolve.py:1357
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
++#: ../yum/depsolve.py:1384 ../yum/depsolve.py:1390
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1496
++#: ../yum/depsolve.py:1504
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1508
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -163263,200 +171391,200 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1516
++#: ../yum/depsolve.py:1524
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1520
++#: ../yum/depsolve.py:1528
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1526
++#: ../yum/depsolve.py:1534
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1543
++#: ../yum/depsolve.py:1551
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
++#: ../yum/depsolve.py:1555 ../yum/depsolve.py:1589
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1577
++#: ../yum/depsolve.py:1585
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1586
++#: ../yum/depsolve.py:1594
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1602
++#: ../yum/depsolve.py:1610
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:274
++#: ../yum/__init__.py:275
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:553
++#: ../yum/__init__.py:554
 +#, python-format
 +msgid "Skipping unreadable repository %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:572
++#: ../yum/__init__.py:573
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:578
++#: ../yum/__init__.py:579
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:619
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:627
++#: ../yum/__init__.py:628
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:638
++#: ../yum/__init__.py:639
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:668
++#: ../yum/__init__.py:669
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:722
++#: ../yum/__init__.py:723
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:752
++#: ../yum/__init__.py:753
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:797
++#: ../yum/__init__.py:798
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:798
++#: ../yum/__init__.py:799
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:806
++#: ../yum/__init__.py:807
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:818
++#: ../yum/__init__.py:819
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:862
++#: ../yum/__init__.py:863
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:887
++#: ../yum/__init__.py:888
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:915
++#: ../yum/__init__.py:916
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:918
++#: ../yum/__init__.py:919
 +#, python-format
 +msgid "Failed to retrieve group file for repository: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:924
++#: ../yum/__init__.py:925
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:930
++#: ../yum/__init__.py:931
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:945
++#: ../yum/__init__.py:946
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:955
++#: ../yum/__init__.py:956
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:966
++#: ../yum/__init__.py:967
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1059
++#: ../yum/__init__.py:1060
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1077
++#: ../yum/__init__.py:1078
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1094
++#: ../yum/__init__.py:1095
  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:1111
++#: ../yum/__init__.py:1112
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1169
++#: ../yum/__init__.py:1170
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
@@ -163464,7 +171592,7 @@ index 97ae91a..85a650d 100644
 -#: ../yum/__init__.py:1096
 +#. People are confused about protected mutilib ... so give
 +#. them a nicer message.
-+#: ../yum/__init__.py:1173
++#: ../yum/__init__.py:1174
 +#, python-format
 +msgid ""
 +" Multilib version problems found. This often means that the root\n"
@@ -163481,7 +171609,7 @@ index 97ae91a..85a650d 100644
 +"     message showing the root cause of the problem.\n"
 +"\n"
 +"  2. You have multiple architectures of %(name)s installed, but\n"
-+"     yum can only see an upgrade for one of those arcitectures.\n"
++"     yum can only see an upgrade for one of those architectures.\n"
 +"     If you don't want/need both architectures anymore then you\n"
 +"     can remove the one with the missing update and everything\n"
 +"     will work.\n"
@@ -163496,65 +171624,65 @@ index 97ae91a..85a650d 100644
 +"\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:1257
++#: ../yum/__init__.py:1258
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1378
++#: ../yum/__init__.py:1379
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1382
++#: ../yum/__init__.py:1383
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1556
++#: ../yum/__init__.py:1565
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1560
++#: ../yum/__init__.py:1569
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1572
++#: ../yum/__init__.py:1581
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1573
++#: ../yum/__init__.py:1582
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1709
++#: ../yum/__init__.py:1718
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1719
++#: ../yum/__init__.py:1728
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1722
++#: ../yum/__init__.py:1731
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1736
++#: ../yum/__init__.py:1745
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -163562,7 +171690,7 @@ index 97ae91a..85a650d 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1792
++#: ../yum/__init__.py:1801
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -163573,14 +171701,14 @@ index 97ae91a..85a650d 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1869
++#: ../yum/__init__.py:1882
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:2004
++#: ../yum/__init__.py:2017
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -163588,7 +171716,7 @@ index 97ae91a..85a650d 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2053
++#: ../yum/__init__.py:2066
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -163596,7 +171724,7 @@ index 97ae91a..85a650d 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2065
++#: ../yum/__init__.py:2078
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -163605,14 +171733,14 @@ index 97ae91a..85a650d 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2082
++#: ../yum/__init__.py:2095
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2132
++#: ../yum/__init__.py:2145
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum --enablerepo="
@@ -163620,100 +171748,115 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2155
++#: ../yum/__init__.py:2168
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2158
++#: ../yum/__init__.py:2171
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2222
++#. This is definitely a depsolver bug.  Make it fatal?
++#: ../yum/__init__.py:2230
  #, python-format
- msgid "package fails checksum but caching is enabled for %s"
+-msgid "package fails checksum but caching is enabled for %s"
++msgid "ignoring a dupe of %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
++#: ../yum/__init__.py:2235
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1991
--#, python-format
++#: ../yum/__init__.py:2238
+ #, python-format
 -msgid ""
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
-+#. caller handles errors
-+#: ../yum/__init__.py:2342
-+msgid "exiting because --downloadonly specified"
++msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2371
++#: ../yum/__init__.py:2274
++#, python-format
++msgid "Delta RPMs reduced %s of updates to %s (%d%% saved)"
++msgstr ""
++
++#: ../yum/__init__.py:2375
++msgid "Some delta RPMs failed to download or rebuild. Retrying.."
++msgstr ""
++
++#. caller handles errors
++#: ../yum/__init__.py:2386
++msgid "exiting because --downloadonly specified"
++msgstr ""
++
++#: ../yum/__init__.py:2415
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2411
++#: ../yum/__init__.py:2455
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2471
++#: ../yum/__init__.py:2515
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2475
++#: ../yum/__init__.py:2519
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2483
++#: ../yum/__init__.py:2527
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2487
++#: ../yum/__init__.py:2531
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2529
++#: ../yum/__init__.py:2573
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2533
++#: ../yum/__init__.py:2577
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2594
++#: ../yum/__init__.py:2638
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2598
++#: ../yum/__init__.py:2642
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2600
++#: ../yum/__init__.py:2644
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -163723,26 +171866,26 @@ index 97ae91a..85a650d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2712
++#: ../yum/__init__.py:2756
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2718
++#: ../yum/__init__.py:2762
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:3096
++#: ../yum/__init__.py:3150
  msgid ""
  "searchPackages() will go away in a future version of "
  "Yum.                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3149
++#: ../yum/__init__.py:3203
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -163752,74 +171895,79 @@ index 97ae91a..85a650d 100644
 +msgstr[1] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3153
++#: ../yum/__init__.py:3207
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3165
++#: ../yum/__init__.py:3219
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3172
++#: ../yum/__init__.py:3226
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3369
++#: ../yum/__init__.py:3423
  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:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
-+#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
-+#: ../yum/__init__.py:4298
++#: ../yum/__init__.py:3520 ../yum/__init__.py:3554 ../yum/__init__.py:3630
++#: ../yum/__init__.py:3636 ../yum/__init__.py:3773 ../yum/__init__.py:3777
++#: ../yum/__init__.py:4352
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
++#: ../yum/__init__.py:3566 ../yum/__init__.py:3794
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
++#: ../yum/__init__.py:3590 ../yum/__init__.py:3820 ../yum/__init__.py:3878
++#, python-format
++msgid "No Environment named %s exists"
++msgstr ""
++
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3622
++#: ../yum/__init__.py:3676
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3628
++#: ../yum/__init__.py:3682
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3649
++#: ../yum/__init__.py:3703
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3702
++#: ../yum/__init__.py:3756
  #, python-format
 -msgid "Warning: Group %s does not have any packages."
 +msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3704
++#: ../yum/__init__.py:3758
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
-+#: ../yum/__init__.py:3794
++#: ../yum/__init__.py:3848
 +#, python-format
 +msgid "Skipping group %s from environment %s"
 +msgstr ""
@@ -163827,87 +171975,92 @@ index 97ae91a..85a650d 100644
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3858
++#: ../yum/__init__.py:3912
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3886
++#: ../yum/__init__.py:3940
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
++#: ../yum/__init__.py:4003 ../yum/__init__.py:4066
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4042
++#: ../yum/__init__.py:4027 ../yum/__init__.py:4033 ../yum/__init__.py:4090
++#: ../yum/__init__.py:4096
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
+-msgid "Package Object was not a package object instance"
++#: ../yum/__init__.py:4299 ../yum/__init__.py:4328
 +#, python-format
 +msgid "Warning: Environment Group %s does not exist."
-+msgstr ""
-+
-+#: ../yum/__init__.py:4397
-+#, python-format
-+msgid "Package: %s - can't co-install with %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:4437
- msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4441
- msgid "Nothing specified to install"
+-msgid "Nothing specified to install"
++#: ../yum/__init__.py:4308
++#, python-format
++msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
++#: ../yum/__init__.py:4451
  #, python-format
- msgid "Checking for virtual provide or file-provide for %s"
+-msgid "Checking for virtual provide or file-provide for %s"
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4491
++msgid "Package Object was not a package object instance"
++msgstr ""
++
++#: ../yum/__init__.py:4495
++msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3430 ../yum/__init__.py:3775 ../yum/__init__.py:3969
 -#: ../yum/__init__.py:4289
--#, python-format
++#: ../yum/__init__.py:4519 ../yum/__init__.py:5477
+ #, python-format
 -msgid "No Match for argument: %s"
--msgstr ""
--
++msgid "Checking for virtual provide or file-provide for %s"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4542
++#: ../yum/__init__.py:4596
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4545
++#: ../yum/__init__.py:4599
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4557
++#: ../yum/__init__.py:4611
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4589
++#: ../yum/__init__.py:4643
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4594
++#: ../yum/__init__.py:4648
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -163915,122 +172068,123 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4597
++#: ../yum/__init__.py:4651
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4605
++#: ../yum/__init__.py:4659
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4619
++#: ../yum/__init__.py:4673
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4751
++#: ../yum/__init__.py:4805
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
-+#: ../yum/__init__.py:5011
++#: ../yum/__init__.py:4829 ../yum/__init__.py:4987 ../yum/__init__.py:5035
++#: ../yum/__init__.py:5071
  #, 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:4830 ../yum/__init__.py:5072
++#: ../yum/__init__.py:4884 ../yum/__init__.py:5132
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
++#: ../yum/__init__.py:4911 ../yum/__init__.py:5140 ../yum/__init__.py:5483
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:4929
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4919
++#: ../yum/__init__.py:4976
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4970
++#. Meh.
++#: ../yum/__init__.py:5030
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
++#: ../yum/__init__.py:5039 ../yum/__init__.py:5075
  #, 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:5093
++#: ../yum/__init__.py:5153
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:5099
++#: ../yum/__init__.py:5159
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:5105
++#: ../yum/__init__.py:5165
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:5142
++#: ../yum/__init__.py:5202
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
++#: ../yum/__init__.py:5205 ../yum/__init__.py:5322 ../yum/__init__.py:5414
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:5149
++#: ../yum/__init__.py:5209
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
++#: ../yum/__init__.py:5218 ../yum/__init__.py:5325 ../yum/__init__.py:5417
  #, python-format
  msgid "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:5164
++#: ../yum/__init__.py:5224
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:5172
++#: ../yum/__init__.py:5232
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -164038,7 +172192,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
++#: ../yum/__init__.py:5251 ../yum/__init__.py:5258
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it "
@@ -164046,118 +172200,118 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
++#: ../yum/__init__.py:5267 ../yum/__init__.py:5330 ../yum/__init__.py:5422
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:5212
++#: ../yum/__init__.py:5272
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:5218
++#: ../yum/__init__.py:5278
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:5225
++#: ../yum/__init__.py:5285
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
++#: ../yum/__init__.py:5319 ../yum/__init__.py:5411
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:5299
++#: ../yum/__init__.py:5365
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5392
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:5438
++#: ../yum/__init__.py:5505
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:5446
++#: ../yum/__init__.py:5513
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5496
++#: ../yum/__init__.py:5563
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5506
++#: ../yum/__init__.py:5573
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
++#: ../yum/__init__.py:5686 ../yum/__init__.py:5753
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
++#: ../yum/__init__.py:5703 ../yum/__init__.py:5759
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5725
++#: ../yum/__init__.py:5792
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5743
++#: ../yum/__init__.py:5810
  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:5766
++#: ../yum/__init__.py:5833
  #, 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:5768
++#: ../yum/__init__.py:5835
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5776
++#: ../yum/__init__.py:5843
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5785
++#: ../yum/__init__.py:5852
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5801
++#: ../yum/__init__.py:5868
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -164171,7 +172325,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5811
++#: ../yum/__init__.py:5878
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -164183,7 +172337,7 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5839
++#: ../yum/__init__.py:5906
 +#, python-format
 +msgid ""
 +"\n"
@@ -164193,51 +172347,51 @@ index 97ae91a..85a650d 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5853
++#: ../yum/__init__.py:5920
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:5958
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
++#: ../yum/__init__.py:5960 ../yum/__init__.py:6061
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5897
++#: ../yum/__init__.py:5964
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5900
++#: ../yum/__init__.py:5967
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they "
-@@ -2857,25 +3236,45 @@ msgid ""
+@@ -2857,25 +3298,45 @@ msgid ""
  "Check that the correct key URLs are configured for this repository."
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5910
++#: ../yum/__init__.py:5977
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5932
++#: ../yum/__init__.py:5999
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5934
++#: ../yum/__init__.py:6001
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5935
++#: ../yum/__init__.py:6002
 +#, python-format
 +msgid ""
 +"\n"
@@ -164248,149 +172402,154 @@ index 97ae91a..85a650d 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5948
++#: ../yum/__init__.py:6015
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5992
++#: ../yum/__init__.py:6059
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6076
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:6014
++#: ../yum/__init__.py:6081
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they "
-@@ -2883,158 +3282,179 @@ msgid ""
+@@ -2883,158 +3344,186 @@ msgid ""
  "Check that the correct key URLs are configured for this repository."
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:6172
++#: ../yum/__init__.py:6239
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6241
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:6229
- #, python-format
- msgid "Please report this error at %s"
+-#, python-format
+-msgid "Please report this error at %s"
++#: ../yum/__init__.py:6282
++msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:6246
++#: ../yum/__init__.py:6313
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:6358
++#: ../yum/__init__.py:6425
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
++#: ../yum/__init__.py:6487 ../yum/__init__.py:6489
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
++#: ../yum/__init__.py:6522 ../yum/__init__.py:6524
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6483
- #, python-format
- msgid "Could not access/read saved transaction %s : %s"
- msgstr ""
- 
+-#, python-format
+-msgid "Could not access/read saved transaction %s : %s"
+-msgstr ""
+-
 -#: ../yum/__init__.py:5214
 -msgid "rpmdb ver mismatched saved transaction version, "
-+#: ../yum/__init__.py:6521
-+msgid "rpmdb ver mismatched saved transaction version,"
++#: ../yum/__init__.py:6534
++msgid "File is empty."
  msgstr ""
  
 -#: ../yum/__init__.py:5216
 -msgid " ignoring, as requested."
--msgstr ""
--
++#: ../yum/__init__.py:6571
++#, python-format
++msgid "Could not access/read saved transaction %s : %s"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
 -msgid " aborting."
--msgstr ""
--
++#: ../yum/__init__.py:6599
++msgid "rpmdb ver mismatched saved transaction version,"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6535
++#: ../yum/__init__.py:6613
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6584
++#: ../yum/__init__.py:6662
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6588
++#: ../yum/__init__.py:6666
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
++#: ../yum/__init__.py:6703 ../yum/__init__.py:6720
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6667
++#: ../yum/__init__.py:6745
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6670
++#: ../yum/__init__.py:6748
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
++#: ../yum/__init__.py:6816 ../yum/__init__.py:6835
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6741
++#: ../yum/__init__.py:6819
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6762
++#: ../yum/__init__.py:6840
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
-+#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#: ../yum/__init__.py:6851 ../yum/__init__.py:6857
 +#, python-format
 +msgid "%s is needed by a package to be installed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6793
++#: ../yum/__init__.py:6871
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -164470,28 +172629,32 @@ index 97ae91a..85a650d 100644
  msgstr ""
  
 -#: ../yum/rpmsack.py:151
-+#: ../yum/rpmsack.py:162
++#: ../yum/rpmsack.py:163
++msgid "has installed obsoletes"
++msgstr ""
++
++#: ../yum/rpmsack.py:167
  msgid "has installed conflicts"
  msgstr ""
  
 -#: ../yum/rpmsack.py:160
-+#: ../yum/rpmsack.py:171
++#: ../yum/rpmsack.py:176
  #, python-format
  msgid "%s is a duplicate with %s"
  msgstr ""
  
 -#: ../yum/rpmsack.py:168
-+#: ../yum/rpmsack.py:179
++#: ../yum/rpmsack.py:184
  #, python-format
  msgid "%s is obsoleted by %s"
  msgstr ""
  
 -#: ../yum/rpmsack.py:176
-+#: ../yum/rpmsack.py:187
++#: ../yum/rpmsack.py:192
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3043,6 +3463,23 @@ msgstr ""
+@@ -3043,6 +3532,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -164500,7 +172663,7 @@ index 97ae91a..85a650d 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:919
++#: ../yum/yumRepo.py:956
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -164508,7 +172671,7 @@ index 97ae91a..85a650d 100644
 +"    * needed %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:986
++#: ../yum/yumRepo.py:1022
 +msgid "Package does not match intended download."
 +msgstr ""
 +
@@ -164516,23 +172679,23 @@ index 97ae91a..85a650d 100644
  #, 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..b889204 100644
+index 9fe1a5c..90bf81d 100644
 --- a/po/zh_CN.po
 +++ b/po/zh_CN.po
-@@ -2,938 +2,963 @@
+@@ -2,938 +2,1046 @@
  # 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:
-+# Christopher Meng <cickumqt at gmail.com>, 2012.
++# Christopher Meng <cickumqt at gmail.com>, 2012-2013.
 +#   <dd331 at 163.com>, 2012.
 +# lovenemesis <lovenemesis at gmail.com>, 2011.
 +# Mike Manilone <zhtx10 at gmail.com>, 2012.
 +# Mike Ma <zhtx10 at gmail.com>, 2011.
 +#   <qinghao1 at foxmail.com>, 2012.
-+# Tommy He <lovenemesis at gmail.com>, 2012.
++# Tommy He <lovenemesis at gmail.com>, 2012-2013.
  msgid ""
  msgstr ""
  "Project-Id-Version: Yum\n"
@@ -164542,8 +172705,8 @@ index 9fe1a5c..b889204 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/yum/team/zh_CN/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-08-02 11:40+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-02-27 00:10+0000\n"
 +"Last-Translator: Christopher Meng <cickumqt at gmail.com>\n"
 +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/yum/language/zh_CN/)\n"
  "MIME-Version: 1.0\n"
@@ -164554,9 +172717,10 @@ index 9fe1a5c..b889204 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
- msgstr "正在升级"
+-msgstr "正在升级"
++msgstr "正在更新"
  
 -#: ../callback.py:49 ../yum/rpmtrans.py:74
 +#: ../callback.py:46 ../yum/rpmtrans.py:74
@@ -164565,32 +172729,32 @@ index 9fe1a5c..b889204 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
 -msgstr "被取代"
 +msgstr "已废弃"
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr "更新完毕"
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr "已安装"
  
@@ -164608,7 +172772,8 @@ index 9fe1a5c..b889204 100644
 +#: ../callback.py:201
  #, python-format
  msgid "Error: invalid output state: %s for %s"
- msgstr "错误:%s 输出状态不对:%s"
+-msgstr "错误:%s 输出状态不对:%s"
++msgstr "错误:%s 输出状态无效:%s"
  
 -#: ../callback.py:212
 +#: ../callback.py:224
@@ -164617,7 +172782,7 @@ index 9fe1a5c..b889204 100644
  msgstr "已删除:%s"
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr "正在删除"
  
@@ -164627,158 +172792,196 @@ index 9fe1a5c..b889204 100644
  msgstr "清理"
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr "命令 \"%s\" 已有定义"
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
- msgstr "设置仓库"
+-msgstr "设置仓库"
++msgstr "正在设置更新源"
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
- msgstr "从本地文件读入仓库元数据"
+-msgstr "从本地文件读入仓库元数据"
++msgstr "正在从本地文件读取源元数据"
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr "配置错误:%s"
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
- msgstr "属性错误:%s"
+-msgstr "属性错误:%s"
++msgstr "选项错误:%s"
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr "  已安装: %s-%s 在 %s"
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr "  构建    :%s 在 %s"
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
- msgstr "  已经提交:%s ,共 %s "
+-msgstr "  已经提交:%s ,共 %s "
++msgstr "  已提交:%s ,共 %s "
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
 -msgstr "你需要给出命令"
 +msgstr "您需要给出命令"
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
- msgstr "没有命令: %s。请使用 %s --help"
+-msgstr "没有命令: %s。请使用 %s --help"
++msgstr "没有该命令:%s。请使用 %s --help"
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
- msgstr "磁盘要求:\n"
+-msgstr "磁盘要求:\n"
++msgstr "空间需求:\n"
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, 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 上需要 %s MB 以上的空间。\n"
++msgstr[0] " %d MB 以上的空间至少需要在文件系统 %s 上。\n"
  
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
 -msgstr ""
 -"出错情况\n"
 -"-------------\n"
-+msgstr "出错情况\n-------------\n"
++msgstr "错误概要\n-------------\n"
++
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr "无法创建锁文件,正在退出"
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr "另外一个程序锁定了 yum;遵循 exit_on_lock 设置退出"
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
- msgstr "尝试执行事务但无须任何处理。现在退出。"
+-msgstr "尝试执行事务但无须任何处理。现在退出。"
++msgstr "无须任何处理。正在退出。"
++
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr "新的 RPM 数据库版本与已保存事务中的版本不匹配,"
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr " 忽略,作为请求。"
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr " 终止。"
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
- msgstr "在用户的命令下退出"
+-msgstr "在用户的命令下退出"
++msgstr "由于用户命令正在退出"
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
- msgstr "下载软件包:"
+-msgstr "下载软件包:"
++msgstr "正在下载软件包:"
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
- msgstr "下载软件包出错:\n"
+-msgstr "下载软件包出错:\n"
++msgstr "下载软件包时出错:\n"
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
 -msgstr ""
-+msgstr "运行事务检查"
++msgstr "正在执行事务检查"
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
- msgstr "错误:您需要更新 rpm 以处理:"
+-msgstr "错误:您需要更新 rpm 以处理:"
++msgstr "错误:您需要更新 RPM 以处理:"
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
 -msgstr ""
 +msgstr "事务检查与依赖解决错误:"
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr "RPM 需要更新"
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
- msgstr "请在%s报告此错误"
+-msgstr "请在%s报告此错误"
++msgstr "请在 %s 报告此错误"
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
- msgstr "执行事务测试"
+-msgstr "执行事务测试"
++msgstr "正在执行事务检查"
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
- msgstr "事务检验出错:\n"
+-msgstr "事务检验出错:\n"
++msgstr "事务检查出错:\n"
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
- msgstr "事务测试成功"
+-msgstr "事务测试成功"
++msgstr "事务测试完成"
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
- msgstr "执行事务"
+-msgstr "执行事务"
++msgstr "正在执行事务"
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  msgid ""
  "Refusing to automatically import keys when running unattended.\n"
  "Use \"-y\" to override."
@@ -164788,135 +172991,146 @@ index 9fe1a5c..b889204 100644
 +msgstr "如果不加干预,拒绝自动导入密钥。\n指定 \"-y\" 改变这个行为。"
  
 -#: ../cli.py:649 ../cli.py:692
-+#: ../cli.py:697 ../cli.py:740
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
- msgstr "  * 也许您希望:"
+-msgstr "  * 也许您希望:"
++msgstr "  * 也许您想要:"
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, python-format
  msgid "Package(s) %s%s%s available, but not installed."
- msgstr "包 %s%s%s 可用,但未安装。"
+-msgstr "包 %s%s%s 可用,但未安装。"
++msgstr "软件包 %s%s%s 可用,但尚未安装。"
  
 -#: ../cli.py:689 ../cli.py:722 ../cli.py:908
-+#: ../cli.py:737 ../cli.py:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
- msgstr "没有可用的包 %s%s%s。"
+-msgstr "没有可用的包 %s%s%s。"
++msgstr "没有可用软件包 %s%s%s。"
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
 -msgstr "将安装的软件包"
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
++#, python-format
++msgid "Bad %s argument %s."
++msgstr "错误 %s 参数 %s。"
++
++#: ../cli.py:900 ../yumcommands.py:3331
 +#, python-format
 +msgid "%d package to install"
 +msgid_plural "%d packages to install"
-+msgstr[0] "%d 个包要安装"
++msgstr[0] "%d 个软件包将被安装"
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr "无须任何处理"
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, 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[0] "%d 个软件包标记为更新"
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
- msgstr "不升级任何软件包"
+-msgstr "不升级任何软件包"
++msgstr "不更新任何软件包"
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, 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[0] "%d 个软件包标记为发行版同步"
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
- msgstr "没有已标记的欲分布同步的包"
+-msgstr "没有已标记的欲分布同步的包"
++msgstr "没有发行版同步软件包"
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, 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[0] "%d 个软件包标记为移除"
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr "不删除任何软件包"
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr "要降级的包"
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
-+msgstr[0] "%d 个包要降级"
++msgstr[0] "%d 个软件包要降级"
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr "(来自 %s)"
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
- msgstr "安装的包 %s%s%s%s 不可用。"
+-msgstr "安装的包 %s%s%s%s 不可用。"
++msgstr "已安装的软件包 %s%s%s%s 不可用。"
  
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr "重装的包"
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
-+msgstr[0] "%d 个包要重新安装"
++msgstr[0] "%d 个软件包要重新安装"
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr "未指定软件包"
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr "将安装的软件包"
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
 -msgstr ""
 +msgstr "N/S 匹配:%s"
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, 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:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
@@ -164924,190 +173138,228 @@ index 9fe1a5c..b889204 100644
 +msgstr "  全名和简介匹配 %sonly%s,使用“search all”试试。"
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr "匹配:%s"
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, 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:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr "警告:没有匹配 %s 的软件包"
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
- msgstr "没有找到匹配的软件包"
+-msgstr "没有找到匹配的软件包"
++msgstr "未找到匹配的软件包"
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 -msgstr "没有找到 %s 软件包"
 +msgid ""
 +"Error: No Packages found for:\n"
 +"  %s"
-+msgstr "错误: 没有找到软件包:\n  %s"
++msgstr "错误:未找到软件包:\n  %s"
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
- msgstr "正在清理仓库: "
+-msgstr "正在清理仓库: "
++msgstr "正在清理软件源: "
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
- msgstr "清理一切"
+-msgstr "清理一切"
++msgstr "清除全部"
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
- msgstr "清理文件头缓存"
+-msgstr "清理文件头缓存"
++msgstr "清除文件头缓存"
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
- msgstr "清理软件包"
+-msgstr "清理软件包"
++msgstr "清除软件包缓存"
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
- msgstr "清理 XML 元数据"
+-msgstr "清理 XML 元数据"
++msgstr "清除 XML 元数据"
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
- msgstr "清理数据库缓存"
+-msgstr "清理数据库缓存"
++msgstr "清除数据库缓存"
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
- msgstr "清理过期缓存元数据"
+-msgstr "清理过期缓存元数据"
++msgstr "清除过期的缓存元数据"
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
- msgstr "正在清理缓存rpmdb数据"
+-msgstr "正在清理缓存rpmdb数据"
++msgstr "正在清除 RPM 数据库缓存"
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
- msgstr "清理插件"
+-msgstr "清理插件"
++msgstr "清除插件缓存"
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
 -msgstr ""
-+msgstr "警告:无组匹配:%s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr "已安装环境分组:"
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
++msgstr "可用的环境分组:"
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr "已安装的组:"
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
 -msgstr ""
-+msgstr "安装了的语言组:"
++msgstr "已安装的语言组:"
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
- msgstr "有效的组:"
+-msgstr "有效的组:"
++msgstr "可用组:"
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
 -msgstr ""
 +msgstr "可用语言组:"
++
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr "警告:没有环境/分组匹配:%s"
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1763
  msgid "Done"
  msgstr "完成"
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr "警告:分组/环境 %s 不存在。"
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr "警告:环境 %s 不存在。"
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr "警告:组 %s 不存在。"
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr "指定组中没有可安装或升级的软件包"
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, 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[0] "%d 个软件包要安装"
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
++msgstr "没有名为 %s 的环境存在。"
++
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr "没有名为 %s 的组"
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
- msgstr "指定组中没有要删除的软件包"
+-msgstr "指定组中没有要删除的软件包"
++msgstr "指定组中没有要移除的软件包"
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, 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[0] "%d 个软件包要移除"
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr "略过已安装的 %s 软件包"
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr "%s 未安装,加入列表以备安装"
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr "插件选项"
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr "命令行错误:%s"
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
@@ -165120,365 +173372,394 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n%s: %s 选项需要参数"
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr "--color 需要参数:auto, always, never"
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
 -msgstr ""
 +msgstr "-- 安装根必须是绝对路径:%s"
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr "显示此帮助消息并退出"
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
- msgstr "容忍错误"
+-msgstr "容忍错误"
++msgstr "忽略错误"
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr "完全从系统缓存运行,不升级缓存"
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr "配置文件路径"
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr "命令最长等待时间"
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr "调试输出级别"
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
- msgstr "在 list/search 命令下,显示仓库里重复的条目"
+-msgstr "在 list/search 命令下,显示仓库里重复的条目"
++msgstr "在 list/search 命令下,显示源里重复的条目"
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr "错误输出级别"
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
- msgstr "rpm调试输出等级"
+-msgstr "rpm调试输出等级"
++msgstr "RPM 调试输出级别"
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
- msgstr "安静的操作"
+-msgstr "安静的操作"
++msgstr "静默执行"
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr "详尽的操作过程"
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
- msgstr "回答所有的问题为是"
+-msgstr "回答所有的问题为是"
++msgstr "回答全部问题为是"
++
++#: ../cli.py:2308
++msgid "answer no for all questions"
++msgstr "回答全部问题为否"
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
-+msgid "answer no for all questions"
-+msgstr "不再回答所有问题"
-+
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
- msgstr "显示 Yum 版本信息并退出"
+-msgstr "显示 Yum 版本信息并退出"
++msgstr "显示 Yum 版本然后退出"
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
- msgstr "设置目标根目录"
+-msgstr "设置目标根目录"
++msgstr "设置安装根目录"
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
- msgstr "启用一个或多个仓库(支持通配符)"
+-msgstr "启用一个或多个仓库(支持通配符)"
++msgstr "启用一个或多个软件源(支持通配符)"
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
- msgstr "禁用一个或多个仓库(支持通配符)"
+-msgstr "禁用一个或多个仓库(支持通配符)"
++msgstr "禁用一个或多个软件源(支持通配符)"
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
- msgstr "用全名或通配符排除软件包"
+-msgstr "用全名或通配符排除软件包"
++msgstr "采用全名或通配符排除软件包"
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
- msgstr "禁止从主配置,从仓库或者从任何位置排除"
+-msgstr "禁止从主配置,从仓库或者从任何位置排除"
++msgstr "禁止从主配置,从源或者从任何位置排除"
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
- msgstr "升级时考虑软件包取代关系"
+-msgstr "升级时考虑软件包取代关系"
++msgstr "更新时处理软件包取代关系"
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr "禁用 Yum 插件"
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
- msgstr "禁用 gpg 签名检测"
+-msgstr "禁用 gpg 签名检测"
++msgstr "禁用 GPG 签名检查"
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr "禁用指定名称的插件"
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
- msgstr "由名称启用插件"
+-msgstr "由名称启用插件"
++msgstr "启用指定名称的插件"
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
- msgstr "跳过有依赖问题的软件包"
+-msgstr "跳过有依赖问题的软件包"
++msgstr "忽略存在依赖关系问题的软件包"
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr "配置是否使用颜色"
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
- msgstr "在yum配置和repo文件里设置$releasever的值"
+-msgstr "在yum配置和repo文件里设置$releasever的值"
++msgstr "在 yum 配置和 repo 文件里设置 $releasever 的值"
++
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr "仅下载而不更新"
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr "指定一个其他文件夹用于保存软件包"
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
- msgstr "设置任意配置和仓库选项"
+-msgstr "设置任意配置和仓库选项"
++msgstr "设置任意配置和源选项"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr "一月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr "二月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr "三月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr "四月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr "五月"
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr "六月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr "七月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr "八月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr "九月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr "十月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr "十一月"
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr "十二月"
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
- msgstr "尝试其他镜像。"
+-msgstr "尝试其他镜像。"
++msgstr "正在尝试其它镜像。"
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
 -msgstr "名称        :%s%s%s"
 +msgstr "名称    :%s%s%s"
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
 -msgstr "构架        :%s"
 +msgstr "架构    :%s"
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
- msgstr "时期       : %s"
+-msgstr "时期       : %s"
++msgstr "时期       :%s"
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
 -msgstr "版本     :%s"
 +msgstr "版本    :%s"
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
 -msgstr "发布     :%s"
 +msgstr "发布    :%s"
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
 -msgstr "大小        :%s"
 +msgstr "大小    :%s"
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
 -msgstr "仓库        :%s"
-+msgstr "仓库    :%s"
++msgstr "源    :%s"
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
 -msgstr "来自仓库   :%s"
-+msgstr "来自仓库:%s"
++msgstr "来自源:%s"
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr "提交者   :%s"
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr "提交时间  :%s"
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr "构建时间:%s"
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr "安装时间:%s"
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
- msgstr "由 %s 安装"
+-msgstr "由 %s 安装"
++msgstr "由 %s 安装:"
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr "由 %s 修改"
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
 -msgstr "简介     : "
 +msgstr "简介    : "
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
 -msgstr "网址         :%s"
 +msgstr "网址    :%s"
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
 -msgstr "协议     : "
 +msgstr "协议    : "
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
 -msgstr "描述: "
 +msgstr "描述    : "
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr "y"
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr "是"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr "n"
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr "否"
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
- msgstr "确定吗?[y/N]:"
+-msgstr "确定吗?[y/N]:"
++msgstr "是否继续?[y/N]:"
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -165489,201 +173770,231 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n组:%s"
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr " 组编号:%s"
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr " 描述:%s"
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
 -msgstr ""
 +msgstr " 语言:%s"
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr " 必要的软件包:"
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr " 默认的软件包:"
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr " 可选的软件包:"
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr " 可能的软件包:"
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
-+msgstr " 已安装的包:"
++msgstr " 已安装的软件包:"
++
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr "\n环境分组:%s"
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr "环境 ID:%s"
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr "必备组:"
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr "可选组:"
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr "已安装组:"
 +
-+#: ../output.py:1155
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr "软件包:%s"
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr " 此软件包无依赖关系"
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
- msgstr "   依赖: %s"
+-msgstr "   依赖: %s"
++msgstr "   依赖:%s"
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
- msgstr " 不满足的依赖关系"
+-msgstr " 不满足的依赖关系"
++msgstr " 不良依赖关系"
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
- msgstr "匹配来自于:"
+-msgstr "匹配来自于:"
++msgstr "匹配来源:"
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
 -msgstr "协议     :%s"
 +msgstr "协议    :%s"
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr "文件名    :%s"
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
-+msgstr "提供    : "
++msgstr "提供    :"
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr "其他       : "
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr "计算总下载量时出错"
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
- msgstr "总文件大小:%s"
+-msgstr "总文件大小:%s"
++msgstr "总计:%s"
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr "总下载量:%s"
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr "安装大小:%s"
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
- msgstr "有一个错误计算安装大小"
+-msgstr "有一个错误计算安装大小"
++msgstr "计算安装大小时出错"
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr "重新安装"
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr "正在降级"
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr "为依赖而安装"
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr "为依赖而更新"
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr "为依赖而移除"
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr "跳过(依赖问题)"
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr "未安装"
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
 -msgstr ""
 +msgstr "不可用"
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr "软件包"
 +msgid_plural "Packages"
 +msgstr[0] "软件包"
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr "架构"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr "版本"
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
- msgstr "仓库"
+-msgstr "仓库"
++msgstr "源"
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr "大小"
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr "      替换  %s%s%s.%s %s\n"
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
@@ -165699,7 +174010,7 @@ index 9fe1a5c..b889204 100644
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
 -msgstr "安装   %5.5s 个包\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
 +msgstr "安装"
  
@@ -165707,15 +174018,15 @@ index 9fe1a5c..b889204 100644
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
 -msgstr "升级   %5.5s 个包\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
-+msgstr "更新"
++msgstr "升级"
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
 -msgstr "移除    %5.5s 个包\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
 +msgstr "移除"
  
@@ -165723,7 +174034,7 @@ index 9fe1a5c..b889204 100644
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
 -msgstr "重新安装 %5.5s 个包\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
 +msgstr "重新安装"
  
@@ -165731,57 +174042,57 @@ index 9fe1a5c..b889204 100644
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
 -msgstr "降级 %5.5s 个包\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
 +msgstr "降级"
 +
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
-+msgstr[0] "依赖包"
++msgstr[0] "依赖软件包"
  
 -#: ../output.py:1165
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr "删除"
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr "作为依赖被删除"
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr "作为依赖被安装"
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr "作为依赖被升级"
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr "替代"
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr "失败"
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr "二"
  
-@@ -941,574 +966,610 @@ msgstr "二"
+@@ -941,574 +1049,604 @@ 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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
@@ -165791,273 +174102,285 @@ index 9fe1a5c..b889204 100644
 -"\n"
 -" 当前下载已取消,再次输入%s个中断(ctrl-c)%s于 %s%s%s 秒内\n"
 -"以退出。\n"
-+msgstr "\n 已取消当前下载,如果再次输入%s个中断请求(ctrl-c) %s 将会在 %s%s%s 秒内\n退出。\n"
++msgstr "\n 当前下载已被取消,再次输入 %s 个中断请求(ctrl-c) %s 于 %s%s%s 秒内\n将会退出。\n"
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr "用户中断"
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr "总计"
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr "I"
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr "O"
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr "E"
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr "R"
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr "D"
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr "U"
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr "<空>"
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr "系统"
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
 -msgstr ""
-+msgstr "跳过合并事务 %d 到 %d,因为它俩重叠"
++msgstr "由于重叠,忽略合并事务 %d 至 %d"
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
 -msgstr ""
 +msgstr "没有事务"
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr "错误的事务 ID 或软件包"
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
 -msgstr ""
 +msgstr "命令行"
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
- msgstr "登陆用户"
+-msgstr "登陆用户"
++msgstr "登录用户"
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr "ID"
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr "日期和时间"
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr "操作"
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
- msgstr "更改"
+-msgstr "更改"
++msgstr "变更数量"
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
- msgstr "没有事务 ID"
+-msgstr "没有事务 ID"
++msgstr "未指定事务 ID"
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr "错误的事务 ID"
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
- msgstr "未能找到指定事务 ID"
+-msgstr "未能找到指定事务 ID"
++msgstr "未找到指定的事务 ID"
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
- msgstr "找到多个事务 ID!"
+-msgstr "找到多个事务 ID!"
++msgstr "找到多个事务 ID!"
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
- msgstr "未指定事务 ID、或者软件包"
+-msgstr "未指定事务 ID、或者软件包"
++msgstr "未指定事务 ID 或软件包"
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr "降级"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr "较老的"
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr "较早的"
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr "事务 ID:"
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr "起始时间    :"
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
- msgstr "启动 rpmdb     :"
+-msgstr "启动 rpmdb     :"
++msgstr "启动 RPM 数据库     :"
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
 -msgstr ""
 +msgstr "(%u 秒)"
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
 -msgstr ""
 +msgstr "(%u 分钟)"
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
 -msgstr ""
 +msgstr "(%u 小时)"
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
 -msgstr ""
 +msgstr "(%u 天)"
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr "结束时间       :"
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
- msgstr "结束 rpmdb      :"
+-msgstr "结束 rpmdb      :"
++msgstr "结束 RPM 数据库      :"
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr "用户           :"
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr "返回码    :"
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr "已终止"
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
 -msgstr ""
 +msgstr "失败:"
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr "失败:"
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr "成功"
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr "命令行   :"
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
- msgstr "其他非默认信息已保存:%d"
+-msgstr "其他非默认信息已保存:%d"
++msgstr "其它非默认信息已保存:%d"
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
- msgstr "事务完成由:"
+-msgstr "事务完成由:"
++msgstr "事务完成属主:"
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
- msgstr "已改变的包:"
+-msgstr "已改变的包:"
++msgstr "已变更的包:"
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr "已跳过的包:"
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
- msgstr "Rpmdb 问题:"
+-msgstr "Rpmdb 问题:"
++msgstr "RPM 数据库问题:"
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr "Scriptlet 输出:"
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr "错误:"
  
@@ -166066,20 +174389,20 @@ index 9fe1a5c..b889204 100644
 -msgstr "安装"
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr "依赖安装"
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr "取代中"
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
- msgstr "抹去"
- 
+-msgstr "抹去"
+-
 -#: ../output.py:1843
 -msgid "Reinstall"
 -msgstr "重新安装"
@@ -166087,231 +174410,239 @@ index 9fe1a5c..b889204 100644
 -#: ../output.py:1844
 -msgid "Downgrade"
 -msgstr "降级"
--
++msgstr "删除"
+ 
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr "更新"
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr "时间"
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr "最近一天"
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr "最近一周"
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr "最近2周"
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr "最近3个月"
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr "最近6个月"
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr "最近一年"
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr "一年以前"
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr "未找到事务 %s"
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr "事务 ID:"
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr "可用的额外历史信息:"
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
 -msgstr "%s: 未找到符合该名称的额外数据"
 +msgstr "%s:未找到符合该名称的额外数据"
 +
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
-+msgstr "包        :"
-+
-+#: ../output.py:2618
++msgstr "包        :"
+ 
+-#: ../output.py:2106
++#: ../output.py:2685
 +msgid "State          :"
-+msgstr "状态          :"
++msgstr "状态          :"
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
-+msgstr "大小           :"
++msgstr "大小           :"
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
-+msgstr "构建主机     :"
++msgstr "构建主机     :"
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
-+msgstr "构建时间     :"
++msgstr "构建时间     :"
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
-+msgstr "打包者       :"
- 
--#: ../output.py:2106
-+#: ../output.py:2630
++msgstr "打包者       :"
++
++#: ../output.py:2697
 +msgid "Vendor         :"
-+msgstr "供应商         :"
++msgstr "供应商         :"
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
-+msgstr "许可协议        :"
++msgstr "许可协议        :"
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
-+msgstr "URL            :"
++msgstr "URL            :"
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
-+msgstr "源 RPM     :"
++msgstr "源代码 RPM     :"
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
-+msgstr "提交时间    :"
++msgstr "提交时间    :"
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr "提交者      :"
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
-+msgstr "原因         :"
++msgstr "原因         :"
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
-+msgstr "repo      :"
++msgstr "来自源      :"
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr "安装者   :"
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr "修改者     :"
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr "安装"
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
 -msgstr ""
-+msgstr "一个更新"
++msgstr "更新"
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr "删除"
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr "已重新安装"
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
 -msgstr ""
-+msgstr "一个降级"
++msgstr "降级"
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
 -msgstr ""
 +msgstr "舍弃"
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr "升级"
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr "取代"
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, 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:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
- msgstr "--> 执行事务检查"
+-msgstr "--> 执行事务检查"
++msgstr "--> 正在检查事务"
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
- msgstr "--> 使用新的信息重新计算依赖关系。"
+-msgstr "--> 使用新的信息重新计算依赖关系。"
++msgstr "--> 正在使用新的信息重新解决依赖关系"
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
- msgstr "--> 完成依赖关系计算"
+-msgstr "--> 完成依赖关系计算"
++msgstr "--> 解决依赖关系完成"
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
- msgstr "--> 处理依赖关系 %s,它被软件包 %s 需要"
+-msgstr "--> 处理依赖关系 %s,它被软件包 %s 需要"
++msgstr "--> 正在处理依赖关系 %s,它被软件包 %s 需要"
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
- msgstr "---> 保留软件包: %s"
+-msgid "---> Keeping package: %s"
+-msgstr "---> 保留软件包: %s"
++msgid "---> Keeping package: %s due to %s"
++msgstr "---> 保留软件包:%s 由于 %s"
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
- msgstr "--> 无法解决的依赖:%s"
+-msgstr "--> 无法解决的依赖:%s"
++msgstr "--> 未能解决依赖:%s"
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr "软件包:%s"
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -166322,7 +174653,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n    需要:%s"
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -166333,7 +174664,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n    %s: %s (%s)"
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -166344,7 +174675,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n        %s"
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -166355,109 +174686,111 @@ index 9fe1a5c..b889204 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr "更新,由"
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr "降级,由"
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr "取代,由"
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr "可用"
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr "--> 处理 %s 与 %s 的冲突"
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
- msgstr "--> 根据指定的软件包创建事务,请等待。"
+-msgstr "--> 根据指定的软件包创建事务,请等待。"
++msgstr "--> 请稍候,正在根据指定的软件包创建事务。"
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
- msgstr "---> 下载 %s 的文件头作为事务的一部分。"
- 
--#: ../utils.py:99
+-msgstr "---> 下载 %s 的文件头作为事务的一部分。"
++msgstr "---> 正在下载 %s 的文件头,它是事务的一部分。"
++
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr "验证中"
-+
-+#: ../utils.py:129
+ 
+-#: ../utils.py:99
++#: ../utils.py:123
  msgid "Running"
  msgstr "运行中"
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr "睡眠中"
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr "不可中断"
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr "僵死"
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr "跟踪/停止"
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr "未知"
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr "  另一个应用程序是:PackageKit"
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr "  另一个应用程序是:%s"
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr "    内存:%5s RSS (%5sB VSZ)"
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr "    已启动: %s - %s之前"
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr "    状态  :%s,进程ID:%d"
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -166469,7 +174802,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n由于用户取消而退出"
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -166481,7 +174814,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n由于管道被破坏而退出"
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
@@ -166494,48 +174827,50 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n%s"
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr "另外一个程序锁定了 yum;遵循 exit_on_lock 设置退出"
- 
+-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:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr "插件退出错误:%s"
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr "Yum 错误:%s"
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr "错误:%s"
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  msgid " You could try using --skip-broken to work around the problem"
- msgstr " 您可以尝试用 --skip-broken 来解决该问题"
+-msgstr " 您可以尝试用 --skip-broken 来解决该问题"
++msgstr " 您可以尝试添加 --skip-broken 选项来解决该问题"
  
 -#: ../utils.py:348 ../yummain.py:87
-+#: ../utils.py:419 ../yummain.py:87
++#: ../utils.py:393 ../yummain.py:87
  msgid " You could try running: rpm -Va --nofiles --nodigest"
- msgstr " 您可以尝试运行: rpm -Va --nofiles --nodigest"
+-msgstr " 您可以尝试运行: rpm -Va --nofiles --nodigest"
++msgstr " 您可以尝试执行:rpm -Va --nofiles --nodigest"
  
 -#: ../utils.py:355 ../yummain.py:160 ../yummain.py:202
-+#: ../utils.py:426 ../yummain.py:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
- msgstr "未知错误:退出码 %d:"
+-msgstr "未知错误:退出码 %d:"
++msgstr "未知错误:退出码:%d:"
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
@@ -166545,26 +174880,26 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n依赖关系解决"
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr "完毕!"
  
  #: ../yumcommands.py:42
  msgid " Mini usage:\n"
 -msgstr ""
-+msgstr " 迷你用法:\n"
++msgstr "简单用法:\n"
  
  #: ../yumcommands.py:52
  msgid "You need to be root to perform this command."
 -msgstr "你需要以 root 身份执行此命令。"
-+msgstr "您需要以 root 身份执行此命令。"
++msgstr "您需要 root 权限执行此命令。"
  
 -#: ../yumcommands.py:59
 +#: ../yumcommands.py:67
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1523,577 +1584,604 @@ msgid ""
+@@ -1523,577 +1661,647 @@ msgid ""
  "will install it for you.\n"
  "\n"
  "For more information contact your distribution or package provider.\n"
@@ -166577,14 +174912,14 @@ index 9fe1a5c..b889204 100644
 -"或者,在仓库配置中,使用 'gpgkey' 选项指定仓库使用的公钥的 URL,这样 yum 会自动安装它。\n"
 -"\n"
 -"详情请联系您的发行版或软件包制作人。\n"
-+msgstr "\n您启用了软件包 GPG 签名检测,这样很好。但是,您尚未安装任何 GPG 公钥。请下载您希望安装的软件的签名公钥并安装。假设公钥已下载,安装命令是:\n    rpm --import public.gpg.key\n\n\n或者,在仓库配置中,使用 'gpgkey' 选项指定仓库使用的公钥的 URL,这样 yum 会自动安装它。\n\n详情请联系您的发行版或软件包制作人。\n"
++msgstr "\n您已启用软件包 GPG 签名检查,这样很好。不过您尚未安装任何 GPG 公钥。请下载您希望安装的软件签名公钥并安装。假设公钥已下载,安装命令是:\n    rpm --import public.gpg.key\n\n\n或者,在软件源配置中,使用 'gpgkey' 选项指定软件源使用的公钥 URL,这样 yum 会自动安装它。\n\n详情请联系发行版或软件包制作人。\n"
  
 -#: ../yumcommands.py:74
 +#: ../yumcommands.py:82
  #, python-format
  msgid "Problem repository: %s"
 -msgstr ""
-+msgstr "问题仓库:%s"
++msgstr "问题源:%s"
  
 -#: ../yumcommands.py:80
 +#: ../yumcommands.py:96
@@ -166593,51 +174928,75 @@ index 9fe1a5c..b889204 100644
  msgstr "错误:需要为 %s 指定软件包列表"
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr "错误:需要至少两个软件包用于 %s"
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr "错误:需要传递 repoid. 和命令至 %s"
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr "错误:需要传递一个有效的 repoid. 至 %s"
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr "错误:源 %s 尚未启用"
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr "错误:需要指定匹配模式"
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr "错误:需要组或组的列表"
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr "错误:清理命令需要参数:%s"
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr "错误:清理命令参数不正确:%r"
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
- msgstr "没有给外壳指定参数"
+-msgstr "没有给外壳指定参数"
++msgstr "没有给 shell 指定参数"
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
- msgstr "传给外壳的文件名:%s"
+-msgstr "传给外壳的文件名:%s"
++msgstr "传给 shell 的文件名:%s"
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
- msgstr "作为参数传给外壳的文件 %s 不存在。"
+-msgstr "作为参数传给外壳的文件 %s 不存在。"
++msgstr "作为参数传给 shell 的文件 %s 不存在。"
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
- msgstr "错误:作为参数传给外壳超过一个文件。"
+-msgstr "错误:作为参数传给外壳超过一个文件。"
++msgstr "错误:作为参数传给 shell 的文件超过一个。"
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -166646,115 +175005,117 @@ index 9fe1a5c..b889204 100644
 -"没有已启用的仓库。\n"
 -"执行 \"yum repolist all\" 查看您拥有的仓库。\n"
 -"您可以用 yum-config-manager --enable &lt;仓库名&gt; 来启用仓库"
-+msgstr "没有已启用的仓库。\n执行 \"yum repolist all\" 查看您拥有的仓库。\n您可以用 yum-config-manager --enable &lt;仓库名&gt; 来启用仓库"
++msgstr "没有已启用的源。\n执行 \"yum repolist all\" 查看您拥有的源。\n您可以用 yum-config-manager --enable &lt;源名&gt; 来启用源"
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr "软件包……"
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr "向系统中安装一个或多个软件包"
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr "设置安装进程"
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr "[软件包……]"
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr "更新系统中的一个或多个软件包"
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr "设置更新进程"
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr "已同步软件包到最新可用版本"
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr "正在设置发行版同步进程"
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr "显示关于软件包或组的详细信息"
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr "已安装的软件包"
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr "可安装的软件包"
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
- msgstr "更多软件包"
+-msgstr "更多软件包"
++msgstr "额外的软件包"
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr "更新的软件包"
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr "取代的软件包"
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr "最近添加的软件包"
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr "没有匹配的软件包可以列出"
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr "列出一个或一组软件包"
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr "从系统中移除一个或多个软件包"
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
- msgstr "设置移除进程"
+-msgstr "设置移除进程"
++msgstr "正在设置移除进程"
  
 -#: ../yumcommands.py:435
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
 +msgstr "显示或使用、组信息"
 +
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
  msgid "Setting up Group Process"
  msgstr "设置组进程"
  
 -#: ../yumcommands.py:441
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
  msgid "No Groups on which to run command"
  msgstr "没有指定要处理的组"
  
@@ -166765,7 +175126,7 @@ index 9fe1a5c..b889204 100644
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
 -msgstr "向系统中安装一组软件包"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
 +msgstr "无效的组子命令,使用:%s"
@@ -166773,265 +175134,297 @@ index 9fe1a5c..b889204 100644
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
 -msgstr "从系统中移除一组软件包"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
 +msgstr "没有安装组信息文件"
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
 -msgstr "显示组的详细信息"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
 +msgstr "您没有权限访问组信息数据库。"
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr "创建元数据缓存"
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr "为元数据文件生成缓存文件。"
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr "这需要一段时间,取决于这台计算机的速度"
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr "元数据缓存已建立"
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
- msgstr "删除缓存的数据"
+-msgstr "删除缓存的数据"
++msgstr "删除缓存数据"
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr "查找提供指定内容的软件包"
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
- msgstr "检查是否有软件包更新"
+-msgstr "检查是否有软件包更新"
++msgstr "检查是否有可用的软件包更新"
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr "在软件包详细信息中搜索指定字符串"
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr "搜索软件包:"
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr "更新软件包同时考虑软件包取代关系"
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
- msgstr "设置升级进程"
+-msgstr "设置升级进程"
++msgstr "正在配置升级进程"
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
- msgstr "安装本地的 RPM"
+-msgstr "安装本地的 RPM"
++msgstr "安装本地 RPM"
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
- msgstr "设置本地安装进程"
+-msgstr "设置本地安装进程"
++msgstr "正在设置本地安装进程"
  
 -#: ../yumcommands.py:764
 -msgid "Determine which package provides the given dependency"
 -msgstr "判断哪个包提供了指定的依赖"
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr "查找依赖的软件包:"
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
- msgstr "运行交互式的 yum 外壳"
+-msgstr "运行交互式的 yum 外壳"
++msgstr "运行交互式的 yum shell"
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
- msgstr "设置 Yum 外壳"
+-msgstr "设置 Yum 外壳"
++msgstr "设置 Yum Shell"
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr "列出软件包的依赖关系"
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
- msgstr "查找依赖:"
+-msgstr "查找依赖:"
++msgstr "正在查找依赖:"
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
- msgstr "显示已配置的仓库"
+-msgstr "显示已配置的仓库"
++msgstr "显示已配置的源"
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr "启用"
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr "禁用"
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
- msgstr "仓库ID     : "
+-msgstr "仓库ID     : "
++msgstr "源ID     : "
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
- msgstr "仓库名    : "
+-msgstr "仓库名    : "
++msgstr "源名    : "
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
- msgstr "仓库状态  : "
+-msgstr "仓库状态  : "
++msgstr "源状态  : "
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
- msgstr "仓库版本: "
+-msgstr "仓库版本: "
++msgstr "源版本: "
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
- msgstr "仓库标志    : "
+-msgstr "仓库标志    : "
++msgstr "源标志    : "
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
- msgstr "仓库发行版标签: "
+-msgstr "仓库发行版标签: "
++msgstr "源发行版标签: "
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
- msgstr "仓库更新: "
+-msgstr "仓库更新: "
++msgstr "源更新: "
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
- msgstr "仓库包    : "
+-msgstr "仓库包    : "
++msgstr "源软件包    : "
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
- msgstr "仓库大小    : "
+-msgstr "仓库大小    : "
++msgstr "源大小    : "
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
- msgstr "仓库基本地址: "
+-msgstr "仓库基本地址: "
++msgstr "源基本地址: "
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
- msgstr "仓库元链接:"
+-msgstr "仓库元链接:"
++msgstr "源元链接:"
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
- msgstr "更新:"
+-msgstr "更新:"
++msgstr "  已更新    : "
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
- msgstr "仓库镜像:"
+-msgstr "仓库镜像:"
++msgstr "源镜像:"
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
- msgstr "从不 (最后 %s)"
+-msgstr "从不 (最后 %s)"
++msgstr "从不(已持续:%s)"
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
- msgstr "瞬间(最后%s)"
+-msgstr "瞬间(最后%s)"
++msgstr "瞬间(已持续:%s)"
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
- msgstr "%s 秒 (最后 %s)"
+-msgstr "%s 秒 (最后 %s)"
++msgstr "%s 秒(已持续:%s)"
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
- msgstr "仓库到期:"
+-msgstr "仓库到期:"
++msgstr "源到期:"
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
- msgstr "仓库排除:"
+-msgstr "仓库排除:"
++msgstr "源排除:"
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
- msgstr "仓库包括:"
+-msgstr "仓库包括:"
++msgstr "包含的源:"
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
- msgstr "仓库除外:"
+-msgstr "仓库除外:"
++msgstr "排除的源:"
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  msgid "Repo-filename: "
 -msgstr ""
-+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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
- msgstr "仓库标识"
+-msgstr "仓库标识"
++msgstr "源标识"
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr "状态"
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
- msgstr "仓库名称"
+-msgstr "仓库名称"
++msgstr "源名称"
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
- msgstr "显示用法信息"
+-msgstr "显示用法信息"
++msgstr "显示用法提示"
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr "没有关于 %s 的帮助"
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -167043,7 +175436,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n别名:"
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -167055,152 +175448,191 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n\n别名:"
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
- msgstr "设置覆盖安装进程"
+-msgstr "设置覆盖安装进程"
++msgstr "正在设置覆盖安装进程"
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
- msgstr "覆盖安装一个包"
+-msgstr "覆盖安装一个包"
++msgstr "覆盖安装软件包"
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
- msgstr "设置降级过程"
+-msgstr "设置降级过程"
++msgstr "正在设置降级进程"
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
- msgstr "降级包"
+-msgstr "降级包"
++msgstr "降级软件包"
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
- msgstr "显示机器和/或可用的仓库版本。"
+-msgstr "显示机器和/或可用的仓库版本。"
++msgstr "显示机器和/或可用的源版本。"
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
- msgstr " Yum版本组:"
+-msgstr " Yum版本组:"
++msgstr " Yum 版本组:"
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr " 组   :"
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr " 包:"
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr "已安装:"
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr "组已安装:"
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr "可用:"
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr "组内现有:"
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr "显示或使用事务历史"
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
-+msgstr "事务"
++msgstr "事务:"
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
-+msgstr "开始时间  :"
++msgstr "开始于  :"
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
-+msgstr "结束时间    :"
++msgstr "结束于    :"
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr "计数      :"
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr "  NEVRAC :"
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr "  NEVRA  :"
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr "  NA     :"
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr "  NEVR   :"
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
-+msgstr "  rpm DB :"
++msgstr "  RPM 数据库:"
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
-+msgstr "  yum DB :"
++msgstr "  yum 数据库:"
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr "无效的历史子命令,使用:%s。"
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
 -msgstr "你没有权限到历史数据。"
-+msgstr "你您没有权限访问历史数据。"
++msgstr "您没有权限访问历史数据。"
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
- msgstr "检查rpmdb里的问题"
+-msgstr "检查rpmdb里的问题"
++msgstr "检查 RPM 数据库问题"
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
 -msgstr ""
 +msgstr "从文件名中加载一个已存事务"
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
 -msgstr ""
 +msgstr "指定文件中没有已存事务。"
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
 -msgstr ""
 +msgstr "正在从 %s 中加载事务"
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
 -msgstr ""
-+msgstr "事务从 %s 载入,还有 %s 成员。"
++msgstr "事务已从 %s 载入,还有 %s 位成员。"
++
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr "交换软件包的简单方式,无需 Shell 操作"
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr "将一个源当作一个软件包组,这样我们就可以一次性安装/移除全部软件包。"
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] "%d 软件包将被更新"
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] "%d 个软件包将被移除/重安装"
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] "%d 个软件包将被移除/同步"
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr "不是 %s 的有效子命令"
  
  #. This is mainly for PackageSackError from rpmdb.
  #: ../yummain.py:84
@@ -167208,47 +175640,41 @@ index 9fe1a5c..b889204 100644
  msgid " Yum checks failed: %s"
 -msgstr ""
 +msgstr " Yum 检查失败:%s"
-+
-+#: ../yummain.py:110
-+msgid "No read/execute access in current directory, moving to /"
-+msgstr "没有当前目录的读、执行权限,移动到 /"
-+
-+#: ../yummain.py:118
-+msgid "No getcwd() access in current directory, moving to /"
-+msgstr "当前目录没有 getcwd() 权限,移动到/"
-+
-+#: ../yummain.py:130
-+msgid "Can't create lock file; exiting"
-+msgstr "不能创建锁文件,退出"
  
 -#: ../yummain.py:114
-+#: ../yummain.py:134
- msgid ""
- "Another app is currently holding the yum lock; waiting for it to exit..."
- msgstr "另外一个程序锁定了 yum;等待它退出……"
+-msgid ""
+-"Another app is currently holding the yum lock; waiting for it to exit..."
+-msgstr "另外一个程序锁定了 yum;等待它退出……"
++#: ../yummain.py:98
++msgid "No read/execute access in current directory, moving to /"
++msgstr "没有当前目录的读、执行权限,正在移动至 /"
  
 -#: ../yummain.py:120
 -msgid "Can't create lock file; exiting"
 -msgstr ""
--
++#: ../yummain.py:106
++msgid "No getcwd() access in current directory, moving to /"
++msgstr "当前目录没有 getcwd() 权限,移动到/"
+ 
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
- msgstr "解决依赖关系"
+-msgstr "解决依赖关系"
++msgstr "正在解决依赖关系"
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 -msgstr ""
 +msgid ""
 +"Your transaction was saved, rerun it with:\n"
 +" yum load-transaction %s"
-+msgstr "事务已保存,返回:\n yum 加载事务 %s"
++msgstr "您的事务已保存,请执行:\n yum load-transaction %s 重新执行该事务"
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -167267,7 +175693,8 @@ index 9fe1a5c..b889204 100644
 -#: ../yum/depsolve.py:99
 +#: ../yum/depsolve.py:143
  msgid "Setting up TransactionSets before config class is up"
- msgstr "在配置可用前设置事务集"
+-msgstr "在配置可用前设置事务集"
++msgstr "正在配置可用前设置事务集"
  
 -#: ../yum/depsolve.py:153
 +#: ../yum/depsolve.py:200
@@ -167288,7 +175715,7 @@ index 9fe1a5c..b889204 100644
  msgstr "成员:%s"
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr "%s 转为安装"
@@ -167332,7 +175759,8 @@ index 9fe1a5c..b889204 100644
 +#: ../yum/depsolve.py:419
  #, python-format
  msgid "Potential Provider: %s"
- msgstr " 可能的提供者:%s"
+-msgstr " 可能的提供者:%s"
++msgstr " 可能提供者:%s"
  
 -#: ../yum/depsolve.py:380
 +#: ../yum/depsolve.py:442
@@ -167345,7 +175773,7 @@ index 9fe1a5c..b889204 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr "提供 %s 的软件包使用的模式:%s"
-@@ -2101,1000 +2189,1067 @@ msgstr "提供 %s 的软件包使用的模式:%s"
+@@ -2101,1007 +2309,1162 @@ 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 :(
@@ -167357,131 +175785,151 @@ index 9fe1a5c..b889204 100644
 +msgstr "尝试升级 %s 来解决依赖"
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
 -msgstr ""
-+msgstr "未为 %s 找到更新路径。失败!"
++msgstr "失败!未找到 %s 的更新路径。"
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr "未找到适用于 %s 的更新途径。无法满足需求:%s!"
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr "适用于 %s 的更新。未满足需求:%s !"
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
- msgstr "事务:%s 软件包要求删除 %s"
+-msgstr "事务:%s 软件包要求删除 %s"
++msgstr "事务信息:%s 要求删除 %s"
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
- msgstr "事务:令 %s 被 %s 取代以解决依赖关系。"
+-msgstr "事务:令 %s 被 %s 取代以解决依赖关系。"
++msgstr "事务信息:令 %s 被 %s 取代以解决依赖关系。"
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
- msgstr "事务:更新 %s 以解决依赖。"
+-msgstr "事务:更新 %s 以解决依赖。"
++msgstr "事务信息:更新 %s 以解决依赖关系。"
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr "无法找到 %s 依赖的更新路径"
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr "快速匹配 %s 到 %s 的需求"
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr "提供 %s 的软件包存在而且已被安装,不再检测。"
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
- msgstr "可能解决依赖的 %s 软件包已经有更新的版本存在于事务中了。"
+-msgstr "可能解决依赖的 %s 软件包已经有更新的版本存在于事务中了。"
++msgstr "可能解决依赖的 %s 软件包已经有较新的版本存在于事务中。"
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr "可能解决依赖的 %s 软件包已经有更新的版本安装过了。"
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr "%s 已包含在事务中,不再重复"
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
- msgstr "事务:将 %s 作为 %s 的更新"
+-msgstr "事务:将 %s 作为 %s 的更新"
++msgstr "事务信息:正在将 %s 标记为 %s 的更新"
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
- msgstr "事务:将 %s 作为 %s 安装"
+-msgstr "事务:将 %s 作为 %s 安装"
++msgstr "事务信息:正在将 %s 标记为 %s 的安装依赖"
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
- msgstr "成功 - 空的事务"
+-msgstr "成功 - 空的事务"
++msgstr "成功 - 空事务"
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr "重新开始循环"
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr "依赖进程即将完成"
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr "成功 - 依赖关系解决"
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
- msgstr "检查 %s 的依赖关系"
+-msgstr "检查 %s 的依赖关系"
++msgstr "正在检查 %s 的依赖关系"
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
- msgstr "搜索 %s 作为 %s 的依赖关系"
+-msgstr "搜索 %s 作为 %s 的依赖关系"
++msgstr "正在查找 %s 作为 %s 的依赖关系"
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
- msgstr "为 %s 运行 compare_providers()"
+-msgstr "为 %s 运行 compare_providers()"
++msgstr "正在为 %s 运行 compare_providers()"
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr "%s 提供了更好的架构选择"
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr "%s 取代 %s"
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -167489,28 +175937,29 @@ index 9fe1a5c..b889204 100644
 -msgstr ""
 -"比较 %s 与 %s 架构差异,在 %s\n"
 -"  胜者:%s"
-+msgstr "比较 %s 与 %s 架构差异,在 %s\n  胜者:%s"
++msgstr "比较 %s 与 %s 架构差异,在 %s\n  最终选择:%s"
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
- msgstr "%s 和 %s 具有共同的源代码 rpm"
+-msgstr "%s 和 %s 具有共同的源代码 rpm"
++msgstr "%s 和 %s 具有共同的源代码 RPM"
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr "基础软件包 %s 由于 %s 已经安装"
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr "共同的前缀 %s 存在于 %s 和 %s 之间"
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 -msgstr "最小需求: %d"
@@ -167518,179 +175967,237 @@ index 9fe1a5c..b889204 100644
 +msgstr "提供 vercmp: %s"
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
- msgstr " 胜者:%s"
+-msgstr " 胜者:%s"
++msgstr " 最终选择:%s"
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
-+msgstr "最小需求: %d"
++msgstr "最小需求:%d"
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr " 负者( %d):%s"
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr "最佳顺序:%s"
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr "doConfigSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr "跳过不可读源 %s"
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
- msgstr "软件仓库 %r:传递配置出错: %s"
+-msgstr "软件仓库 %r:传递配置出错: %s"
++msgstr "软件源 %r:传递配置出错: %s"
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
- msgstr "仓库 %r 在配置文件中未指定名字,使用标识代替"
+-msgstr "仓库 %r 在配置文件中未指定名字,使用标识代替"
++msgstr "源 %r 在配置文件中未指定名字,使用标识代替"
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr "插件已初始化"
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr "doRpmDBSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
- msgstr "读入本地 RPMDB"
+-msgstr "读入本地 RPMDB"
++msgstr "正在读取本地 RPM 数据库"
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr "doRepoSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr "doSackSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr "设置软件包群集"
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
- msgstr "仓库 %s 的对象缺少 _resetSack 方法\n"
+-msgstr "仓库 %s 的对象缺少 _resetSack 方法\n"
++msgstr "源 %s 的对象缺少 _resetSack 方法\n"
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
- msgstr "因此仓库无法复位。\n"
+-msgstr "因此仓库无法复位。\n"
++msgstr "因此源无法复位。\n"
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr "doUpdateSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
- msgstr "建立升级对象"
+-msgstr "建立升级对象"
++msgstr "正在建立升级对象"
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr "doGroupSetup() 将从未来版本的 Yum 中去掉。\n"
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
- msgstr "获取组的元数据"
+-msgstr "获取组的元数据"
++msgstr "正在获取组的元数据"
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
- msgstr "从仓库 %s 中添加组文件"
+-msgstr "从仓库 %s 中添加组文件"
++msgstr "正在从源 %s 中添加组文件"
++
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr "从源获取分组文件失败:%s"
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
- msgstr "为仓库 %s 添加组文件时失败:%s"
+-msgstr "为仓库 %s 添加组文件时失败:%s"
++msgstr "为源 %s 添加组文件时失败:%s"
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
- msgstr "在现有的仓库中没有提供组"
+-msgstr "在现有的仓库中没有提供组"
++msgstr "目前所有源中没有可用的组"
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
- msgstr "获取软件包标签元数据"
+-msgstr "获取软件包标签元数据"
++msgstr "正在获取软件包标签元数据"
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
- msgstr "从软件仓库添加标签:%s"
+-msgstr "从软件仓库添加标签:%s"
++msgstr "正在从软件源添加标签:%s"
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
- msgstr "从软件仓库添加软件包标签失败:%s - %s"
+-msgstr "从软件仓库添加软件包标签失败:%s - %s"
++msgstr "从软件源添加软件包标签失败:%s - %s"
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr "正在导入额外的文件列表信息"
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
- msgstr "程序 %s%s%s 位于 yum-utils 软件包。"
+-msgstr "程序 %s%s%s 位于 yum-utils 软件包。"
++msgstr "程序 %s%s%s 在 yum-utils 软件包中。"
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
 -msgstr ""
-+msgstr "--> 找到剩下的不需要的依赖"
++msgstr "--> 正在查找剩下不需要的依赖"
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
--msgstr ""
 +msgstr "保护多库版本:%s != %s"
++
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
+ msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr "尝试移除受保护的 \"%s\""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
@@ -167700,52 +176207,55 @@ index 9fe1a5c..b889204 100644
 +msgstr "\n因为依赖关系问题而跳过的软件包:"
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr "    %s 来自 %s"
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
- msgstr "** 发现 %d 个已存在的 rpmdb 问题, 'yum check' 输出如下:"
+-msgstr "** 发现 %d 个已存在的 rpmdb 问题, 'yum check' 输出如下:"
++msgstr "** 发现 %d 个已存在的 RPM 数据库问题, 'yum check' 输出如下:"
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
- msgstr "警告:RPMDB 在 yum 以外被修改。"
+-msgstr "警告:RPMDB 在 yum 以外被修改。"
++msgstr "警告:RPM 数据库已被非 yum 程序修改。"
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr "缺失的需求"
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr "安装冲突"
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr "警告:事务过程中出现 scriptlet 或其他非致命性错误。"
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr "事务无法启动:"
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
- msgstr "不能执行事务。"
+-msgstr "不能执行事务。"
++msgstr "无法执行事务。"
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr "移除事务文件 %s 失败"
@@ -167753,7 +176263,7 @@ index 9fe1a5c..b889204 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr "%s 假定被安装但并非这样!"
@@ -167764,50 +176274,50 @@ index 9fe1a5c..b889204 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr "%s 假定被移除但并非这样!"
  
 -#: ../yum/__init__.py:1768
--#, python-format
++#. Another copy seems to be running.
++#: ../yum/__init__.py:2004
+ #, python-format
 -msgid "Could not open lock %s: %s"
 -msgstr "不能打开锁 %s : %s"
--
--#. Whoa. What the heck happened?
++msgid "Existing lock %s: another copy is running as pid %s."
++msgstr "%s 已被锁定,PID 为 %s 的另一个程序正在运行。"
+ 
+ #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
--#, python-format
++#: ../yum/__init__.py:2053
+ #, python-format
 -msgid "Unable to check if PID %s is active"
 -msgstr "无法检测 PID %s 是否激活"
--
- #. Another copy seems to be running.
++msgid "Could not create lock at %s: %s "
++msgstr "无法在 %s 中创建锁:%s"
+ 
+-#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2065
  #, python-format
- msgid "Existing lock %s: another copy is running as pid %s."
- msgstr "%s 已被锁定,PID 为 %s 的另一个程序正在运行。"
+-msgid "Existing lock %s: another copy is running as pid %s."
+-msgstr "%s 已被锁定,PID 为 %s 的另一个程序正在运行。"
++msgid "Could not open lock %s: %s"
++msgstr "无法打开锁 %s : %s"
  
++#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2082
  #, python-format
- msgid "Could not create lock at %s: %s "
- msgstr "无法在 %s 创建锁:%s"
+-msgid "Could not create lock at %s: %s "
+-msgstr "无法在 %s 创建锁:%s"
++msgid "Unable to check if PID %s is active"
++msgstr "无法检测 PID %s 是否为活动"
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2029
-+#, python-format
-+msgid "Could not open lock %s: %s"
-+msgstr "不能打开锁 %s : %s"
-+
-+#. The pid doesn't exist
-+#. Whoa. What the heck happened?
-+#: ../yum/__init__.py:2046
-+#, python-format
-+msgid "Unable to check if PID %s is active"
-+msgstr "无法检测 PID %s 是否激活"
-+
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -167815,23 +176325,24 @@ index 9fe1a5c..b889204 100644
  msgstr "软件包与预期下载的不符。建议:运行 yum --enablerepo=%s clean metadata"
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr "无法执行校验和"
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
- msgstr "软件包校验和不匹配"
+-msgstr "软件包校验和不匹配"
++msgstr "软件包校验不匹配"
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, 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:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr "使用本地的 %s 副本"
@@ -167846,69 +176357,75 @@ index 9fe1a5c..b889204 100644
 -"下载目录 %s 空间不足\n"
 -"    * 空闲   %s\n"
 -"    * 需要 %s"
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
++msgstr "正在退出,因为指定了 --downloadonly"
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr "文件头不完整。"
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
- msgstr "文件头不在本地缓存中,但是因为处于只使用缓存的模式,无法下载 %s"
+-msgstr "文件头不在本地缓存中,但是因为处于只使用缓存的模式,无法下载 %s"
++msgstr "文件头不在本地缓存中,由于处于只使用缓存模式,无法下载 %s"
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
- msgstr "%s 的公钥没有安装"
+-msgstr "%s 的公钥没有安装"
++msgstr "%s 的公钥尚未安装"
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr "打开软件包 %s 出现问题"
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr "%s 的公钥不可信任"
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr "软件包 %s 没有签名"
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr "无法删除 %s"
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr "%s 已删除"
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr "无法删除 %s 文件 %s"
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr "%s 文件 %s 已删除"
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr "%d %s 文件已删除"
@@ -167917,142 +176434,162 @@ index 9fe1a5c..b889204 100644
 +msgstr[0] "%d %s 文件已移除"
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr "群集中有超过一个相同的匹配 %s"
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, 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:2997
++#: ../yum/__init__.py:3096
  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:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr "搜索 %d 个软件包"
 +msgid "Searching %d package"
 +msgid_plural "Searching %d packages"
-+msgstr[0] "搜索到 %d 个包"
++msgstr[0] "正在搜索,已搜索 %d 个软件包"
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr "搜索 %s 软件包"
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr "在文件中搜索"
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr "在可提供的依赖中搜索"
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  msgid "No group data available for configured repositories"
- msgstr "配置的软件仓库不包含组数据"
+-msgstr "配置的软件仓库不包含组数据"
++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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr "不存在 %s 组"
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr "软件包 %s 没有包含在 %s 组中"
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr "跳过 %s 软件包,它是 %s 组的"
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr "添加包 %s 从组 %s 中"
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr "找不到名为 %s 的软件包来安装"
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
 -msgstr ""
-+msgstr "警告:%s 组不包含任何包。"
++msgid "Warning: Group %s does not have any packages to install."
++msgstr "警告:分组 %s 不包含任何可安装软件包。"
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
 -msgstr ""
 +msgstr "组 %s 拥有 %u 有条件的包可能安装。"
++
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr "跳过分组 %s,来自环境 %s 中"
  
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr "群集中找不到软件包 %s"
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
- msgstr "rpmdb 中找不到软件包元组 %s"
+-msgstr "rpmdb 中找不到软件包元组 %s"
++msgstr "RPM 数据库中找不到软件包元组 %s"
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
 -msgstr ""
-+msgstr "来自 %s 的无效版本标志"
++msgstr "来自 %s 的无效版本标识"
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
- msgstr "找不到 %s 软件包"
+-msgstr "找不到 %s 软件包"
++msgstr "找不到软件包 %s"
++
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr "警告:环境分组 %s 不存在。"
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr "软件包: %s - 无法与 %s 同时安装"
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
- msgstr "不是一个软件包对象的实例"
+-msgstr "不是一个软件包对象的实例"
++msgstr "不是一个软件包对象实例"
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr "没有指定要安装的内容"
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr "检测 %s 提供的依赖或文件"
@@ -168064,30 +176601,33 @@ index 9fe1a5c..b889204 100644
 -msgstr "参数 %s 没有匹配"
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
- msgstr "包 %s 已安装且不可用"
+-msgstr "包 %s 已安装且不可用"
++msgstr "软件包 %s 已安装但不可用"
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
- msgstr "没有包可供安装"
+-msgstr "没有包可供安装"
++msgstr "没有软件包可供安装"
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
- msgstr "软件包 %s 已包含在事务中"
+-msgstr "软件包 %s 已包含在事务中"
++msgstr "软件包:%s - 已包含在事务集中"
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr "软件包 %s 被已安装的 %s 取代"
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -168095,124 +176635,133 @@ index 9fe1a5c..b889204 100644
  msgstr "软件包 %s 已经被 %s 取代,但是取代的软件包并未满足需求"
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, 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:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
- msgstr "包 %s 已安装并且是最新版本"
+-msgstr "包 %s 已安装并且是最新版本"
++msgstr "软件包 %s 已安装并且是最新版本"
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
- msgstr "匹配 %s 的软件包已经安装。检查更新。"
+-msgstr "匹配 %s 的软件包已经安装。检查更新。"
++msgstr "匹配 %s 的软件包已经安装。正在检查更新。"
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
- msgstr "全部升级"
+-msgstr "全部升级"
++msgstr "更新全部"
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr "%s"
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr "参数 %s 没有匹配"
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
-+msgstr "没有匹配的升级包: %s"
++msgstr "没有匹配的可升级软件包:%s"
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
- msgstr "包已被取代:%s.%s %s:%s-%s"
+-msgstr "包已被取代:%s.%s %s:%s-%s"
++msgstr "软件包已被取代:%s.%s %s:%s-%s"
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr "未更新已被废除的软件包:%s"
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, python-format
  msgid "Not Updating Package that is already updated: %s.%s %s:%s-%s"
- msgstr "未更新已被更新的软件包:%s.%s %s:%s-%s"
+-msgstr "未更新已被更新的软件包:%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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
-+msgstr "没有匹配的包移除: %s"
++msgstr "没有匹配的可移除软件包:%s"
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr "跳过正在运行的内核:%ss"
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr "从操作中移除 %s"
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr "无法打开 %s ,跳过。"
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
- msgstr "诊断 %s: %s"
+-msgstr "诊断 %s: %s"
++msgstr "正在检查 %s: %s"
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
- msgstr "无法本地安装 deltarpm %s ,跳过。"
+-msgstr "无法本地安装 deltarpm %s ,跳过。"
++msgstr "无法本地安装 delta RPM:%s ,跳过。"
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
- msgstr "无法添加软件包 %s 到操作中。不属于可兼容的架构:%s"
+-msgstr "无法添加软件包 %s 到操作中。不属于可兼容的架构:%s"
++msgstr "无法添加软件包 %s 至操作中。不属于任何可兼容的架构:%s"
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
- msgstr "无法安装软件包 %s 。被已安装软件包 %s 标识为废除"
+-msgstr "无法安装软件包 %s 。被已安装软件包 %s 标识为废除"
++msgstr "无法安装软件包 %s 。被已安装软件包 %s 标记为废除"
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -168220,130 +176769,132 @@ index 9fe1a5c..b889204 100644
  msgstr "软件包 %s 没有安装,不能更新。运行 yum install 安装它。"
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
  " instead."
 -msgstr ""
-+msgstr "软件包 %s.%s 未安装,不能更新它。替代方案是运行 yum install 安装。"
++msgstr "软件包 %s.%s 未被安装,不能更新它。请通过运行 yum install 来完成安装。"
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr "排除 %s"
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr "%s 将被安装"
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr "%s 将作为 %s 的更新"
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr "%s:不更新已安装的软件包。"
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr "无法打开文件:%s。跳过。"
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr "覆盖安装出错:没有匹配的要删除的软件包"
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr "重新安装出错:没有匹配的软件包 %s 来安装"
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr "没有可供降级的软件包"
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr "软件包 %s 允许同时安装多个版本,跳过"
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr "未找到匹配的可用软件包:%s"
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
- msgstr "只更新可用软件包:%s"
+-msgstr "只更新可用软件包:%s"
++msgstr "只升级可用软件包:%s"
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr "降级失败:%s"
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
-+msgstr "更新失败: %s"
++msgstr "升级失败:%s"
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
 -msgstr ""
 +msgstr "从 %s 检索密钥"
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, python-format
  msgid "GPG key signature on key %s does not match CA Key for repo: %s"
 -msgstr ""
-+msgstr "密钥 %s 上的 GPG 密钥签名与 %s 仓库的 CA 密钥不匹配"
++msgstr "密钥 %s 上的 GPG 密钥签名与 %s 源的 CA 密钥不匹配"
  
 -#: ../yum/__init__.py:4559
-+#: ../yum/__init__.py:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
 -msgstr ""
 +msgstr "GPG 密钥签名验证与 CA 密钥冲突"
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
- msgstr "来自 %s 的不可用 GPG 密钥:%s"
+-msgstr "来自 %s 的不可用 GPG 密钥:%s"
++msgstr "来自 %s 的无效 GPG 密钥:%s"
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr "GPG 密钥传递失败:密钥未包含值 %s"
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -168358,7 +176909,7 @@ index 9fe1a5c..b889204 100644
 +msgstr "导入 %s key 0x%s:\n 用户ID     : \"%s\"\n 指纹       : %s\n 软件包     : %s (%s)\n 来自       : %s"
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -168369,8 +176920,9 @@ index 9fe1a5c..b889204 100644
 +" Fingerprint: %s\n"
 +" From       : %s"
 +msgstr "导入 %s key 0x%s:\n 用户ID     : \"%s\"\n 指纹       : %s\n 来自       : %s"
-+
-+#: ../yum/__init__.py:5379
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -168378,54 +176930,55 @@ index 9fe1a5c..b889204 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
-+msgstr "\n\n\n 失败的包是: %s\n GPG  密钥配置为: %s\n"
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr "\n\n\n 失败的软件包是:%s\n GPG  密钥配置为:%s\n"
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr "%s 的 GPG 密钥(0x%s)已安装"
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
- msgstr "导入密钥失败(代码 %d)"
+-msgstr "导入密钥失败(代码 %d)"
++msgstr "导入密钥失败(错误代码 %d)"
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr "导入密钥成功"
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
 -msgstr ""
-+msgstr "没有安装任何键"
++msgstr "尚未安装任何密钥"
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, 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 是否配置正确。"
+-msgstr "仓库 \"%s\" 的 GPG 密钥已安装,但是不适用于此软件包。请检查仓库的公钥 URL 是否配置正确。"
++msgstr "源 \"%s\" 的 GPG 密钥已安装,但是不适用于此软件包。请检查源的公钥 URL 是否配置正确。"
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr "导入的密钥没有用处,错误的密钥?"
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr "否"
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr "是"
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -168434,9 +176987,9 @@ index 9fe1a5c..b889204 100644
 +" CA Key: %s\n"
 +" Failing repo is: %s\n"
 +" GPG Keys are configured as: %s\n"
-+msgstr "\n\n\n CA 密钥: %s\n失败的 repo 是: %s\n GPG 密钥配置为: %s\n"
++msgstr "\n\n\n CA 密钥:%s\n失败的源是:%s\n GPG 密钥配置为:%s\n"
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr "位于 %s 的 GPG 密钥 (0x%s) 已经导入"
@@ -168444,20 +176997,20 @@ index 9fe1a5c..b889204 100644
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
 -msgstr "导入密钥失败"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
 +msgstr "密钥 %s 导入失败"
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
 -msgstr ""
-+msgstr "没有对 %s 仓库安装任何键"
++msgstr "没有安装 %s 源的任何密钥"
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -168465,135 +177018,138 @@ index 9fe1a5c..b889204 100644
 -msgstr ""
 -"\"%s\" 仓库列出的 GPG 密钥已经安装但并不正确。\n"
 -"请检查此仓库正确的密钥 URL 配置。"
-+msgstr "\"%s\" 仓库列出的 GPG 密钥已经安装但并不正确。\n请检查此仓库正确的密钥 URL 配置。"
++msgstr "\"%s\" 源列出的 GPG 密钥已经安装但并不正确。\n请检查此源正确的密钥 URL 配置。"
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
- msgstr "不能发现合适的镜像。"
+-msgstr "不能发现合适的镜像。"
++msgstr "无法发现合适的镜像。"
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr "下载软件包时出错。"
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr "请在 %s 报告这个错误"
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr "事务测试出错:"
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr "不能置缓存目录:%s"
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
 -msgstr ""
-+msgstr "依赖没有解决。将不会保存未解决事务。"
++msgstr "尚未解决依赖关系。将不会保存未解决事务。"
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
 -msgstr ""
 +msgstr "不能保存事务文件 %s:%s"
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
 -msgstr ""
-+msgstr "不能访问或都去已存事务 %s:%s"
- 
+-
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
+-msgid "rpmdb ver mismatched saved transaction version, "
 -msgstr ""
-+msgstr "RPM数据库版本与已存事务版本不匹配, "
- 
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
+-msgid " ignoring, as requested."
 -msgstr ""
-+msgstr " 忽略,作为请求。"
++msgstr "不能访问或读取事务 %s:%s"
  
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
 -msgstr ""
-+msgstr " 终止。"
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
++msgstr "RPM 数据库版本与已保存事务中的版本不匹配,"
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
 -msgstr ""
 +msgstr "不能找到 tsflags 或 tsflags 非整数。"
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
 -msgstr ""
 +msgstr "在未知当前状态找到 txmbr:%s"
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, 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:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
 -msgstr ""
-+msgstr "不能找到 txmbr:来自原地 %s 的 %s"
++msgstr "不能找到 txmbr:来自原始 %s 的 %s"
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
 -msgstr ""
-+msgstr "事务成员、关系缺失或 ts 已被修改,"
++msgstr "事务成员、关系缺失或本身已被修改,"
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
 -msgstr ""
-+msgstr " 忽略,作为请求。您必须解决依赖!"
++msgstr " 由于请求正在忽略。您必须重新解决依赖!"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr "%s 已经被访问过了,不能删除。"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
-+msgstr "正在检查%s的revdeps"
++msgstr "正在检查 %s 的 revdeps"
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr "%s 的revdep %s 是用户安装的。"
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr "%s 由于某软件包的需要将被安装"
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
-+msgstr "%s 没有用户安装的 revdeps."
++msgstr "%s 没有用户安装的 revdeps。"
  
  #. Mostly copied from YumOutput._outKeyValFill()
 -#: ../yum/plugins.py:209
@@ -168611,7 +177167,8 @@ index 9fe1a5c..b889204 100644
 +#: ../yum/plugins.py:262
  #, python-format
  msgid "Not loading \"%s\" plugin, as it is disabled"
- msgstr "\"%s\" 插件被禁用,因此未加载它"
+-msgstr "\"%s\" 插件被禁用,因此未加载它"
++msgstr "\"%s\" 插件已被禁用,因此未加载"
  
  #. Give full backtrace:
 -#: ../yum/plugins.py:271
@@ -168690,16 +177247,18 @@ index 9fe1a5c..b889204 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr "%s 提供 %s 但不能被找到"
-@@ -3103,6 +3258,19 @@ msgstr "%s 提供 %s 但不能被找到"
- msgid "Repackaging"
- msgstr "正在重新包装"
  
+ #: ../yum/rpmtrans.py:80
+ msgid "Repackaging"
+-msgstr "正在重新包装"
++msgstr "正在重新打包"
++
 +#: ../yum/rpmtrans.py:149
 +#, python-format
 +msgid "Verify: %u/%u: %s"
 +msgstr "验证: %u/%u: %s"
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -168707,20 +177266,39 @@ index 9fe1a5c..b889204 100644
 +"    * needed %s"
 +msgstr "下载目录 %s 空间不足\n    * 空闲   %s\n    * 需要 %s"
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr "软件包与预期下载的不符。"
+ 
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
- msgid "Header cannot be opened or does not match %s, %s."
-@@ -3131,5 +3299,3 @@ msgstr "损坏的文件头 %s"
+@@ -3115,11 +3478,11 @@ msgstr "RPM %s md5 校验失败"
+ 
+ #: ../rpmUtils/oldUtils.py:151
+ msgid "Could not open RPM database for reading. Perhaps it is already in use?"
+-msgstr "无法打开 RPM 数据库以读取。也许它已在使用中?"
++msgstr "无法打开并读取 RPM 数据库。也许它正在被使用?"
+ 
+ #: ../rpmUtils/oldUtils.py:183
+ msgid "Got an empty Header, something has gone wrong"
+-msgstr "下载到空的文件头,有错误发生"
++msgstr "有错误产生,获得文件头为空"
+ 
+ #: ../rpmUtils/oldUtils.py:253 ../rpmUtils/oldUtils.py:260
+ #: ../rpmUtils/oldUtils.py:263 ../rpmUtils/oldUtils.py:266
+@@ -3130,6 +3493,4 @@ msgstr "损坏的文件头 %s"
+ #: ../rpmUtils/oldUtils.py:281
  #, python-format
  msgid "Error opening rpm %s - error %s"
- msgstr "打开 RPM %s 错误 - 错误 %s"
+-msgstr "打开 RPM %s 错误 - 错误 %s"
 -
 -
++msgstr "打开 RPM %s 发生错误 - 错误 %s"
 diff --git a/po/zh_TW.po b/po/zh_TW.po
-index 704a726..540062c 100644
+index 704a726..c0daa52 100644
 --- a/po/zh_TW.po
 +++ b/po/zh_TW.po
-@@ -2,427 +2,446 @@
+@@ -2,427 +2,497 @@
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  # This file is distributed under the same license as the PACKAGE package.
  # 
@@ -168734,8 +177312,8 @@ index 704a726..540062c 100644
 -"Last-Translator: skvidal <skvidal at fedoraproject.org>\n"
 -"Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/yum/team/zh_TW/)\n"
 +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n"
-+"POT-Creation-Date: 2012-03-01 16:05-0500\n"
-+"PO-Revision-Date: 2012-03-01 21:05+0000\n"
++"POT-Creation-Date: 2013-01-30 09:08-0500\n"
++"PO-Revision-Date: 2013-01-30 14:08+0000\n"
 +"Last-Translator: james <james at fedoraproject.org>\n"
 +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/yum/language/zh_TW/)\n"
  "MIME-Version: 1.0\n"
@@ -168746,7 +177324,7 @@ index 704a726..540062c 100644
 +"Plural-Forms: nplurals=1; plural=0;\n"
  
 -#: ../callback.py:48 ../output.py:1037 ../yum/rpmtrans.py:73
-+#: ../callback.py:45 ../output.py:1440 ../yum/rpmtrans.py:73
++#: ../callback.py:45 ../output.py:1502 ../yum/rpmtrans.py:73
  msgid "Updating"
  msgstr ""
  
@@ -168757,31 +177335,31 @@ index 704a726..540062c 100644
  
 -#: ../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:1439
-+#: ../output.py:2854 ../yum/rpmtrans.py:75 ../yum/rpmtrans.py:76
++#: ../callback.py:47 ../callback.py:48 ../callback.py:50 ../output.py:1501
++#: ../output.py:2922 ../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:2312 ../yum/rpmtrans.py:77
++#: ../callback.py:49 ../callback.py:55 ../output.py:2379 ../yum/rpmtrans.py:77
  msgid "Obsoleted"
  msgstr ""
  
 -#: ../callback.py:54 ../output.py:1169 ../output.py:1686 ../output.py:1847
-+#: ../callback.py:51 ../output.py:1608 ../output.py:2155 ../output.py:2319
++#: ../callback.py:51 ../output.py:1670 ../output.py:2222 ../output.py:2386
  msgid "Updated"
  msgstr ""
  
 -#: ../callback.py:55 ../output.py:1685
-+#: ../callback.py:52 ../output.py:2154
++#: ../callback.py:52 ../output.py:2221
  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:1606
-+#: ../output.py:2154 ../output.py:2156 ../output.py:2826
++#: ../callback.py:53 ../callback.py:54 ../callback.py:56 ../output.py:1668
++#: ../output.py:2221 ../output.py:2223 ../output.py:2894
  msgid "Installed"
  msgstr ""
  
@@ -168808,7 +177386,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../callback.py:217 ../output.py:1038 ../output.py:2193
-+#: ../callback.py:229 ../output.py:1441 ../output.py:2829
++#: ../callback.py:229 ../output.py:1503 ../output.py:2897
  msgid "Removing"
  msgstr ""
  
@@ -168818,69 +177396,69 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../cli.py:115
-+#: ../cli.py:120
++#: ../cli.py:122
  #, python-format
  msgid "Command \"%s\" already defined"
  msgstr ""
  
 -#: ../cli.py:127
-+#: ../cli.py:135
++#: ../cli.py:137
  msgid "Setting up repositories"
  msgstr ""
  
 -#: ../cli.py:138
-+#: ../cli.py:146
++#: ../cli.py:148
  msgid "Reading repository metadata in from local files"
  msgstr ""
  
 -#: ../cli.py:245 ../utils.py:281
-+#: ../cli.py:271 ../cli.py:275 ../utils.py:346
++#: ../cli.py:273 ../cli.py:277 ../utils.py:320
  #, python-format
  msgid "Config Error: %s"
  msgstr ""
  
 -#: ../cli.py:248 ../cli.py:1584 ../utils.py:284
-+#: ../cli.py:278 ../cli.py:1987 ../utils.py:349
++#: ../cli.py:280 ../cli.py:2206 ../utils.py:323
  #, python-format
  msgid "Options Error: %s"
  msgstr ""
  
 -#: ../cli.py:293
-+#: ../cli.py:325
++#: ../cli.py:327
  #, python-format
  msgid "  Installed: %s-%s at %s"
  msgstr ""
  
 -#: ../cli.py:295
-+#: ../cli.py:327
++#: ../cli.py:329
  #, python-format
  msgid "  Built    : %s at %s"
  msgstr ""
  
 -#: ../cli.py:297
-+#: ../cli.py:329
++#: ../cli.py:331
  #, python-format
  msgid "  Committed: %s at %s"
  msgstr ""
  
 -#: ../cli.py:336
-+#: ../cli.py:370
++#: ../cli.py:372
  msgid "You need to give some command"
  msgstr ""
  
 -#: ../cli.py:350
-+#: ../cli.py:384
++#: ../cli.py:386
  #, python-format
  msgid "No such command: %s. Please use %s --help"
  msgstr ""
  
 -#: ../cli.py:400
-+#: ../cli.py:442
++#: ../cli.py:444
  msgid "Disk Requirements:\n"
  msgstr ""
  
 -#: ../cli.py:402
-+#: ../cli.py:444
++#: ../cli.py:446
  #, python-format
  msgid "  At least %dMB more space needed on the %s filesystem.\n"
 -msgstr ""
@@ -168890,120 +177468,146 @@ index 704a726..540062c 100644
  #. TODO: simplify the dependency errors?
  #. Fixup the summary
 -#: ../cli.py:407
-+#: ../cli.py:449
++#: ../cli.py:451
  msgid ""
  "Error Summary\n"
  "-------------\n"
  msgstr ""
  
 -#: ../cli.py:450
-+#: ../cli.py:497
++#: ../cli.py:472
++msgid "Can't create lock file; exiting"
++msgstr ""
++
++#: ../cli.py:479
++msgid ""
++"Another app is currently holding the yum lock; exiting as configured by "
++"exit_on_lock"
++msgstr ""
++
++#: ../cli.py:532
  msgid "Trying to run the transaction but nothing to do. Exiting."
  msgstr ""
  
 -#: ../cli.py:497
-+#: ../cli.py:542
++#: ../cli.py:577
++msgid "future rpmdb ver mismatched saved transaction version,"
++msgstr ""
++
++#: ../cli.py:579 ../yum/__init__.py:6523
++msgid " ignoring, as requested."
++msgstr ""
++
++#: ../cli.py:582 ../yum/__init__.py:6526 ../yum/__init__.py:6673
++msgid " aborting."
++msgstr ""
++
++#: ../cli.py:588
  msgid "Exiting on user Command"
  msgstr ""
  
 -#: ../cli.py:501
-+#: ../cli.py:546
++#: ../cli.py:592
  msgid "Downloading Packages:"
  msgstr ""
  
 -#: ../cli.py:506
-+#: ../cli.py:551
++#: ../cli.py:597
  msgid "Error Downloading Packages:\n"
  msgstr ""
  
 -#: ../cli.py:525 ../yum/__init__.py:4967
-+#: ../cli.py:570 ../yum/__init__.py:5748
++#: ../cli.py:616 ../yum/__init__.py:6215
  msgid "Running Transaction Check"
  msgstr ""
  
 -#: ../cli.py:534 ../yum/__init__.py:4976
-+#: ../cli.py:579 ../yum/__init__.py:5757
++#: ../cli.py:625 ../yum/__init__.py:6224
  msgid "ERROR You need to update rpm to handle:"
  msgstr ""
  
 -#: ../cli.py:536 ../yum/__init__.py:4979
-+#: ../cli.py:581 ../yum/__init__.py:5760
++#: ../cli.py:627 ../yum/__init__.py:6227
  msgid "ERROR with transaction check vs depsolve:"
  msgstr ""
  
 -#: ../cli.py:542
-+#: ../cli.py:587
++#: ../cli.py:633
  msgid "RPM needs to be updated"
  msgstr ""
  
 -#: ../cli.py:543
-+#: ../cli.py:588
++#: ../cli.py:634
  #, python-format
  msgid "Please report this error in %s"
  msgstr ""
  
 -#: ../cli.py:549
-+#: ../cli.py:594
++#: ../cli.py:640
  msgid "Running Transaction Test"
  msgstr ""
  
 -#: ../cli.py:561
-+#: ../cli.py:606
++#: ../cli.py:652
  msgid "Transaction Check Error:\n"
  msgstr ""
  
 -#: ../cli.py:568
-+#: ../cli.py:613
++#: ../cli.py:659
  msgid "Transaction Test Succeeded"
  msgstr ""
  
 -#: ../cli.py:600
-+#: ../cli.py:645
++#: ../cli.py:691
  msgid "Running Transaction"
  msgstr ""
  
 -#: ../cli.py:630
-+#: ../cli.py:678
++#: ../cli.py:724
  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
++#: ../cli.py:743 ../cli.py:786
  msgid "  * Maybe you meant: "
  msgstr ""
  
 -#: ../cli.py:675 ../cli.py:683
-+#: ../cli.py:723 ../cli.py:731
++#: ../cli.py:769 ../cli.py:777
  #, 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:835 ../cli.py:1071
++#: ../cli.py:783 ../cli.py:891 ../cli.py:1158
  #, python-format
  msgid "No package %s%s%s available."
  msgstr ""
  
 -#: ../cli.py:729 ../cli.py:973
 -msgid "Package(s) to install"
--msgstr ""
-+#: ../cli.py:844
++#: ../cli.py:871 ../cli.py:881 ../cli.py:1101 ../cli.py:1111
 +#, python-format
-+msgid "%d package to install"
-+msgid_plural "%d packages to install"
-+msgstr[0] ""
++msgid "Bad %s argument %s."
+ msgstr ""
  
 -#: ../cli.py:732 ../cli.py:733 ../cli.py:914 ../cli.py:948 ../cli.py:974
 -#: ../yumcommands.py:190
-+#: ../cli.py:847 ../cli.py:848 ../cli.py:1078 ../cli.py:1128 ../cli.py:1163
-+#: ../yumcommands.py:271
++#: ../cli.py:900 ../yumcommands.py:3331
++#, python-format
++msgid "%d package to install"
++msgid_plural "%d packages to install"
++msgstr[0] ""
++
++#: ../cli.py:903 ../cli.py:904 ../cli.py:1169 ../cli.py:1170 ../cli.py:1224
++#: ../cli.py:1225 ../cli.py:1260 ../yumcommands.py:323 ../yumcommands.py:3419
  msgid "Nothing to do"
  msgstr ""
  
 -#: ../cli.py:767
-+#: ../cli.py:897
++#: ../cli.py:953
  #, python-format
 -msgid "%d packages marked for Update"
 -msgstr ""
@@ -169012,12 +177616,12 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:770
-+#: ../cli.py:899
++#: ../cli.py:955
  msgid "No Packages marked for Update"
  msgstr ""
  
 -#: ../cli.py:866
-+#: ../cli.py:1011
++#: ../cli.py:1067
  #, python-format
 -msgid "%d packages marked for Distribution Synchronization"
 -msgstr ""
@@ -169026,12 +177630,12 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:869
-+#: ../cli.py:1013
++#: ../cli.py:1069
  msgid "No Packages marked for Distribution Synchronization"
  msgstr ""
  
 -#: ../cli.py:885
-+#: ../cli.py:1038
++#: ../cli.py:1124
  #, python-format
 -msgid "%d packages marked for removal"
 -msgstr ""
@@ -169040,27 +177644,27 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:888
-+#: ../cli.py:1040
++#: ../cli.py:1126
  msgid "No Packages marked for removal"
  msgstr ""
  
 -#: ../cli.py:913
 -msgid "Package(s) to downgrade"
 -msgstr ""
-+#: ../cli.py:1077
++#: ../cli.py:1166
 +#, python-format
 +msgid "%d package to downgrade"
 +msgid_plural "%d packages to downgrade"
 +msgstr[0] ""
  
 -#: ../cli.py:938
-+#: ../cli.py:1114
++#: ../cli.py:1207
  #, python-format
  msgid " (from %s)"
  msgstr ""
  
 -#: ../cli.py:939
-+#: ../cli.py:1115
++#: ../cli.py:1208
  #, python-format
  msgid "Installed package %s%s%s%s not available."
  msgstr ""
@@ -169068,65 +177672,65 @@ index 704a726..540062c 100644
 -#: ../cli.py:947
 -msgid "Package(s) to reinstall"
 -msgstr ""
-+#: ../cli.py:1127
++#: ../cli.py:1221
 +#, python-format
 +msgid "%d package to reinstall"
 +msgid_plural "%d packages to reinstall"
 +msgstr[0] ""
  
 -#: ../cli.py:960
-+#: ../cli.py:1149
++#: ../cli.py:1246
  msgid "No Packages Provided"
  msgstr ""
  
 -#: ../cli.py:1058
-+#: ../cli.py:1162
++#: ../cli.py:1259
 +msgid "Package(s) to install"
 +msgstr ""
 +
-+#: ../cli.py:1269
++#: ../cli.py:1367
  #, python-format
  msgid "N/S Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1075
-+#: ../cli.py:1286
++#: ../cli.py:1384
  #, python-format
  msgid "  Name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1077
-+#: ../cli.py:1288
++#: ../cli.py:1386
  #, python-format
  msgid ""
  "  Full name and summary matches %sonly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1095
-+#: ../cli.py:1306
++#: ../cli.py:1404
  #, python-format
  msgid "Matched: %s"
  msgstr ""
  
 -#: ../cli.py:1102
-+#: ../cli.py:1313
++#: ../cli.py:1411
  #, python-format
  msgid "  Name and summary matches %smostly%s, use \"search all\" for everything."
  msgstr ""
  
 -#: ../cli.py:1106
-+#: ../cli.py:1317
++#: ../cli.py:1415
  #, python-format
  msgid "Warning: No matches found for: %s"
  msgstr ""
  
 -#: ../cli.py:1109
-+#: ../cli.py:1320
++#: ../cli.py:1418
  msgid "No Matches found"
  msgstr ""
  
 -#: ../cli.py:1174
-+#: ../cli.py:1436
++#: ../cli.py:1536
  #, python-format
 -msgid "No Package Found for %s"
 +msgid ""
@@ -169135,114 +177739,139 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../cli.py:1184
-+#: ../cli.py:1472
++#: ../cli.py:1572
  msgid "Cleaning repos: "
  msgstr ""
  
 -#: ../cli.py:1189
-+#: ../cli.py:1477
++#: ../cli.py:1577
  msgid "Cleaning up Everything"
  msgstr ""
  
 -#: ../cli.py:1205
-+#: ../cli.py:1493
++#: ../cli.py:1593
  msgid "Cleaning up Headers"
  msgstr ""
  
 -#: ../cli.py:1208
-+#: ../cli.py:1496
++#: ../cli.py:1596
  msgid "Cleaning up Packages"
  msgstr ""
  
 -#: ../cli.py:1211
-+#: ../cli.py:1499
++#: ../cli.py:1599
  msgid "Cleaning up xml metadata"
  msgstr ""
  
 -#: ../cli.py:1214
-+#: ../cli.py:1502
++#: ../cli.py:1602
  msgid "Cleaning up database cache"
  msgstr ""
  
 -#: ../cli.py:1217
-+#: ../cli.py:1505
++#: ../cli.py:1605
  msgid "Cleaning up expire-cache metadata"
  msgstr ""
  
 -#: ../cli.py:1220
-+#: ../cli.py:1508
++#: ../cli.py:1608
  msgid "Cleaning up cached rpmdb data"
  msgstr ""
  
 -#: ../cli.py:1223
-+#: ../cli.py:1511
++#: ../cli.py:1611
  msgid "Cleaning up plugins"
  msgstr ""
  
 -#: ../cli.py:1247
-+#: ../cli.py:1547
- #, python-format
- msgid "Warning: No groups match: %s"
+-#, python-format
+-msgid "Warning: No groups match: %s"
++#: ../cli.py:1727
++msgid "Installed Environment Groups:"
++msgstr ""
++
++#: ../cli.py:1728
++msgid "Available Environment Groups:"
  msgstr ""
  
 -#: ../cli.py:1264
-+#: ../cli.py:1564 ../cli.py:1622
++#: ../cli.py:1735
  msgid "Installed Groups:"
  msgstr ""
  
 -#: ../cli.py:1270
-+#: ../cli.py:1570 ../cli.py:1628
++#: ../cli.py:1742
  msgid "Installed Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1276
-+#: ../cli.py:1576 ../cli.py:1634
++#: ../cli.py:1749
  msgid "Available Groups:"
  msgstr ""
  
 -#: ../cli.py:1282
-+#: ../cli.py:1582 ../cli.py:1640
++#: ../cli.py:1756
  msgid "Available Language Groups:"
  msgstr ""
  
 -#: ../cli.py:1285
-+#: ../cli.py:1585 ../cli.py:1642
++#: ../cli.py:1759
++#, python-format
++msgid "Warning: No Environments/Groups match: %s"
++msgstr ""
++
++#: ../cli.py:1763
  msgid "Done"
  msgstr ""
  
 -#: ../cli.py:1296 ../cli.py:1314 ../cli.py:1320 ../yum/__init__.py:3313
-+#: ../cli.py:1665 ../cli.py:1693 ../cli.py:1699 ../yum/__init__.py:3909
++#: ../cli.py:1818
++#, python-format
++msgid "Warning: Group/Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1859
++#, python-format
++msgid "Warning: Environment %s does not exist."
++msgstr ""
++
++#: ../cli.py:1873 ../cli.py:1879 ../yum/__init__.py:4254
  #, python-format
  msgid "Warning: Group %s does not exist."
  msgstr ""
  
 -#: ../cli.py:1324
-+#: ../cli.py:1703
++#: ../cli.py:1883
  msgid "No packages in any requested group available to install or update"
  msgstr ""
  
 -#: ../cli.py:1326
-+#: ../cli.py:1705
++#: ../cli.py:1885
  #, python-format
 -msgid "%d Package(s) to Install"
--msgstr ""
 +msgid "%d package to Install"
 +msgid_plural "%d packages to Install"
 +msgstr[0] ""
++
++#: ../cli.py:1919 ../yum/__init__.py:3536 ../yum/__init__.py:3766
++#: ../yum/__init__.py:3824
++#, python-format
++msgid "No Environment named %s exists"
+ msgstr ""
  
 -#: ../cli.py:1336 ../yum/__init__.py:3325
-+#: ../cli.py:1725 ../yum/__init__.py:3925
++#: ../cli.py:1935 ../yum/__init__.py:4282
  #, python-format
  msgid "No group named %s exists"
  msgstr ""
  
 -#: ../cli.py:1342
-+#: ../cli.py:1731
++#: ../cli.py:1945
  msgid "No packages to remove from groups"
  msgstr ""
  
 -#: ../cli.py:1344
-+#: ../cli.py:1733
++#: ../cli.py:1947 ../yumcommands.py:3351
  #, python-format
 -msgid "%d Package(s) to remove"
 -msgstr ""
@@ -169251,392 +177880,400 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../cli.py:1386
-+#: ../cli.py:1774
++#: ../cli.py:1988
  #, python-format
  msgid "Package %s is already installed, skipping"
  msgstr ""
  
 -#: ../cli.py:1397
-+#: ../cli.py:1785
++#: ../cli.py:1999
  #, 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:1811
++#: ../cli.py:2025
  #, python-format
  msgid "No other %s installed, adding to list for potential install"
  msgstr ""
  
 -#: ../cli.py:1443
-+#: ../cli.py:1831
++#: ../cli.py:2045
  msgid "Plugin Options"
  msgstr ""
  
 -#: ../cli.py:1451
-+#: ../cli.py:1843
++#: ../cli.py:2057
  #, python-format
  msgid "Command line error: %s"
  msgstr ""
  
 -#: ../cli.py:1467
-+#: ../cli.py:1865
++#: ../cli.py:2079
  #, python-format
  msgid ""
  "\n"
-@@ -430,438 +449,451 @@ msgid ""
+@@ -430,438 +500,483 @@ msgid ""
  "%s: %s option requires an argument"
  msgstr ""
  
 -#: ../cli.py:1521
-+#: ../cli.py:1928
++#: ../cli.py:2147
  msgid "--color takes one of: auto, always, never"
  msgstr ""
  
  #. We have a relative installroot ... haha
 -#: ../cli.py:1596
-+#: ../cli.py:1999
++#: ../cli.py:2218
  #, python-format
  msgid "--installroot must be an absolute path: %s"
  msgstr ""
  
 -#: ../cli.py:1642
-+#: ../cli.py:2053
++#: ../cli.py:2272
  msgid "show this help message and exit"
  msgstr ""
  
 -#: ../cli.py:1646
-+#: ../cli.py:2057
++#: ../cli.py:2276
  msgid "be tolerant of errors"
  msgstr ""
  
 -#: ../cli.py:1649
-+#: ../cli.py:2060
++#: ../cli.py:2279
  msgid "run entirely from system cache, don't update cache"
  msgstr ""
  
 -#: ../cli.py:1652
-+#: ../cli.py:2063
++#: ../cli.py:2282
  msgid "config file location"
  msgstr ""
  
 -#: ../cli.py:1655
-+#: ../cli.py:2066
++#: ../cli.py:2285
  msgid "maximum command wait time"
  msgstr ""
  
 -#: ../cli.py:1657
-+#: ../cli.py:2068
++#: ../cli.py:2287
  msgid "debugging output level"
  msgstr ""
  
 -#: ../cli.py:1661
-+#: ../cli.py:2072
++#: ../cli.py:2291
  msgid "show duplicates, in repos, in list/search commands"
  msgstr ""
  
 -#: ../cli.py:1663
-+#: ../cli.py:2074
++#: ../cli.py:2296
  msgid "error output level"
  msgstr ""
  
 -#: ../cli.py:1666
-+#: ../cli.py:2077
++#: ../cli.py:2299
  msgid "debugging output level for rpm"
  msgstr ""
  
 -#: ../cli.py:1669
-+#: ../cli.py:2080
++#: ../cli.py:2302
  msgid "quiet operation"
  msgstr ""
  
 -#: ../cli.py:1671
-+#: ../cli.py:2082
++#: ../cli.py:2304
  msgid "verbose operation"
  msgstr ""
  
 -#: ../cli.py:1673
-+#: ../cli.py:2084
++#: ../cli.py:2306
  msgid "answer yes for all questions"
  msgstr ""
  
 -#: ../cli.py:1675
-+#: ../cli.py:2086
++#: ../cli.py:2308
 +msgid "answer no for all questions"
 +msgstr ""
 +
-+#: ../cli.py:2090
++#: ../cli.py:2312
  msgid "show Yum version and exit"
  msgstr ""
  
 -#: ../cli.py:1676
-+#: ../cli.py:2091
++#: ../cli.py:2313
  msgid "set install root"
  msgstr ""
  
 -#: ../cli.py:1680
-+#: ../cli.py:2095
++#: ../cli.py:2317
  msgid "enable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1684
-+#: ../cli.py:2099
++#: ../cli.py:2321
  msgid "disable one or more repositories (wildcards allowed)"
  msgstr ""
  
 -#: ../cli.py:1687
-+#: ../cli.py:2102
++#: ../cli.py:2324
  msgid "exclude package(s) by name or glob"
  msgstr ""
  
 -#: ../cli.py:1689
-+#: ../cli.py:2104
++#: ../cli.py:2326
  msgid "disable exclude from main, for a repo or for everything"
  msgstr ""
  
 -#: ../cli.py:1692
-+#: ../cli.py:2107
++#: ../cli.py:2329
  msgid "enable obsoletes processing during updates"
  msgstr ""
  
 -#: ../cli.py:1694
-+#: ../cli.py:2109
++#: ../cli.py:2331
  msgid "disable Yum plugins"
  msgstr ""
  
 -#: ../cli.py:1696
-+#: ../cli.py:2111
++#: ../cli.py:2333
  msgid "disable gpg signature checking"
  msgstr ""
  
 -#: ../cli.py:1698
-+#: ../cli.py:2113
++#: ../cli.py:2335
  msgid "disable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1701
-+#: ../cli.py:2116
++#: ../cli.py:2338
  msgid "enable plugins by name"
  msgstr ""
  
 -#: ../cli.py:1704
-+#: ../cli.py:2119
++#: ../cli.py:2341
  msgid "skip packages with depsolving problems"
  msgstr ""
  
 -#: ../cli.py:1706
-+#: ../cli.py:2121
++#: ../cli.py:2343
  msgid "control whether color is used"
  msgstr ""
  
 -#: ../cli.py:1708
-+#: ../cli.py:2123
++#: ../cli.py:2345
  msgid "set value of $releasever in yum config and repo files"
  msgstr ""
  
 -#: ../cli.py:1710
-+#: ../cli.py:2125
++#: ../cli.py:2347
++msgid "don't update, just download"
++msgstr ""
++
++#: ../cli.py:2349
++msgid "specifies an alternate directory to store packages"
++msgstr ""
++
++#: ../cli.py:2351
  msgid "set arbitrary config and repo options"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jan"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Feb"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Mar"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Apr"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "May"
  msgstr ""
  
 -#: ../output.py:307
-+#: ../output.py:453
++#: ../output.py:458
  msgid "Jun"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Jul"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Aug"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Sep"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Oct"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Nov"
  msgstr ""
  
 -#: ../output.py:308
-+#: ../output.py:454
++#: ../output.py:459
  msgid "Dec"
  msgstr ""
  
 -#: ../output.py:318
-+#: ../output.py:468
++#: ../output.py:473
  msgid "Trying other mirror."
  msgstr ""
  
 -#: ../output.py:581
-+#: ../output.py:811
++#: ../output.py:816
  #, python-format
  msgid "Name        : %s%s%s"
  msgstr ""
  
 -#: ../output.py:582
-+#: ../output.py:812
++#: ../output.py:817
  #, python-format
  msgid "Arch        : %s"
  msgstr ""
  
 -#: ../output.py:584
-+#: ../output.py:814
++#: ../output.py:819
  #, python-format
  msgid "Epoch       : %s"
  msgstr ""
  
 -#: ../output.py:585
-+#: ../output.py:815
++#: ../output.py:820
  #, python-format
  msgid "Version     : %s"
  msgstr ""
  
 -#: ../output.py:586
-+#: ../output.py:816
++#: ../output.py:821
  #, python-format
  msgid "Release     : %s"
  msgstr ""
  
 -#: ../output.py:587
-+#: ../output.py:817
++#: ../output.py:822
  #, python-format
  msgid "Size        : %s"
  msgstr ""
  
 -#: ../output.py:588 ../output.py:900
-+#: ../output.py:818 ../output.py:1267
++#: ../output.py:823 ../output.py:1329
  #, python-format
  msgid "Repo        : %s"
  msgstr ""
  
 -#: ../output.py:590
-+#: ../output.py:820
++#: ../output.py:825
  #, python-format
  msgid "From repo   : %s"
  msgstr ""
  
 -#: ../output.py:592
-+#: ../output.py:822
++#: ../output.py:827
  #, python-format
  msgid "Committer   : %s"
  msgstr ""
  
 -#: ../output.py:593
-+#: ../output.py:823
++#: ../output.py:828
  #, python-format
  msgid "Committime  : %s"
  msgstr ""
  
 -#: ../output.py:594
-+#: ../output.py:824
++#: ../output.py:829
  #, python-format
  msgid "Buildtime   : %s"
  msgstr ""
  
 -#: ../output.py:596
-+#: ../output.py:826
++#: ../output.py:831
  #, python-format
  msgid "Install time: %s"
  msgstr ""
  
 -#: ../output.py:604
-+#: ../output.py:834
++#: ../output.py:839
  #, python-format
  msgid "Installed by: %s"
  msgstr ""
  
 -#: ../output.py:611
-+#: ../output.py:841
++#: ../output.py:846
  #, python-format
  msgid "Changed by  : %s"
  msgstr ""
  
 -#: ../output.py:612
-+#: ../output.py:842
++#: ../output.py:847
  msgid "Summary     : "
  msgstr ""
  
 -#: ../output.py:614 ../output.py:913
-+#: ../output.py:844 ../output.py:1283
++#: ../output.py:849 ../output.py:1345
  #, python-format
  msgid "URL         : %s"
  msgstr ""
  
 -#: ../output.py:615
-+#: ../output.py:845
++#: ../output.py:850
  msgid "License     : "
  msgstr ""
  
 -#: ../output.py:616 ../output.py:910
-+#: ../output.py:846 ../output.py:1280
++#: ../output.py:851 ../output.py:1342
  msgid "Description : "
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "y"
  msgstr ""
  
 -#: ../output.py:684
-+#: ../output.py:964
++#: ../output.py:969
  msgid "yes"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "n"
  msgstr ""
  
 -#: ../output.py:685
-+#: ../output.py:965
++#: ../output.py:970
  msgid "no"
  msgstr ""
  
 -#: ../output.py:689
-+#: ../output.py:969
++#: ../output.py:974
  msgid "Is this ok [y/N]: "
  msgstr ""
  
 -#: ../output.py:777
-+#: ../output.py:1092
++#: ../output.py:1097
  #, python-format
  msgid ""
  "\n"
@@ -169644,551 +178281,575 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../output.py:781
-+#: ../output.py:1096
++#: ../output.py:1101
  #, python-format
  msgid " Group-Id: %s"
  msgstr ""
  
 -#: ../output.py:786
-+#: ../output.py:1117
++#: ../output.py:1122 ../output.py:1169
  #, python-format
  msgid " Description: %s"
  msgstr ""
  
 -#: ../output.py:788
-+#: ../output.py:1119
++#: ../output.py:1124
  #, python-format
  msgid " Language: %s"
  msgstr ""
  
 -#: ../output.py:790
-+#: ../output.py:1121
++#: ../output.py:1126
  msgid " Mandatory Packages:"
  msgstr ""
  
 -#: ../output.py:791
-+#: ../output.py:1122
++#: ../output.py:1127
  msgid " Default Packages:"
  msgstr ""
  
 -#: ../output.py:792
-+#: ../output.py:1123
++#: ../output.py:1128
  msgid " Optional Packages:"
  msgstr ""
  
 -#: ../output.py:793
-+#: ../output.py:1124
++#: ../output.py:1129
  msgid " Conditional Packages:"
  msgstr ""
  
 -#: ../output.py:814
-+#: ../output.py:1142
++#: ../output.py:1147
 +msgid " Installed Packages:"
 +msgstr ""
 +
-+#: ../output.py:1155
++#: ../output.py:1157
++#, python-format
++msgid ""
++"\n"
++"Environment Group: %s"
++msgstr ""
++
++#: ../output.py:1158
++#, python-format
++msgid " Environment-Id: %s"
++msgstr ""
++
++#: ../output.py:1191
++msgid " Mandatory Groups:"
++msgstr ""
++
++#: ../output.py:1192
++msgid " Optional Groups:"
++msgstr ""
++
++#: ../output.py:1205
++msgid " Installed Groups:"
++msgstr ""
++
++#: ../output.py:1217
  #, python-format
  msgid "package: %s"
  msgstr ""
  
 -#: ../output.py:816
-+#: ../output.py:1157
++#: ../output.py:1219
  msgid "  No dependencies for this package"
  msgstr ""
  
 -#: ../output.py:821
-+#: ../output.py:1162
++#: ../output.py:1224
  #, python-format
  msgid "  dependency: %s"
  msgstr ""
  
 -#: ../output.py:823
-+#: ../output.py:1164
++#: ../output.py:1226
  msgid "   Unsatisfied dependency"
  msgstr ""
  
 -#: ../output.py:901
-+#: ../output.py:1275
++#: ../output.py:1337
  msgid "Matched from:"
  msgstr ""
  
 -#: ../output.py:916
-+#: ../output.py:1286
++#: ../output.py:1348
  #, python-format
  msgid "License     : %s"
  msgstr ""
  
 -#: ../output.py:919
-+#: ../output.py:1289
++#: ../output.py:1351
  #, python-format
  msgid "Filename    : %s"
  msgstr ""
  
 -#: ../output.py:923
-+#: ../output.py:1298
++#: ../output.py:1360
 +msgid "Provides    : "
 +msgstr ""
 +
-+#: ../output.py:1301
++#: ../output.py:1363
  msgid "Other       : "
  msgstr ""
  
 -#: ../output.py:966
-+#: ../output.py:1364
++#: ../output.py:1426
  msgid "There was an error calculating total download size"
  msgstr ""
  
 -#: ../output.py:971
-+#: ../output.py:1369
++#: ../output.py:1431
  #, python-format
  msgid "Total size: %s"
  msgstr ""
  
 -#: ../output.py:974
-+#: ../output.py:1371
++#: ../output.py:1433
  #, python-format
  msgid "Total download size: %s"
  msgstr ""
  
 -#: ../output.py:978 ../output.py:998
-+#: ../output.py:1374 ../output.py:1397 ../output.py:1401
++#: ../output.py:1436 ../output.py:1459 ../output.py:1463
  #, python-format
  msgid "Installed size: %s"
  msgstr ""
  
 -#: ../output.py:994
-+#: ../output.py:1392
++#: ../output.py:1454
  msgid "There was an error calculating installed size"
  msgstr ""
  
 -#: ../output.py:1039
-+#: ../output.py:1442
++#: ../output.py:1504
  msgid "Reinstalling"
  msgstr ""
  
 -#: ../output.py:1040
-+#: ../output.py:1443
++#: ../output.py:1505
  msgid "Downgrading"
  msgstr ""
  
 -#: ../output.py:1041
-+#: ../output.py:1444
++#: ../output.py:1506
  msgid "Installing for dependencies"
  msgstr ""
  
 -#: ../output.py:1042
-+#: ../output.py:1445
++#: ../output.py:1507
  msgid "Updating for dependencies"
  msgstr ""
  
 -#: ../output.py:1043
-+#: ../output.py:1446
++#: ../output.py:1508
  msgid "Removing for dependencies"
  msgstr ""
  
 -#: ../output.py:1050 ../output.py:1171
-+#: ../output.py:1453 ../output.py:1514 ../output.py:1610
++#: ../output.py:1515 ../output.py:1576 ../output.py:1672
  msgid "Skipped (dependency problems)"
  msgstr ""
  
 -#: ../output.py:1052 ../output.py:1687
-+#: ../output.py:1455 ../output.py:1515 ../output.py:2156
++#: ../output.py:1517 ../output.py:1577 ../output.py:2223
  msgid "Not installed"
  msgstr ""
  
 -#: ../output.py:1053
-+#: ../output.py:1456 ../output.py:1516
++#: ../output.py:1518 ../output.py:1578
  msgid "Not available"
  msgstr ""
  
 -#: ../output.py:1075 ../output.py:2024
-+#: ../output.py:1478 ../output.py:1526 ../output.py:1542 ../output.py:2514
++#: ../output.py:1540 ../output.py:1588 ../output.py:1604 ../output.py:2581
  msgid "Package"
 -msgstr ""
 +msgid_plural "Packages"
 +msgstr[0] ""
  
 -#: ../output.py:1075
-+#: ../output.py:1478
++#: ../output.py:1540
  msgid "Arch"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Version"
  msgstr ""
  
 -#: ../output.py:1076
-+#: ../output.py:1479
++#: ../output.py:1541
  msgid "Repository"
  msgstr ""
  
 -#: ../output.py:1077
-+#: ../output.py:1480
++#: ../output.py:1542
  msgid "Size"
  msgstr ""
  
 -#: ../output.py:1089
-+#: ../output.py:1492
++#: ../output.py:1554
  #, python-format
  msgid "     replacing  %s%s%s.%s %s\n"
  msgstr ""
  
 -#: ../output.py:1098
-+#: ../output.py:1501
++#: ../output.py:1563
  #, python-format
  msgid ""
  "\n"
-@@ -869,57 +901,57 @@ msgid ""
+@@ -869,57 +984,57 @@ msgid ""
  "%s\n"
  msgstr ""
  
 -#: ../output.py:1109
 -#, python-format
 -msgid "Install   %5.5s Package(s)\n"
-+#: ../output.py:1506 ../output.py:2309 ../output.py:2310
++#: ../output.py:1568 ../output.py:2376 ../output.py:2377
 +msgid "Install"
  msgstr ""
  
 -#: ../output.py:1113
 -#, python-format
 -msgid "Upgrade   %5.5s Package(s)\n"
-+#: ../output.py:1508
++#: ../output.py:1570
 +msgid "Upgrade"
  msgstr ""
  
 -#: ../output.py:1117
 -#, python-format
 -msgid "Remove    %5.5s Package(s)\n"
-+#: ../output.py:1510
++#: ../output.py:1572
 +msgid "Remove"
  msgstr ""
  
 -#: ../output.py:1121
 -#, python-format
 -msgid "Reinstall %5.5s Package(s)\n"
-+#: ../output.py:1512 ../output.py:2315
++#: ../output.py:1574 ../output.py:2382
 +msgid "Reinstall"
  msgstr ""
  
 -#: ../output.py:1125
 -#, python-format
 -msgid "Downgrade %5.5s Package(s)\n"
-+#: ../output.py:1513 ../output.py:2316
++#: ../output.py:1575 ../output.py:2383
 +msgid "Downgrade"
  msgstr ""
  
 -#: ../output.py:1165
-+#: ../output.py:1544
++#: ../output.py:1606
 +msgid "Dependent package"
 +msgid_plural "Dependent packages"
 +msgstr[0] ""
 +
-+#: ../output.py:1604
++#: ../output.py:1666
  msgid "Removed"
  msgstr ""
  
 -#: ../output.py:1166
-+#: ../output.py:1605
++#: ../output.py:1667
  msgid "Dependency Removed"
  msgstr ""
  
 -#: ../output.py:1168
-+#: ../output.py:1607
++#: ../output.py:1669
  msgid "Dependency Installed"
  msgstr ""
  
 -#: ../output.py:1170
-+#: ../output.py:1609
++#: ../output.py:1671
  msgid "Dependency Updated"
  msgstr ""
  
 -#: ../output.py:1172
-+#: ../output.py:1611
++#: ../output.py:1673
  msgid "Replaced"
  msgstr ""
  
 -#: ../output.py:1173
-+#: ../output.py:1612
++#: ../output.py:1674
  msgid "Failed"
  msgstr ""
  
  #. Delta between C-c's so we treat as exit
 -#: ../output.py:1260
-+#: ../output.py:1699
++#: ../output.py:1764
  msgid "two"
  msgstr ""
  
-@@ -927,7 +959,7 @@ msgstr ""
+@@ -927,7 +1042,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:1710
++#: ../output.py:1775
  #, python-format
  msgid ""
  "\n"
-@@ -935,484 +967,542 @@ msgid ""
+@@ -935,484 +1050,542 @@ msgid ""
  "to exit.\n"
  msgstr ""
  
 -#: ../output.py:1282
-+#: ../output.py:1721
++#: ../output.py:1786
  msgid "user interrupt"
  msgstr ""
  
 -#: ../output.py:1300
-+#: ../output.py:1747
++#: ../output.py:1812
  msgid "Total"
  msgstr ""
  
 -#: ../output.py:1322
-+#: ../output.py:1769
++#: ../output.py:1834
  msgid "I"
  msgstr ""
  
 -#: ../output.py:1323
-+#: ../output.py:1770
++#: ../output.py:1835
  msgid "O"
  msgstr ""
  
 -#: ../output.py:1324
-+#: ../output.py:1771
++#: ../output.py:1836
  msgid "E"
  msgstr ""
  
 -#: ../output.py:1325
-+#: ../output.py:1772
++#: ../output.py:1837
  msgid "R"
  msgstr ""
  
 -#: ../output.py:1326
-+#: ../output.py:1773
++#: ../output.py:1838
  msgid "D"
  msgstr ""
  
 -#: ../output.py:1327
-+#: ../output.py:1774
++#: ../output.py:1839
  msgid "U"
  msgstr ""
  
 -#: ../output.py:1341
-+#: ../output.py:1788
++#: ../output.py:1853
  msgid "<unset>"
  msgstr ""
  
 -#: ../output.py:1342
-+#: ../output.py:1789
++#: ../output.py:1854
  msgid "System"
  msgstr ""
  
 -#: ../output.py:1411
-+#: ../output.py:1858
++#: ../output.py:1923
  #, python-format
  msgid "Skipping merged transaction %d to %d, as it overlaps"
  msgstr ""
  
 -#: ../output.py:1421 ../output.py:1592
-+#: ../output.py:1868 ../output.py:2058
++#: ../output.py:1933 ../output.py:2125
  msgid "No transactions"
  msgstr ""
  
 -#: ../output.py:1446 ../output.py:2013
-+#: ../output.py:1893 ../output.py:2503 ../output.py:2593
++#: ../output.py:1958 ../output.py:2570 ../output.py:2660
  msgid "Bad transaction IDs, or package(s), given"
  msgstr ""
  
 -#: ../output.py:1484
-+#: ../output.py:1940
++#: ../output.py:2007
  msgid "Command line"
  msgstr ""
  
 -#: ../output.py:1486 ../output.py:1908
-+#: ../output.py:1942 ../output.py:2391
++#: ../output.py:2009 ../output.py:2458
  msgid "Login user"
  msgstr ""
  
  #. REALLY Needs to use columns!
 -#: ../output.py:1487 ../output.py:2022
-+#: ../output.py:1943 ../output.py:2512
++#: ../output.py:2010 ../output.py:2579
  msgid "ID"
  msgstr ""
  
 -#: ../output.py:1489
-+#: ../output.py:1945
++#: ../output.py:2012
  msgid "Date and time"
  msgstr ""
  
 -#: ../output.py:1490 ../output.py:1910 ../output.py:2023
-+#: ../output.py:1946 ../output.py:2393 ../output.py:2513
++#: ../output.py:2013 ../output.py:2460 ../output.py:2580
  msgid "Action(s)"
  msgstr ""
  
 -#: ../output.py:1491 ../output.py:1911
-+#: ../output.py:1947 ../output.py:2394
++#: ../output.py:2014 ../output.py:2461
  msgid "Altered"
  msgstr ""
  
 -#: ../output.py:1538
-+#: ../output.py:1994
++#: ../output.py:2061
  msgid "No transaction ID given"
  msgstr ""
  
 -#: ../output.py:1564 ../output.py:1972
-+#: ../output.py:2020 ../output.py:2459
++#: ../output.py:2087 ../output.py:2526
  msgid "Bad transaction ID given"
  msgstr ""
  
 -#: ../output.py:1569
-+#: ../output.py:2025
++#: ../output.py:2092
  msgid "Not found given transaction ID"
  msgstr ""
  
 -#: ../output.py:1577
-+#: ../output.py:2033
++#: ../output.py:2100
  msgid "Found more than one transaction ID!"
  msgstr ""
  
 -#: ../output.py:1618 ../output.py:1980
-+#: ../output.py:2084 ../output.py:2467
++#: ../output.py:2151 ../output.py:2534
  msgid "No transaction ID, or package, given"
  msgstr ""
  
 -#: ../output.py:1686 ../output.py:1845
-+#: ../output.py:2155 ../output.py:2317
++#: ../output.py:2222 ../output.py:2384
  msgid "Downgraded"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Older"
  msgstr ""
  
 -#: ../output.py:1688
-+#: ../output.py:2157
++#: ../output.py:2224
  msgid "Newer"
  msgstr ""
  
 -#: ../output.py:1724 ../output.py:1726
-+#: ../output.py:2194 ../output.py:2196 ../output.py:2614
++#: ../output.py:2261 ../output.py:2263 ../output.py:2681
  msgid "Transaction ID :"
  msgstr ""
  
 -#: ../output.py:1728
-+#: ../output.py:2198 ../output.py:2616
++#: ../output.py:2265 ../output.py:2683
  msgid "Begin time     :"
  msgstr ""
  
 -#: ../output.py:1731 ../output.py:1733
-+#: ../output.py:2201 ../output.py:2203
++#: ../output.py:2268 ../output.py:2270
  msgid "Begin rpmdb    :"
  msgstr ""
  
 -#: ../output.py:1749
-+#: ../output.py:2219
++#: ../output.py:2286
  #, python-format
  msgid "(%u seconds)"
  msgstr ""
  
 -#: ../output.py:1751
-+#: ../output.py:2221
++#: ../output.py:2288
  #, python-format
  msgid "(%u minutes)"
  msgstr ""
  
 -#: ../output.py:1753
-+#: ../output.py:2223
++#: ../output.py:2290
  #, python-format
  msgid "(%u hours)"
  msgstr ""
  
 -#: ../output.py:1755
-+#: ../output.py:2225
++#: ../output.py:2292
  #, python-format
  msgid "(%u days)"
  msgstr ""
  
 -#: ../output.py:1756
-+#: ../output.py:2226
++#: ../output.py:2293
  msgid "End time       :"
  msgstr ""
  
 -#: ../output.py:1759 ../output.py:1761
-+#: ../output.py:2229 ../output.py:2231
++#: ../output.py:2296 ../output.py:2298
  msgid "End rpmdb      :"
  msgstr ""
  
 -#: ../output.py:1764 ../output.py:1766
-+#: ../output.py:2234 ../output.py:2236
++#: ../output.py:2301 ../output.py:2303
  msgid "User           :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1773 ../output.py:1775 ../output.py:1777
 -#: ../output.py:1779
-+#: ../output.py:2240 ../output.py:2243 ../output.py:2245 ../output.py:2247
-+#: ../output.py:2249
++#: ../output.py:2307 ../output.py:2310 ../output.py:2312 ../output.py:2314
++#: ../output.py:2316
  msgid "Return-Code    :"
  msgstr ""
  
 -#: ../output.py:1770 ../output.py:1775
-+#: ../output.py:2240 ../output.py:2245
++#: ../output.py:2307 ../output.py:2312
  msgid "Aborted"
  msgstr ""
  
 -#: ../output.py:1773
-+#: ../output.py:2243
++#: ../output.py:2310
  msgid "Failures:"
  msgstr ""
  
 -#: ../output.py:1777
-+#: ../output.py:2247
++#: ../output.py:2314
  msgid "Failure:"
  msgstr ""
  
 -#: ../output.py:1779
-+#: ../output.py:2249
++#: ../output.py:2316
  msgid "Success"
  msgstr ""
  
 -#: ../output.py:1784 ../output.py:1786
-+#: ../output.py:2254 ../output.py:2256 ../output.py:2645
++#: ../output.py:2321 ../output.py:2323 ../output.py:2712
  msgid "Command Line   :"
  msgstr ""
  
 -#: ../output.py:1795
-+#: ../output.py:2265
++#: ../output.py:2332
  #, python-format
  msgid "Additional non-default information stored: %d"
  msgstr ""
  
  #. This is _possible_, but not common
 -#: ../output.py:1800
-+#: ../output.py:2270
++#: ../output.py:2337
  msgid "Transaction performed with:"
  msgstr ""
  
 -#: ../output.py:1804
-+#: ../output.py:2274
++#: ../output.py:2341
  msgid "Packages Altered:"
  msgstr ""
  
 -#: ../output.py:1808
-+#: ../output.py:2278
++#: ../output.py:2345
  msgid "Packages Skipped:"
  msgstr ""
  
 -#: ../output.py:1814
-+#: ../output.py:2286
++#: ../output.py:2353
  msgid "Rpmdb Problems:"
  msgstr ""
  
 -#: ../output.py:1825
-+#: ../output.py:2297
++#: ../output.py:2364
  msgid "Scriptlet output:"
  msgstr ""
  
 -#: ../output.py:1831
-+#: ../output.py:2303
++#: ../output.py:2370
  msgid "Errors:"
  msgstr ""
  
@@ -170197,17 +178858,17 @@ index 704a726..540062c 100644
 -msgstr ""
 -
 -#: ../output.py:1839
-+#: ../output.py:2311
++#: ../output.py:2378
  msgid "Dep-Install"
  msgstr ""
  
 -#: ../output.py:1841
-+#: ../output.py:2313
++#: ../output.py:2380
  msgid "Obsoleting"
  msgstr ""
  
 -#: ../output.py:1842
-+#: ../output.py:2314
++#: ../output.py:2381
  msgid "Erase"
  msgstr ""
  
@@ -170220,224 +178881,225 @@ index 704a726..540062c 100644
 -msgstr ""
 -
 -#: ../output.py:1846
-+#: ../output.py:2318
++#: ../output.py:2385
  msgid "Update"
  msgstr ""
  
 -#: ../output.py:1909
-+#: ../output.py:2392
++#: ../output.py:2459
  msgid "Time"
  msgstr ""
  
 -#: ../output.py:1935
-+#: ../output.py:2418
++#: ../output.py:2485
  msgid "Last day"
  msgstr ""
  
 -#: ../output.py:1936
-+#: ../output.py:2419
++#: ../output.py:2486
  msgid "Last week"
  msgstr ""
  
 -#: ../output.py:1937
-+#: ../output.py:2420
++#: ../output.py:2487
  msgid "Last 2 weeks"
  msgstr ""
  
  #. US default :p
 -#: ../output.py:1938
-+#: ../output.py:2421
++#: ../output.py:2488
  msgid "Last 3 months"
  msgstr ""
  
 -#: ../output.py:1939
-+#: ../output.py:2422
++#: ../output.py:2489
  msgid "Last 6 months"
  msgstr ""
  
 -#: ../output.py:1940
-+#: ../output.py:2423
++#: ../output.py:2490
  msgid "Last year"
  msgstr ""
  
 -#: ../output.py:1941
-+#: ../output.py:2424
++#: ../output.py:2491
  msgid "Over a year ago"
  msgstr ""
  
 -#: ../output.py:1984
-+#: ../output.py:2471
++#: ../output.py:2538
  #, python-format
  msgid "No Transaction %s found"
  msgstr ""
  
 -#: ../output.py:1990
-+#: ../output.py:2477
++#: ../output.py:2544
  msgid "Transaction ID:"
  msgstr ""
  
 -#: ../output.py:1991
-+#: ../output.py:2478
++#: ../output.py:2545
  msgid "Available additional history information:"
  msgstr ""
  
 -#: ../output.py:2003
-+#: ../output.py:2491
++#: ../output.py:2558
  #, python-format
  msgid "%s: No additional data found by this name"
  msgstr ""
  
 -#: ../output.py:2106
-+#: ../output.py:2617
++#: ../output.py:2684
 +msgid "Package        :"
 +msgstr ""
 +
-+#: ../output.py:2618
++#: ../output.py:2685
 +msgid "State          :"
 +msgstr ""
 +
-+#: ../output.py:2621
++#: ../output.py:2688
 +msgid "Size           :"
 +msgstr ""
 +
-+#: ../output.py:2623
++#: ../output.py:2690
 +msgid "Build host     :"
 +msgstr ""
 +
-+#: ../output.py:2626
++#: ../output.py:2693
 +msgid "Build time     :"
 +msgstr ""
 +
-+#: ../output.py:2628
++#: ../output.py:2695
 +msgid "Packager       :"
 +msgstr ""
 +
-+#: ../output.py:2630
++#: ../output.py:2697
 +msgid "Vendor         :"
 +msgstr ""
 +
-+#: ../output.py:2632
++#: ../output.py:2699
 +msgid "License        :"
 +msgstr ""
 +
-+#: ../output.py:2634
++#: ../output.py:2701
 +msgid "URL            :"
 +msgstr ""
 +
-+#: ../output.py:2636
++#: ../output.py:2703
 +msgid "Source RPM     :"
 +msgstr ""
 +
-+#: ../output.py:2639
++#: ../output.py:2706
 +msgid "Commit Time    :"
 +msgstr ""
 +
-+#: ../output.py:2641
++#: ../output.py:2708
 +msgid "Committer      :"
 +msgstr ""
 +
-+#: ../output.py:2643
++#: ../output.py:2710
 +msgid "Reason         :"
 +msgstr ""
 +
-+#: ../output.py:2647
++#: ../output.py:2714
 +msgid "From repo      :"
 +msgstr ""
 +
-+#: ../output.py:2651
++#: ../output.py:2718
 +msgid "Installed by   :"
 +msgstr ""
 +
-+#: ../output.py:2655
++#: ../output.py:2722
 +msgid "Changed by     :"
 +msgstr ""
 +
-+#: ../output.py:2700
++#: ../output.py:2767
  msgid "installed"
  msgstr ""
  
 -#: ../output.py:2107
-+#: ../output.py:2701
++#: ../output.py:2768
  msgid "an update"
  msgstr ""
  
 -#: ../output.py:2108
-+#: ../output.py:2702
++#: ../output.py:2769
  msgid "erased"
  msgstr ""
  
 -#: ../output.py:2109
-+#: ../output.py:2703
++#: ../output.py:2770
  msgid "reinstalled"
  msgstr ""
  
 -#: ../output.py:2110
-+#: ../output.py:2704
++#: ../output.py:2771
  msgid "a downgrade"
  msgstr ""
  
 -#: ../output.py:2111
-+#: ../output.py:2705
++#: ../output.py:2772
  msgid "obsoleting"
  msgstr ""
  
 -#: ../output.py:2112
-+#: ../output.py:2706
++#: ../output.py:2773
  msgid "updated"
  msgstr ""
  
 -#: ../output.py:2113
-+#: ../output.py:2707
++#: ../output.py:2774
  msgid "obsoleted"
  msgstr ""
  
 -#: ../output.py:2117
-+#: ../output.py:2711
++#: ../output.py:2778
  #, python-format
  msgid "---> Package %s.%s %s:%s-%s will be %s"
  msgstr ""
  
 -#: ../output.py:2124
-+#: ../output.py:2722
++#: ../output.py:2789
  msgid "--> Running transaction check"
  msgstr ""
  
 -#: ../output.py:2129
-+#: ../output.py:2728
++#: ../output.py:2795
  msgid "--> Restarting Dependency Resolution with new changes."
  msgstr ""
  
 -#: ../output.py:2134
-+#: ../output.py:2734
++#: ../output.py:2801
  msgid "--> Finished Dependency Resolution"
  msgstr ""
  
 -#: ../output.py:2139 ../output.py:2144
-+#: ../output.py:2747 ../output.py:2760
++#: ../output.py:2814 ../output.py:2827
  #, python-format
  msgid "--> Processing Dependency: %s for package: %s"
  msgstr ""
  
 -#: ../output.py:2149
-+#: ../output.py:2773
++#: ../output.py:2841
  #, python-format
- msgid "---> Keeping package: %s"
+-msgid "---> Keeping package: %s"
++msgid "---> Keeping package: %s due to %s"
  msgstr ""
  
 -#: ../output.py:2152
-+#: ../output.py:2782
++#: ../output.py:2850
  #, python-format
  msgid "--> Unresolved Dependency: %s"
  msgstr ""
  
 -#: ../output.py:2163
-+#: ../output.py:2799
++#: ../output.py:2867
  #, python-format
  msgid "Package: %s"
  msgstr ""
  
 -#: ../output.py:2165
-+#: ../output.py:2801
++#: ../output.py:2869
  #, python-format
  msgid ""
  "\n"
@@ -170445,7 +179107,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../output.py:2174
-+#: ../output.py:2810
++#: ../output.py:2878
  #, python-format
  msgid ""
  "\n"
@@ -170453,7 +179115,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../output.py:2179
-+#: ../output.py:2815
++#: ../output.py:2883
  #, python-format
  msgid ""
  "\n"
@@ -170461,7 +179123,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../output.py:2181
-+#: ../output.py:2817
++#: ../output.py:2885
  msgid ""
  "\n"
  "        Not found"
@@ -170469,38 +179131,38 @@ index 704a726..540062c 100644
  
  #. These should be the only three things we care about:
 -#: ../output.py:2196
-+#: ../output.py:2832
++#: ../output.py:2900
  msgid "Updated By"
  msgstr ""
  
 -#: ../output.py:2197
-+#: ../output.py:2833
++#: ../output.py:2901
  msgid "Downgraded By"
  msgstr ""
  
 -#: ../output.py:2198
-+#: ../output.py:2834
++#: ../output.py:2902
  msgid "Obsoleted By"
  msgstr ""
  
 -#: ../output.py:2216
-+#: ../output.py:2852
++#: ../output.py:2920
  msgid "Available"
  msgstr ""
  
 -#: ../output.py:2243 ../output.py:2248
-+#: ../output.py:2887 ../output.py:2900
++#: ../output.py:2955 ../output.py:2968
  #, python-format
  msgid "--> Processing Conflict: %s conflicts %s"
  msgstr ""
  
 -#: ../output.py:2252
-+#: ../output.py:2906
++#: ../output.py:2974
  msgid "--> Populating transaction set with selected packages. Please wait."
  msgstr ""
  
 -#: ../output.py:2256
-+#: ../output.py:2915
++#: ../output.py:2983
  #, python-format
  msgid "---> Downloading header for %s to pack into transaction set."
  msgstr ""
@@ -170508,70 +179170,70 @@ index 704a726..540062c 100644
 -#: ../utils.py:99
 +#. self.event(txmbr.name, count, len(base.tsInfo), count, )
 +#. (te_current*100L)/te_total
-+#: ../output.py:3180
++#: ../output.py:3248
 +msgid "Verifying"
 +msgstr ""
 +
-+#: ../utils.py:129
++#: ../utils.py:123
  msgid "Running"
  msgstr ""
  
 -#: ../utils.py:100
-+#: ../utils.py:130
++#: ../utils.py:124
  msgid "Sleeping"
  msgstr ""
  
 -#: ../utils.py:101
-+#: ../utils.py:131
++#: ../utils.py:125
  msgid "Uninterruptible"
  msgstr ""
  
 -#: ../utils.py:102
-+#: ../utils.py:132
++#: ../utils.py:126
  msgid "Zombie"
  msgstr ""
  
 -#: ../utils.py:103
-+#: ../utils.py:133
++#: ../utils.py:127
  msgid "Traced/Stopped"
  msgstr ""
  
 -#: ../utils.py:104 ../yumcommands.py:994
-+#: ../utils.py:134 ../yumcommands.py:1937
++#: ../utils.py:128 ../yumcommands.py:2193
  msgid "Unknown"
  msgstr ""
  
 -#: ../utils.py:115
-+#: ../utils.py:155
++#: ../utils.py:153
  msgid "  The other application is: PackageKit"
  msgstr ""
  
 -#: ../utils.py:117
-+#: ../utils.py:157
++#: ../utils.py:155
  #, python-format
  msgid "  The other application is: %s"
  msgstr ""
  
 -#: ../utils.py:120
-+#: ../utils.py:160
++#: ../utils.py:158
  #, python-format
  msgid "    Memory : %5s RSS (%5sB VSZ)"
  msgstr ""
  
 -#: ../utils.py:125
-+#: ../utils.py:165
++#: ../utils.py:163
  #, python-format
  msgid "    Started: %s - %s ago"
  msgstr ""
  
 -#: ../utils.py:127
-+#: ../utils.py:167
++#: ../utils.py:165
  #, python-format
  msgid "    State  : %s, pid: %d"
  msgstr ""
  
 -#: ../utils.py:170 ../yummain.py:43
-+#: ../utils.py:196 ../yummain.py:43
++#: ../utils.py:194 ../yummain.py:43
  msgid ""
  "\n"
  "\n"
@@ -170579,7 +179241,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../utils.py:176 ../yummain.py:49
-+#: ../utils.py:208 ../yummain.py:49
++#: ../utils.py:206 ../yummain.py:49
  msgid ""
  "\n"
  "\n"
@@ -170587,68 +179249,67 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../utils.py:178 ../yummain.py:51
-+#: ../utils.py:210 ../yummain.py:51
++#: ../utils.py:208 ../yummain.py:51
  #, python-format
  msgid ""
  "\n"
-@@ -1420,47 +1510,47 @@ msgid ""
+@@ -1420,47 +1593,41 @@ msgid ""
  "%s"
  msgstr ""
  
 -#: ../utils.py:228 ../yummain.py:123
-+#: ../utils.py:286 ../yummain.py:140
- msgid ""
- "Another app is currently holding the yum lock; exiting as configured by "
- "exit_on_lock"
- msgstr ""
- 
+-msgid ""
+-"Another app is currently holding the yum lock; exiting as configured by "
+-"exit_on_lock"
+-msgstr ""
+-
 -#: ../utils.py:287
-+#: ../utils.py:352
++#: ../utils.py:326
  #, python-format
  msgid "PluginExit Error: %s"
  msgstr ""
  
 -#: ../utils.py:290
-+#: ../utils.py:355
++#: ../utils.py:329
  #, python-format
  msgid "Yum Error: %s"
  msgstr ""
  
 -#: ../utils.py:342 ../yummain.py:150 ../yummain.py:189
-+#: ../utils.py:413 ../yummain.py:167 ../yummain.py:206
++#: ../utils.py:387 ../yummain.py:147 ../yummain.py:186
  #, python-format
  msgid "Error: %s"
  msgstr ""
  
 -#: ../utils.py:346 ../yummain.py:194
-+#: ../utils.py:417 ../yummain.py:211
++#: ../utils.py:391 ../yummain.py:191
  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
++#: ../utils.py:393 ../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:177 ../yummain.py:219
++#: ../utils.py:400 ../yummain.py:157 ../yummain.py:199
  #, python-format
  msgid "Unknown Error(s): Exit Code: %d:"
  msgstr ""
  
 -#: ../utils.py:361 ../yummain.py:208
-+#: ../utils.py:432 ../yummain.py:225
++#: ../utils.py:406 ../yummain.py:205
  msgid ""
  "\n"
  "Dependencies Resolved"
  msgstr ""
  
 -#: ../utils.py:376 ../yummain.py:234
-+#: ../utils.py:448 ../yummain.py:257
++#: ../utils.py:422 ../yummain.py:237
  msgid "Complete!"
  msgstr ""
  
-@@ -1472,7 +1562,7 @@ msgstr ""
+@@ -1472,7 +1639,7 @@ msgstr ""
  msgid "You need to be root to perform this command."
  msgstr ""
  
@@ -170657,7 +179318,7 @@ index 704a726..540062c 100644
  msgid ""
  "\n"
  "You have enabled checking of packages via GPG keys. This is a good thing. \n"
-@@ -1489,451 +1579,488 @@ msgid ""
+@@ -1489,555 +1656,645 @@ msgid ""
  "For more information contact your distribution or package provider.\n"
  msgstr ""
  
@@ -170674,51 +179335,71 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yumcommands.py:86
-+#: ../yumcommands.py:112
++#: ../yumcommands.py:114
++#, python-format
++msgid "Error: Need at least two packages to %s"
++msgstr ""
++
++#: ../yumcommands.py:129
++#, python-format
++msgid "Error: Need to pass a repoid. and command to %s"
++msgstr ""
++
++#: ../yumcommands.py:136 ../yumcommands.py:142
++#, python-format
++msgid "Error: Need to pass a single valid repoid. to %s"
++msgstr ""
++
++#: ../yumcommands.py:147
++#, python-format
++msgid "Error: Repo %s is not enabled"
++msgstr ""
++
++#: ../yumcommands.py:164
  msgid "Error: Need an item to match"
  msgstr ""
  
 -#: ../yumcommands.py:92
-+#: ../yumcommands.py:126
++#: ../yumcommands.py:178
  msgid "Error: Need a group or list of groups"
  msgstr ""
  
 -#: ../yumcommands.py:101
-+#: ../yumcommands.py:143
++#: ../yumcommands.py:195
  #, python-format
  msgid "Error: clean requires an option: %s"
  msgstr ""
  
 -#: ../yumcommands.py:106
-+#: ../yumcommands.py:149
++#: ../yumcommands.py:201
  #, python-format
  msgid "Error: invalid clean argument: %r"
  msgstr ""
  
 -#: ../yumcommands.py:119
-+#: ../yumcommands.py:164
++#: ../yumcommands.py:216
  msgid "No argument to shell"
  msgstr ""
  
 -#: ../yumcommands.py:121
-+#: ../yumcommands.py:166
++#: ../yumcommands.py:218
  #, python-format
  msgid "Filename passed to shell: %s"
  msgstr ""
  
 -#: ../yumcommands.py:125
-+#: ../yumcommands.py:170
++#: ../yumcommands.py:222
  #, python-format
  msgid "File %s given as argument to shell does not exist."
  msgstr ""
  
 -#: ../yumcommands.py:131
-+#: ../yumcommands.py:176
++#: ../yumcommands.py:228
  msgid "Error: more than one file given as argument to shell."
  msgstr ""
  
 -#: ../yumcommands.py:148
-+#: ../yumcommands.py:195
++#: ../yumcommands.py:247
  msgid ""
  "There are no enabled repos.\n"
  " Run \"yum repolist all\" to see the repos you have.\n"
@@ -170726,200 +179407,200 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yumcommands.py:200
-+#: ../yumcommands.py:303
++#: ../yumcommands.py:383
  msgid "PACKAGE..."
  msgstr ""
  
 -#: ../yumcommands.py:203
-+#: ../yumcommands.py:310
++#: ../yumcommands.py:390
  msgid "Install a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:212
-+#: ../yumcommands.py:341
++#: ../yumcommands.py:421
  msgid "Setting up Install Process"
  msgstr ""
  
 -#: ../yumcommands.py:223 ../yumcommands.py:245
-+#: ../yumcommands.py:367 ../yumcommands.py:427
++#: ../yumcommands.py:447 ../yumcommands.py:507
  msgid "[PACKAGE...]"
  msgstr ""
  
 -#: ../yumcommands.py:226
-+#: ../yumcommands.py:374
++#: ../yumcommands.py:454
  msgid "Update a package or packages on your system"
  msgstr ""
  
 -#: ../yumcommands.py:234
-+#: ../yumcommands.py:403
++#: ../yumcommands.py:483
  msgid "Setting up Update Process"
  msgstr ""
  
 -#: ../yumcommands.py:248
-+#: ../yumcommands.py:434
++#: ../yumcommands.py:514
  msgid "Synchronize installed packages to the latest available versions"
  msgstr ""
  
 -#: ../yumcommands.py:256
-+#: ../yumcommands.py:463
++#: ../yumcommands.py:543
  msgid "Setting up Distribution Synchronization Process"
  msgstr ""
  
 -#: ../yumcommands.py:299
-+#: ../yumcommands.py:523
++#: ../yumcommands.py:603
  msgid "Display details about a package or group of packages"
  msgstr ""
  
 -#: ../yumcommands.py:348
-+#: ../yumcommands.py:591
++#: ../yumcommands.py:672
  msgid "Installed Packages"
  msgstr ""
  
 -#: ../yumcommands.py:356
-+#: ../yumcommands.py:601
++#: ../yumcommands.py:682
  msgid "Available Packages"
  msgstr ""
  
 -#: ../yumcommands.py:360
-+#: ../yumcommands.py:606
++#: ../yumcommands.py:687
  msgid "Extra Packages"
  msgstr ""
  
 -#: ../yumcommands.py:364
-+#: ../yumcommands.py:610
++#: ../yumcommands.py:691
  msgid "Updated Packages"
  msgstr ""
  
  #. This only happens in verbose mode
 -#: ../yumcommands.py:372 ../yumcommands.py:379 ../yumcommands.py:667
-+#: ../yumcommands.py:618 ../yumcommands.py:625 ../yumcommands.py:1329
++#: ../yumcommands.py:699 ../yumcommands.py:706 ../yumcommands.py:1539
  msgid "Obsoleting Packages"
  msgstr ""
  
 -#: ../yumcommands.py:381
-+#: ../yumcommands.py:627
++#: ../yumcommands.py:708
  msgid "Recently Added Packages"
  msgstr ""
  
 -#: ../yumcommands.py:388
-+#: ../yumcommands.py:634
++#: ../yumcommands.py:715
  msgid "No matching Packages to list"
  msgstr ""
  
 -#: ../yumcommands.py:402
-+#: ../yumcommands.py:669
++#: ../yumcommands.py:766
  msgid "List a package or groups of packages"
  msgstr ""
  
 -#: ../yumcommands.py:414
-+#: ../yumcommands.py:698
++#: ../yumcommands.py:797
  msgid "Remove a package or packages from your system"
  msgstr ""
  
 -#: ../yumcommands.py:421
-+#: ../yumcommands.py:727
++#: ../yumcommands.py:845
  msgid "Setting up Remove Process"
  msgstr ""
  
 -#: ../yumcommands.py:435
 -msgid "Setting up Group Process"
-+#: ../yumcommands.py:786
++#: ../yumcommands.py:906
 +msgid "Display, or use, the groups information"
  msgstr ""
  
 -#: ../yumcommands.py:441
 -msgid "No Groups on which to run command"
-+#: ../yumcommands.py:789
++#: ../yumcommands.py:909
 +msgid "Setting up Group Process"
  msgstr ""
  
 -#: ../yumcommands.py:454
 -msgid "List available package groups"
-+#: ../yumcommands.py:795
++#: ../yumcommands.py:915
 +msgid "No Groups on which to run command"
  msgstr ""
  
 -#: ../yumcommands.py:474
 -msgid "Install the packages in a group on your system"
-+#: ../yumcommands.py:859
++#: ../yumcommands.py:985
 +#, python-format
 +msgid "Invalid groups sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:497
 -msgid "Remove the packages in a group from your system"
-+#: ../yumcommands.py:866
++#: ../yumcommands.py:992
 +msgid "There is no installed groups file."
  msgstr ""
  
 -#: ../yumcommands.py:525
 -msgid "Display details about a package group"
-+#: ../yumcommands.py:868
++#: ../yumcommands.py:994
 +msgid "You don't have access to the groups DB."
  msgstr ""
  
 -#: ../yumcommands.py:550
-+#: ../yumcommands.py:1067
++#: ../yumcommands.py:1256
  msgid "Generate the metadata cache"
  msgstr ""
  
 -#: ../yumcommands.py:556
-+#: ../yumcommands.py:1093
++#: ../yumcommands.py:1282
  msgid "Making cache files for all metadata files."
  msgstr ""
  
 -#: ../yumcommands.py:557
-+#: ../yumcommands.py:1094
++#: ../yumcommands.py:1283
  msgid "This may take a while depending on the speed of this computer"
  msgstr ""
  
 -#: ../yumcommands.py:578
-+#: ../yumcommands.py:1113
++#: ../yumcommands.py:1312
  msgid "Metadata Cache Created"
  msgstr ""
  
 -#: ../yumcommands.py:592
-+#: ../yumcommands.py:1151
++#: ../yumcommands.py:1350
  msgid "Remove cached data"
  msgstr ""
  
 -#: ../yumcommands.py:613
-+#: ../yumcommands.py:1218
++#: ../yumcommands.py:1417
  msgid "Find what package provides the given value"
  msgstr ""
  
 -#: ../yumcommands.py:633
-+#: ../yumcommands.py:1275
++#: ../yumcommands.py:1485
  msgid "Check for available package updates"
  msgstr ""
  
 -#: ../yumcommands.py:687
-+#: ../yumcommands.py:1366
++#: ../yumcommands.py:1587
  msgid "Search package details for the given string"
  msgstr ""
  
 -#: ../yumcommands.py:693
-+#: ../yumcommands.py:1392
++#: ../yumcommands.py:1613
  msgid "Searching Packages: "
  msgstr ""
  
 -#: ../yumcommands.py:710
-+#: ../yumcommands.py:1434
++#: ../yumcommands.py:1666
  msgid "Update packages taking obsoletes into account"
  msgstr ""
  
 -#: ../yumcommands.py:719
-+#: ../yumcommands.py:1464
++#: ../yumcommands.py:1696
  msgid "Setting up Upgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:737
-+#: ../yumcommands.py:1499
++#: ../yumcommands.py:1731
  msgid "Install a local RPM"
  msgstr ""
  
 -#: ../yumcommands.py:745
-+#: ../yumcommands.py:1529
++#: ../yumcommands.py:1761
  msgid "Setting up Local Package Process"
  msgstr ""
  
@@ -170928,183 +179609,183 @@ index 704a726..540062c 100644
 -msgstr ""
 -
 -#: ../yumcommands.py:767
-+#: ../yumcommands.py:1593
++#: ../yumcommands.py:1825
  msgid "Searching Packages for Dependency:"
  msgstr ""
  
 -#: ../yumcommands.py:781
-+#: ../yumcommands.py:1624
++#: ../yumcommands.py:1867
  msgid "Run an interactive yum shell"
  msgstr ""
  
 -#: ../yumcommands.py:787
-+#: ../yumcommands.py:1650
++#: ../yumcommands.py:1893
  msgid "Setting up Yum Shell"
  msgstr ""
  
 -#: ../yumcommands.py:805
-+#: ../yumcommands.py:1693
++#: ../yumcommands.py:1936
  msgid "List a package's dependencies"
  msgstr ""
  
 -#: ../yumcommands.py:811
-+#: ../yumcommands.py:1720
++#: ../yumcommands.py:1963
  msgid "Finding dependencies: "
  msgstr ""
  
 -#: ../yumcommands.py:827
-+#: ../yumcommands.py:1752
++#: ../yumcommands.py:2005
  msgid "Display the configured software repositories"
  msgstr ""
  
 -#: ../yumcommands.py:893 ../yumcommands.py:894
-+#: ../yumcommands.py:1838 ../yumcommands.py:1839
++#: ../yumcommands.py:2094 ../yumcommands.py:2095
  msgid "enabled"
  msgstr ""
  
 -#: ../yumcommands.py:920 ../yumcommands.py:921
-+#: ../yumcommands.py:1865 ../yumcommands.py:1866
++#: ../yumcommands.py:2121 ../yumcommands.py:2122
  msgid "disabled"
  msgstr ""
  
 -#: ../yumcommands.py:937
-+#: ../yumcommands.py:1881
++#: ../yumcommands.py:2137
  msgid "Repo-id      : "
  msgstr ""
  
 -#: ../yumcommands.py:938
-+#: ../yumcommands.py:1882
++#: ../yumcommands.py:2138
  msgid "Repo-name    : "
  msgstr ""
  
 -#: ../yumcommands.py:941
-+#: ../yumcommands.py:1885
++#: ../yumcommands.py:2141
  msgid "Repo-status  : "
  msgstr ""
  
 -#: ../yumcommands.py:944
-+#: ../yumcommands.py:1888
++#: ../yumcommands.py:2144
  msgid "Repo-revision: "
  msgstr ""
  
 -#: ../yumcommands.py:948
-+#: ../yumcommands.py:1892
++#: ../yumcommands.py:2148
  msgid "Repo-tags    : "
  msgstr ""
  
 -#: ../yumcommands.py:954
-+#: ../yumcommands.py:1898
++#: ../yumcommands.py:2154
  msgid "Repo-distro-tags: "
  msgstr ""
  
 -#: ../yumcommands.py:959
-+#: ../yumcommands.py:1903
++#: ../yumcommands.py:2159
  msgid "Repo-updated : "
  msgstr ""
  
 -#: ../yumcommands.py:961
-+#: ../yumcommands.py:1905
++#: ../yumcommands.py:2161
  msgid "Repo-pkgs    : "
  msgstr ""
  
 -#: ../yumcommands.py:962
-+#: ../yumcommands.py:1906
++#: ../yumcommands.py:2162
  msgid "Repo-size    : "
  msgstr ""
  
 -#: ../yumcommands.py:969 ../yumcommands.py:990
-+#: ../yumcommands.py:1913 ../yumcommands.py:1934
++#: ../yumcommands.py:2169 ../yumcommands.py:2190
  msgid "Repo-baseurl : "
  msgstr ""
  
 -#: ../yumcommands.py:977
-+#: ../yumcommands.py:1921
++#: ../yumcommands.py:2177
  msgid "Repo-metalink: "
  msgstr ""
  
 -#: ../yumcommands.py:981
-+#: ../yumcommands.py:1925
++#: ../yumcommands.py:2181
  msgid "  Updated    : "
  msgstr ""
  
 -#: ../yumcommands.py:984
-+#: ../yumcommands.py:1928
++#: ../yumcommands.py:2184
  msgid "Repo-mirrors : "
  msgstr ""
  
 -#: ../yumcommands.py:1000
-+#: ../yumcommands.py:1943
++#: ../yumcommands.py:2199
  #, python-format
  msgid "Never (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1002
-+#: ../yumcommands.py:1945
++#: ../yumcommands.py:2201
  #, python-format
  msgid "Instant (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1005
-+#: ../yumcommands.py:1948
++#: ../yumcommands.py:2204
  #, python-format
  msgid "%s second(s) (last: %s)"
  msgstr ""
  
 -#: ../yumcommands.py:1007
-+#: ../yumcommands.py:1950
++#: ../yumcommands.py:2206
  msgid "Repo-expire  : "
  msgstr ""
  
 -#: ../yumcommands.py:1010
-+#: ../yumcommands.py:1953
++#: ../yumcommands.py:2209
  msgid "Repo-exclude : "
  msgstr ""
  
 -#: ../yumcommands.py:1014
-+#: ../yumcommands.py:1957
++#: ../yumcommands.py:2213
  msgid "Repo-include : "
  msgstr ""
  
 -#: ../yumcommands.py:1018
-+#: ../yumcommands.py:1961
++#: ../yumcommands.py:2217
  msgid "Repo-excluded: "
  msgstr ""
  
 -#: ../yumcommands.py:1022
-+#: ../yumcommands.py:1965
++#: ../yumcommands.py:2221
  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:1974 ../yumcommands.py:2003
++#: ../yumcommands.py:2230 ../yumcommands.py:2259
  msgid "repo id"
  msgstr ""
  
 -#: ../yumcommands.py:1049 ../yumcommands.py:1050 ../yumcommands.py:1068
-+#: ../yumcommands.py:1991 ../yumcommands.py:1992 ../yumcommands.py:2010
++#: ../yumcommands.py:2247 ../yumcommands.py:2248 ../yumcommands.py:2266
  msgid "status"
  msgstr ""
  
 -#: ../yumcommands.py:1062
-+#: ../yumcommands.py:2004
++#: ../yumcommands.py:2260
  msgid "repo name"
  msgstr ""
  
 -#: ../yumcommands.py:1099
-+#: ../yumcommands.py:2066
++#: ../yumcommands.py:2332
  msgid "Display a helpful usage message"
  msgstr ""
  
 -#: ../yumcommands.py:1133
-+#: ../yumcommands.py:2108
++#: ../yumcommands.py:2374
  #, python-format
  msgid "No help available for %s"
  msgstr ""
  
 -#: ../yumcommands.py:1138
-+#: ../yumcommands.py:2113
++#: ../yumcommands.py:2379
  msgid ""
  "\n"
  "\n"
@@ -171112,7 +179793,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1140
-+#: ../yumcommands.py:2115
++#: ../yumcommands.py:2381
  msgid ""
  "\n"
  "\n"
@@ -171120,180 +179801,207 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yumcommands.py:1168
-+#: ../yumcommands.py:2200
++#: ../yumcommands.py:2466
  msgid "Setting up Reinstall Process"
  msgstr ""
  
 -#: ../yumcommands.py:1176
-+#: ../yumcommands.py:2212
++#: ../yumcommands.py:2478
  msgid "reinstall a package"
  msgstr ""
  
 -#: ../yumcommands.py:1195
-+#: ../yumcommands.py:2275
++#: ../yumcommands.py:2541
  msgid "Setting up Downgrade Process"
  msgstr ""
  
 -#: ../yumcommands.py:1202
-+#: ../yumcommands.py:2286
++#: ../yumcommands.py:2552
  msgid "downgrade a package"
  msgstr ""
  
 -#: ../yumcommands.py:1216
-+#: ../yumcommands.py:2325
++#: ../yumcommands.py:2591
  msgid "Display a version for the machine and/or available repos."
  msgstr ""
  
 -#: ../yumcommands.py:1255
-+#: ../yumcommands.py:2377
++#: ../yumcommands.py:2643
  msgid " Yum version groups:"
  msgstr ""
  
 -#: ../yumcommands.py:1265
-+#: ../yumcommands.py:2387
++#: ../yumcommands.py:2653
  msgid " Group   :"
  msgstr ""
  
 -#: ../yumcommands.py:1266
-+#: ../yumcommands.py:2388
++#: ../yumcommands.py:2654
  msgid " Packages:"
  msgstr ""
  
 -#: ../yumcommands.py:1295
-+#: ../yumcommands.py:2417
++#: ../yumcommands.py:2683
  msgid "Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1303
-+#: ../yumcommands.py:2425
++#: ../yumcommands.py:2691
  msgid "Group-Installed:"
  msgstr ""
  
 -#: ../yumcommands.py:1312
-+#: ../yumcommands.py:2434
++#: ../yumcommands.py:2700
  msgid "Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1321
-+#: ../yumcommands.py:2443
++#: ../yumcommands.py:2709
  msgid "Group-Available:"
  msgstr ""
  
 -#: ../yumcommands.py:1360
-+#: ../yumcommands.py:2507
++#: ../yumcommands.py:2783
  msgid "Display, or use, the transaction history"
  msgstr ""
  
 -#: ../yumcommands.py:1432
-+#: ../yumcommands.py:2601
++#: ../yumcommands.py:2876 ../yumcommands.py:2880
 +msgid "Transactions:"
 +msgstr ""
 +
-+#: ../yumcommands.py:2602
++#: ../yumcommands.py:2881
 +msgid "Begin time  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2603
++#: ../yumcommands.py:2882
 +msgid "End time    :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2604
++#: ../yumcommands.py:2883
 +msgid "Counts      :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2605
++#: ../yumcommands.py:2884
 +msgid "  NEVRAC :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2606
++#: ../yumcommands.py:2885
 +msgid "  NEVRA  :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2607
++#: ../yumcommands.py:2886
 +msgid "  NA     :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2608
++#: ../yumcommands.py:2887
 +msgid "  NEVR   :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2609
++#: ../yumcommands.py:2888
 +msgid "  rpm DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2610
++#: ../yumcommands.py:2889
 +msgid "  yum DB :"
 +msgstr ""
 +
-+#: ../yumcommands.py:2643
++#: ../yumcommands.py:2922
  #, python-format
  msgid "Invalid history sub-command, use: %s."
  msgstr ""
  
 -#: ../yumcommands.py:1439
-+#: ../yumcommands.py:2650
++#: ../yumcommands.py:2929
  msgid "You don't have access to the history DB."
  msgstr ""
  
 -#: ../yumcommands.py:1487
-+#: ../yumcommands.py:2742
++#: ../yumcommands.py:3036
  msgid "Check for problems in the rpmdb"
  msgstr ""
  
 -#: ../yumcommands.py:1514
-+#: ../yumcommands.py:2807
++#: ../yumcommands.py:3102
  msgid "load a saved transaction from filename"
  msgstr ""
  
 -#: ../yumcommands.py:1518
-+#: ../yumcommands.py:2824
++#: ../yumcommands.py:3119
  msgid "No saved transaction file specified."
  msgstr ""
  
 -#: ../yumcommands.py:1522
-+#: ../yumcommands.py:2828
++#: ../yumcommands.py:3123
  #, python-format
  msgid "loading transaction from %s"
  msgstr ""
  
 -#: ../yumcommands.py:1528
-+#: ../yumcommands.py:2834
++#: ../yumcommands.py:3129
  #, python-format
  msgid "Transaction loaded from %s with %s members"
  msgstr ""
-@@ -1944,100 +2071,110 @@ msgstr ""
+ 
++#: ../yumcommands.py:3169
++msgid "Simple way to swap packages, isntead of using shell"
++msgstr ""
++
++#: ../yumcommands.py:3264
++msgid ""
++"Treat a repo. as a group of packages, so we can install/remove all of them"
++msgstr ""
++
++#: ../yumcommands.py:3341
++#, python-format
++msgid "%d package to update"
++msgid_plural "%d packages to update"
++msgstr[0] ""
++
++#: ../yumcommands.py:3370
++#, python-format
++msgid "%d package to remove/reinstall"
++msgid_plural "%d packages to remove/reinstall"
++msgstr[0] ""
++
++#: ../yumcommands.py:3413
++#, python-format
++msgid "%d package to remove/sync"
++msgid_plural "%d packages to remove/sync"
++msgstr[0] ""
++
++#: ../yumcommands.py:3417
++#, python-format
++msgid "Not a valid sub-command of %s"
++msgstr ""
++
+ #. This is mainly for PackageSackError from rpmdb.
+ #: ../yummain.py:84
+ #, python-format
  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
++#: ../yummain.py:98
 +msgid "No read/execute access in current directory, moving to /"
  msgstr ""
  
 -#: ../yummain.py:120
-+#: ../yummain.py:118
+-msgid "Can't create lock file; exiting"
++#: ../yummain.py:106
 +msgid "No getcwd() access in current directory, moving to /"
-+msgstr ""
-+
-+#: ../yummain.py:130
- msgid "Can't create lock file; exiting"
  msgstr ""
  
-+#: ../yummain.py:134
-+msgid ""
-+"Another app is currently holding the yum lock; waiting for it to exit..."
-+msgstr ""
-+
  #. Depsolve stage
 -#: ../yummain.py:167
-+#: ../yummain.py:184
++#: ../yummain.py:164
  msgid "Resolving Dependencies"
  msgstr ""
  
 -#: ../yummain.py:230
-+#: ../yummain.py:247 ../yummain.py:255
++#: ../yummain.py:227 ../yummain.py:235
  #, python-format
 -msgid "Your transaction was saved, rerun it with: yum load-transaction %s"
 +msgid ""
@@ -171302,7 +180010,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yummain.py:288
-+#: ../yummain.py:332
++#: ../yummain.py:312
  msgid ""
  "\n"
  "\n"
@@ -171338,7 +180046,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:221 ../yum/depsolve.py:793
-+#: ../yum/depsolve.py:283 ../yum/depsolve.py:916
++#: ../yum/depsolve.py:283 ../yum/depsolve.py:937
  #, python-format
  msgid "%s converted to install"
  msgstr ""
@@ -171395,7 +180103,7 @@ index 704a726..540062c 100644
  #, python-format
  msgid "Mode for pkg providing %s: %s"
  msgstr ""
-@@ -2045,991 +2182,1067 @@ msgstr ""
+@@ -2045,991 +2302,1138 @@ 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 :(
@@ -171406,130 +180114,140 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:400 ../yum/depsolve.py:410
-+#: ../yum/depsolve.py:480 ../yum/depsolve.py:490
++#: ../yum/depsolve.py:480
  #, python-format
  msgid "No update paths found for %s. Failure!"
  msgstr ""
  
 -#: ../yum/depsolve.py:416
-+#: ../yum/depsolve.py:496
++#: ../yum/depsolve.py:491
++#, python-format
++msgid "No update paths found for %s. Failure due to requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:507
++#, python-format
++msgid "Update for %s. Doesn't fix requirement: %s!"
++msgstr ""
++
++#: ../yum/depsolve.py:514
  #, python-format
  msgid "TSINFO: %s package requiring %s marked as erase"
  msgstr ""
  
 -#: ../yum/depsolve.py:429
-+#: ../yum/depsolve.py:509
++#: ../yum/depsolve.py:527
  #, python-format
  msgid "TSINFO: Obsoleting %s with %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:432
-+#: ../yum/depsolve.py:512
++#: ../yum/depsolve.py:530
  #, python-format
  msgid "TSINFO: Updating %s to resolve dep."
  msgstr ""
  
 -#: ../yum/depsolve.py:440
-+#: ../yum/depsolve.py:520
++#: ../yum/depsolve.py:538
  #, python-format
  msgid "Cannot find an update path for dep for: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:471
-+#: ../yum/depsolve.py:551
++#: ../yum/depsolve.py:569
  #, python-format
  msgid "Quick matched %s to require for %s"
  msgstr ""
  
  #. is it already installed?
 -#: ../yum/depsolve.py:513
-+#: ../yum/depsolve.py:593
++#: ../yum/depsolve.py:611
  #, python-format
  msgid "%s is in providing packages but it is already installed, removing."
  msgstr ""
  
 -#: ../yum/depsolve.py:529
-+#: ../yum/depsolve.py:609
++#: ../yum/depsolve.py:627
  #, python-format
  msgid "Potential resolving package %s has newer instance in ts."
  msgstr ""
  
 -#: ../yum/depsolve.py:540
-+#: ../yum/depsolve.py:620
++#: ../yum/depsolve.py:638
  #, python-format
  msgid "Potential resolving package %s has newer instance installed."
  msgstr ""
  
 -#: ../yum/depsolve.py:558
-+#: ../yum/depsolve.py:638
++#: ../yum/depsolve.py:656
  #, python-format
  msgid "%s already in ts, skipping this one"
  msgstr ""
  
 -#: ../yum/depsolve.py:607
-+#: ../yum/depsolve.py:687
++#: ../yum/depsolve.py:705
  #, python-format
  msgid "TSINFO: Marking %s as update for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:616
-+#: ../yum/depsolve.py:696
++#: ../yum/depsolve.py:714
  #, python-format
  msgid "TSINFO: Marking %s as install for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:727 ../yum/depsolve.py:819
-+#: ../yum/depsolve.py:831 ../yum/depsolve.py:946
++#: ../yum/depsolve.py:849 ../yum/depsolve.py:967
  msgid "Success - empty transaction"
  msgstr ""
  
 -#: ../yum/depsolve.py:767 ../yum/depsolve.py:783
-+#: ../yum/depsolve.py:871 ../yum/depsolve.py:906
++#: ../yum/depsolve.py:889 ../yum/depsolve.py:927
  msgid "Restarting Loop"
  msgstr ""
  
 -#: ../yum/depsolve.py:799
-+#: ../yum/depsolve.py:926
++#: ../yum/depsolve.py:947
  msgid "Dependency Process ending"
  msgstr ""
  
 -#: ../yum/depsolve.py:821
-+#: ../yum/depsolve.py:948
++#: ../yum/depsolve.py:969
  msgid "Success - deps resolved"
  msgstr ""
  
 -#: ../yum/depsolve.py:845
-+#: ../yum/depsolve.py:972
++#: ../yum/depsolve.py:993
  #, python-format
  msgid "Checking deps for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:931
-+#: ../yum/depsolve.py:1061
++#: ../yum/depsolve.py:1082
  #, python-format
  msgid "looking for %s as a requirement of %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1169
-+#: ../yum/depsolve.py:1304
++#: ../yum/depsolve.py:1349
  #, python-format
  msgid "Running compare_providers() for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1196 ../yum/depsolve.py:1202
-+#: ../yum/depsolve.py:1331 ../yum/depsolve.py:1337
++#: ../yum/depsolve.py:1376 ../yum/depsolve.py:1382
  #, python-format
  msgid "better arch in po %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1298
-+#: ../yum/depsolve.py:1451
++#: ../yum/depsolve.py:1496
  #, python-format
  msgid "%s obsoletes %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1310
-+#: ../yum/depsolve.py:1463
++#: ../yum/depsolve.py:1508
  #, python-format
  msgid ""
  "archdist compared %s to %s on %s\n"
@@ -171537,254 +180255,298 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/depsolve.py:1318
-+#: ../yum/depsolve.py:1471
++#: ../yum/depsolve.py:1516
  #, python-format
  msgid "common sourcerpm %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1322
-+#: ../yum/depsolve.py:1475
++#: ../yum/depsolve.py:1520
  #, python-format
  msgid "base package %s is installed for %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1328
-+#: ../yum/depsolve.py:1481
++#: ../yum/depsolve.py:1526
  #, python-format
  msgid "common prefix of %s between %s and %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1359
-+#: ../yum/depsolve.py:1498
++#: ../yum/depsolve.py:1543
  #, python-format
 -msgid "requires minimal: %d"
 +msgid "provides vercmp: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1363
-+#: ../yum/depsolve.py:1502 ../yum/depsolve.py:1536
++#: ../yum/depsolve.py:1547 ../yum/depsolve.py:1581
  #, python-format
  msgid " Winner: %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1368
-+#: ../yum/depsolve.py:1532
++#: ../yum/depsolve.py:1577
 +#, python-format
 +msgid "requires minimal: %d"
 +msgstr ""
 +
-+#: ../yum/depsolve.py:1541
++#: ../yum/depsolve.py:1586
  #, python-format
  msgid " Loser(with %d): %s"
  msgstr ""
  
 -#: ../yum/depsolve.py:1384
-+#: ../yum/depsolve.py:1557
++#: ../yum/depsolve.py:1602
  #, python-format
  msgid "Best Order: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:234
-+#: ../yum/__init__.py:266
++#: ../yum/__init__.py:274
  msgid "doConfigSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:482
-+#: ../yum/__init__.py:554
++#: ../yum/__init__.py:553
++#, python-format
++msgid "Skipping unreadable repository %s"
++msgstr ""
++
++#: ../yum/__init__.py:572
  #, python-format
  msgid "Repository %r: Error parsing config: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:488
-+#: ../yum/__init__.py:560
++#: ../yum/__init__.py:578
  #, python-format
  msgid "Repository %r is missing name in configuration, using id"
  msgstr ""
  
 -#: ../yum/__init__.py:526
-+#: ../yum/__init__.py:598
++#: ../yum/__init__.py:618
  msgid "plugins already initialised"
  msgstr ""
  
 -#: ../yum/__init__.py:533
-+#: ../yum/__init__.py:607
++#: ../yum/__init__.py:627
  msgid "doRpmDBSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:544
-+#: ../yum/__init__.py:618
++#: ../yum/__init__.py:638
  msgid "Reading Local RPMDB"
  msgstr ""
  
 -#: ../yum/__init__.py:567
-+#: ../yum/__init__.py:648
++#: ../yum/__init__.py:668
  msgid "doRepoSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:630
-+#: ../yum/__init__.py:719
++#: ../yum/__init__.py:722
  msgid "doSackSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:660
-+#: ../yum/__init__.py:749
++#: ../yum/__init__.py:752
  msgid "Setting up Package Sacks"
  msgstr ""
  
 -#: ../yum/__init__.py:705
-+#: ../yum/__init__.py:794
++#: ../yum/__init__.py:797
  #, python-format
  msgid "repo object for repo %s lacks a _resetSack method\n"
  msgstr ""
  
 -#: ../yum/__init__.py:706
-+#: ../yum/__init__.py:795
++#: ../yum/__init__.py:798
  msgid "therefore this repo cannot be reset.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:711
-+#: ../yum/__init__.py:803
++#: ../yum/__init__.py:806
  msgid "doUpdateSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:723
-+#: ../yum/__init__.py:815
++#: ../yum/__init__.py:818
  msgid "Building updates object"
  msgstr ""
  
 -#: ../yum/__init__.py:765
-+#: ../yum/__init__.py:859
++#: ../yum/__init__.py:862
  msgid "doGroupSetup() will go away in a future version of Yum.\n"
  msgstr ""
  
 -#: ../yum/__init__.py:790
-+#: ../yum/__init__.py:884
++#: ../yum/__init__.py:887
  msgid "Getting group metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:816
-+#: ../yum/__init__.py:912
++#: ../yum/__init__.py:915
  #, python-format
  msgid "Adding group file from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:827
-+#: ../yum/__init__.py:923
++#: ../yum/__init__.py:918
++#, python-format
++msgid "Failed to retrieve group file for repository: %s"
++msgstr ""
++
++#: ../yum/__init__.py:924
  #, python-format
  msgid "Failed to add groups file for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:833
-+#: ../yum/__init__.py:929
++#: ../yum/__init__.py:930
  msgid "No Groups Available in any repository"
  msgstr ""
  
 -#: ../yum/__init__.py:845
-+#: ../yum/__init__.py:944
++#: ../yum/__init__.py:945
  msgid "Getting pkgtags metadata"
  msgstr ""
  
 -#: ../yum/__init__.py:855
-+#: ../yum/__init__.py:954
++#: ../yum/__init__.py:955
  #, python-format
  msgid "Adding tags from repository: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:866
-+#: ../yum/__init__.py:965
++#: ../yum/__init__.py:966
  #, python-format
  msgid "Failed to add Pkg Tags for repository: %s - %s"
  msgstr ""
  
 -#: ../yum/__init__.py:944
-+#: ../yum/__init__.py:1058
++#: ../yum/__init__.py:1059
  msgid "Importing additional filelist information"
  msgstr ""
  
 -#: ../yum/__init__.py:958
-+#: ../yum/__init__.py:1076
++#: ../yum/__init__.py:1077
  #, python-format
  msgid "The program %s%s%s is found in the yum-utils package."
  msgstr ""
  
 -#: ../yum/__init__.py:966
-+#: ../yum/__init__.py:1093
++#: ../yum/__init__.py:1094
  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:1110
++#: ../yum/__init__.py:1111
  msgid "--> Finding unneeded leftover dependencies"
  msgstr ""
  
 -#: ../yum/__init__.py:1041
-+#: ../yum/__init__.py:1168
++#: ../yum/__init__.py:1169
  #, python-format
  msgid "Protected multilib versions: %s != %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1096
-+#: ../yum/__init__.py:1223
++#. People are confused about protected mutilib ... so give
++#. them a nicer message.
++#: ../yum/__init__.py:1173
++#, python-format
++msgid ""
++" Multilib version problems found. This often means that the root\n"
++"cause is something else and multilib version checking is just\n"
++"pointing out that there is a problem. Eg.:\n"
++"\n"
++"  1. You have an upgrade for %(name)s which is missing some\n"
++"     dependency that another package requires. Yum is trying to\n"
++"     solve this by installing an older version of %(name)s of the\n"
++"     different architecture. If you exclude the bad architecture\n"
++"     yum will tell you what the root cause is (which package\n"
++"     requires what). You can try redoing the upgrade with\n"
++"     --exclude %(name)s.otherarch ... this should give you an error\n"
++"     message showing the root cause of the problem.\n"
++"\n"
++"  2. You have multiple architectures of %(name)s installed, but\n"
++"     yum can only see an upgrade for one of those arcitectures.\n"
++"     If you don't want/need both architectures anymore then you\n"
++"     can remove the one with the missing update and everything\n"
++"     will work.\n"
++"\n"
++"  3. You have duplicate versions of %(name)s installed already.\n"
++"     You can use \"yum check\" to get yum show these errors.\n"
++"\n"
++"...you can also use --setopt=protected_multilib=false to remove\n"
++"this checking, however this is almost never the correct thing to\n"
++"do as something else is very likely to go wrong (often causing\n"
++"much more problems).\n"
++"\n"
++msgstr ""
++
++#: ../yum/__init__.py:1257
  #, python-format
  msgid "Trying to remove \"%s\", which is protected"
  msgstr ""
  
 -#: ../yum/__init__.py:1217
-+#: ../yum/__init__.py:1344
++#: ../yum/__init__.py:1378
  msgid ""
  "\n"
  "Packages skipped because of dependency problems:"
  msgstr ""
  
 -#: ../yum/__init__.py:1221
-+#: ../yum/__init__.py:1348
++#: ../yum/__init__.py:1382
  #, python-format
  msgid "    %s from %s"
  msgstr ""
  
  #. FIXME: _N()
 -#: ../yum/__init__.py:1391
-+#: ../yum/__init__.py:1520
++#: ../yum/__init__.py:1556
  #, python-format
  msgid "** Found %d pre-existing rpmdb problem(s), 'yum check' output follows:"
  msgstr ""
  
 -#: ../yum/__init__.py:1395
-+#: ../yum/__init__.py:1524
++#: ../yum/__init__.py:1560
  msgid "Warning: RPMDB altered outside of yum."
  msgstr ""
  
 -#: ../yum/__init__.py:1407
-+#: ../yum/__init__.py:1536
++#: ../yum/__init__.py:1572
  msgid "missing requires"
  msgstr ""
  
 -#: ../yum/__init__.py:1408
-+#: ../yum/__init__.py:1537
++#: ../yum/__init__.py:1573
  msgid "installed conflict"
  msgstr ""
  
 -#: ../yum/__init__.py:1525
-+#: ../yum/__init__.py:1673
++#: ../yum/__init__.py:1709
  msgid ""
  "Warning: scriptlet or other non-fatal errors occurred during transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1535
-+#: ../yum/__init__.py:1683
++#: ../yum/__init__.py:1719
  msgid "Transaction couldn't start:"
  msgstr ""
  
  #. should this be 'to_unicoded'?
 -#: ../yum/__init__.py:1538
-+#: ../yum/__init__.py:1686
++#: ../yum/__init__.py:1722
  msgid "Could not run transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:1552
-+#: ../yum/__init__.py:1700
++#: ../yum/__init__.py:1736
  #, python-format
  msgid "Failed to remove transaction file %s"
  msgstr ""
@@ -171792,7 +180554,7 @@ index 704a726..540062c 100644
  #. maybe a file log here, too
  #. but raising an exception is not going to do any good
 -#: ../yum/__init__.py:1590
-+#: ../yum/__init__.py:1756
++#: ../yum/__init__.py:1792
  #, python-format
  msgid "%s was supposed to be installed but is not!"
  msgstr ""
@@ -171803,14 +180565,14 @@ index 704a726..540062c 100644
 +#. Note: This actually triggers atm. because we can't
 +#. always find the erased txmbr to set it when
 +#. we should.
-+#: ../yum/__init__.py:1833
++#: ../yum/__init__.py:1869
  #, python-format
  msgid "%s was supposed to be removed but is not!"
  msgstr ""
  
 -#: ../yum/__init__.py:1768
 +#. Another copy seems to be running.
-+#: ../yum/__init__.py:1968
++#: ../yum/__init__.py:2004
  #, python-format
 -msgid "Could not open lock %s: %s"
 +msgid "Existing lock %s: another copy is running as pid %s."
@@ -171818,7 +180580,7 @@ index 704a726..540062c 100644
  
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1785
-+#: ../yum/__init__.py:2017
++#: ../yum/__init__.py:2053
  #, python-format
 -msgid "Unable to check if PID %s is active"
 +msgid "Could not create lock at %s: %s "
@@ -171826,7 +180588,7 @@ index 704a726..540062c 100644
  
 -#. Another copy seems to be running.
 -#: ../yum/__init__.py:1789
-+#: ../yum/__init__.py:2029
++#: ../yum/__init__.py:2065
  #, python-format
 -msgid "Existing lock %s: another copy is running as pid %s."
 +msgid "Could not open lock %s: %s"
@@ -171835,14 +180597,14 @@ index 704a726..540062c 100644
 +#. The pid doesn't exist
  #. Whoa. What the heck happened?
 -#: ../yum/__init__.py:1830
-+#: ../yum/__init__.py:2046
++#: ../yum/__init__.py:2082
  #, python-format
 -msgid "Could not create lock at %s: %s "
 +msgid "Unable to check if PID %s is active"
  msgstr ""
  
 -#: ../yum/__init__.py:1875
-+#: ../yum/__init__.py:2096
++#: ../yum/__init__.py:2132
  #, python-format
  msgid ""
  "Package does not match intended download. Suggestion: run yum "
@@ -171850,23 +180612,23 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:1891
-+#: ../yum/__init__.py:2119
++#: ../yum/__init__.py:2155
  msgid "Could not perform checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1894
-+#: ../yum/__init__.py:2122
++#: ../yum/__init__.py:2158
  msgid "Package does not match checksum"
  msgstr ""
  
 -#: ../yum/__init__.py:1946
-+#: ../yum/__init__.py:2185
++#: ../yum/__init__.py:2222
  #, python-format
  msgid "package fails checksum but caching is enabled for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:1949 ../yum/__init__.py:1979
-+#: ../yum/__init__.py:2188 ../yum/__init__.py:2218
++#: ../yum/__init__.py:2225 ../yum/__init__.py:2268
  #, python-format
  msgid "using local copy of %s"
  msgstr ""
@@ -171877,70 +180639,73 @@ index 704a726..540062c 100644
 -"Insufficient space in download directory %s\n"
 -"    * free   %s\n"
 -"    * needed %s"
--msgstr ""
--
++#. caller handles errors
++#: ../yum/__init__.py:2342
++msgid "exiting because --downloadonly specified"
+ msgstr ""
+ 
 -#: ../yum/__init__.py:2052
-+#: ../yum/__init__.py:2296
++#: ../yum/__init__.py:2371
  msgid "Header is not complete."
  msgstr ""
  
 -#: ../yum/__init__.py:2089
-+#: ../yum/__init__.py:2336
++#: ../yum/__init__.py:2411
  #, python-format
  msgid ""
  "Header not in local cache and caching-only mode enabled. Cannot download %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2147
-+#: ../yum/__init__.py:2396
++#: ../yum/__init__.py:2471
  #, python-format
  msgid "Public key for %s is not installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2151
-+#: ../yum/__init__.py:2400
++#: ../yum/__init__.py:2475
  #, python-format
  msgid "Problem opening package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2159
-+#: ../yum/__init__.py:2408
++#: ../yum/__init__.py:2483
  #, python-format
  msgid "Public key for %s is not trusted"
  msgstr ""
  
 -#: ../yum/__init__.py:2163
-+#: ../yum/__init__.py:2412
++#: ../yum/__init__.py:2487
  #, python-format
  msgid "Package %s is not signed"
  msgstr ""
  
 -#: ../yum/__init__.py:2202
-+#: ../yum/__init__.py:2454
++#: ../yum/__init__.py:2529
  #, python-format
  msgid "Cannot remove %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2206
-+#: ../yum/__init__.py:2458
++#: ../yum/__init__.py:2533
  #, python-format
  msgid "%s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2252
-+#: ../yum/__init__.py:2519
++#: ../yum/__init__.py:2594
  #, python-format
  msgid "Cannot remove %s file %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2256
-+#: ../yum/__init__.py:2523
++#: ../yum/__init__.py:2598
  #, python-format
  msgid "%s file %s removed"
  msgstr ""
  
 -#: ../yum/__init__.py:2258
-+#: ../yum/__init__.py:2525
++#: ../yum/__init__.py:2600
  #, python-format
 -msgid "%d %s files removed"
 -msgstr ""
@@ -171949,26 +180714,26 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2327
-+#: ../yum/__init__.py:2627
++#: ../yum/__init__.py:2712
  #, python-format
  msgid "More than one identical match in sack for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2333
-+#: ../yum/__init__.py:2633
++#: ../yum/__init__.py:2718
  #, python-format
  msgid "Nothing matches %s.%s %s:%s-%s from update"
  msgstr ""
  
 -#: ../yum/__init__.py:2632
-+#: ../yum/__init__.py:2997
++#: ../yum/__init__.py:3096
  msgid ""
  "searchPackages() will go away in a future version of Yum."
  "                      Use searchGenerator() instead. \n"
  msgstr ""
  
 -#: ../yum/__init__.py:2675
-+#: ../yum/__init__.py:3053
++#: ../yum/__init__.py:3149
  #, python-format
 -msgid "Searching %d packages"
 -msgstr ""
@@ -171977,111 +180742,127 @@ index 704a726..540062c 100644
 +msgstr[0] ""
  
 -#: ../yum/__init__.py:2679
-+#: ../yum/__init__.py:3057
++#: ../yum/__init__.py:3153
  #, python-format
  msgid "searching package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2691
-+#: ../yum/__init__.py:3069
++#: ../yum/__init__.py:3165
  msgid "searching in file entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2698
-+#: ../yum/__init__.py:3076
++#: ../yum/__init__.py:3172
  msgid "searching in provides entries"
  msgstr ""
  
 -#: ../yum/__init__.py:2777
-+#: ../yum/__init__.py:3213
++#: ../yum/__init__.py:3369
  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:3271 ../yum/__init__.py:3298 ../yum/__init__.py:3334
-+#: ../yum/__init__.py:3340 ../yum/__init__.py:3469 ../yum/__init__.py:3473
-+#: ../yum/__init__.py:3939
++#: ../yum/__init__.py:3466 ../yum/__init__.py:3500 ../yum/__init__.py:3576
++#: ../yum/__init__.py:3582 ../yum/__init__.py:3719 ../yum/__init__.py:3723
++#: ../yum/__init__.py:4298
  #, python-format
  msgid "No Group named %s exists"
  msgstr ""
  
 -#: ../yum/__init__.py:2839 ../yum/__init__.py:2973
-+#: ../yum/__init__.py:3310 ../yum/__init__.py:3489
++#: ../yum/__init__.py:3512 ../yum/__init__.py:3740
  #, python-format
  msgid "package %s was not marked in group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2887
 +#. (upgrade and igroup_data[pkg] == 'available')):
-+#: ../yum/__init__.py:3376
++#: ../yum/__init__.py:3622
 +#, python-format
 +msgid "Skipping package %s from group %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:3382
++#: ../yum/__init__.py:3628
  #, python-format
  msgid "Adding package %s from group %s"
  msgstr ""
  
 -#: ../yum/__init__.py:2891
-+#: ../yum/__init__.py:3402
++#: ../yum/__init__.py:3649
  #, python-format
  msgid "No package named %s available to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:2941
-+#: ../yum/__init__.py:3453
++#: ../yum/__init__.py:3702
  #, python-format
- msgid "Warning: Group %s does not have any packages."
+-msgid "Warning: Group %s does not have any packages."
++msgid "Warning: Group %s does not have any packages to install."
  msgstr ""
  
 -#: ../yum/__init__.py:2943
-+#: ../yum/__init__.py:3455
++#: ../yum/__init__.py:3704
  #, python-format
  msgid "Group %s does have %u conditional packages, which may get installed."
  msgstr ""
  
++#: ../yum/__init__.py:3794
++#, python-format
++msgid "Skipping group %s from environment %s"
++msgstr ""
++
  #. This can happen due to excludes after .up has
  #. happened.
 -#: ../yum/__init__.py:3002
-+#: ../yum/__init__.py:3527
++#: ../yum/__init__.py:3858
  #, python-format
  msgid "Package tuple %s could not be found in packagesack"
  msgstr ""
  
 -#: ../yum/__init__.py:3022
-+#: ../yum/__init__.py:3555
++#: ../yum/__init__.py:3886
  #, python-format
  msgid "Package tuple %s could not be found in rpmdb"
  msgstr ""
  
 -#: ../yum/__init__.py:3079 ../yum/__init__.py:3129
-+#: ../yum/__init__.py:3618 ../yum/__init__.py:3681
++#: ../yum/__init__.py:3949 ../yum/__init__.py:4012
  #, python-format
  msgid "Invalid version flag from: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3096 ../yum/__init__.py:3101
-+#: ../yum/__init__.py:3642 ../yum/__init__.py:3648 ../yum/__init__.py:3705
-+#: ../yum/__init__.py:3711
++#: ../yum/__init__.py:3973 ../yum/__init__.py:3979 ../yum/__init__.py:4036
++#: ../yum/__init__.py:4042
  #, python-format
  msgid "No Package found for %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3401
-+#: ../yum/__init__.py:4023
++#: ../yum/__init__.py:4245 ../yum/__init__.py:4274
++#, python-format
++msgid "Warning: Environment Group %s does not exist."
++msgstr ""
++
++#: ../yum/__init__.py:4397
++#, python-format
++msgid "Package: %s - can't co-install with %s"
++msgstr ""
++
++#: ../yum/__init__.py:4437
  msgid "Package Object was not a package object instance"
  msgstr ""
  
 -#: ../yum/__init__.py:3405
-+#: ../yum/__init__.py:4027
++#: ../yum/__init__.py:4441
  msgid "Nothing specified to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3424 ../yum/__init__.py:4283
-+#: ../yum/__init__.py:4046 ../yum/__init__.py:4957
++#: ../yum/__init__.py:4465 ../yum/__init__.py:5410
  #, python-format
  msgid "Checking for virtual provide or file-provide for %s"
  msgstr ""
@@ -172093,30 +180874,30 @@ index 704a726..540062c 100644
 -msgstr ""
 -
 -#: ../yum/__init__.py:3507
-+#: ../yum/__init__.py:4121
++#: ../yum/__init__.py:4542
  #, python-format
  msgid "Package %s installed and not available"
  msgstr ""
  
 -#: ../yum/__init__.py:3510
-+#: ../yum/__init__.py:4124
++#: ../yum/__init__.py:4545
  msgid "No package(s) available to install"
  msgstr ""
  
 -#: ../yum/__init__.py:3522
-+#: ../yum/__init__.py:4136
++#: ../yum/__init__.py:4557
  #, python-format
  msgid "Package: %s  - already in transaction set"
  msgstr ""
  
 -#: ../yum/__init__.py:3550
-+#: ../yum/__init__.py:4164
++#: ../yum/__init__.py:4589
  #, python-format
  msgid "Package %s is obsoleted by %s which is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:3555
-+#: ../yum/__init__.py:4169
++#: ../yum/__init__.py:4594
  #, python-format
  msgid ""
  "Package %s is obsoleted by %s, but obsoleting package does not provide for "
@@ -172124,123 +180905,123 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:3558
-+#: ../yum/__init__.py:4172
++#: ../yum/__init__.py:4597
  #, python-format
  msgid "Package %s is obsoleted by %s, trying to install %s instead"
  msgstr ""
  
 -#: ../yum/__init__.py:3566
-+#: ../yum/__init__.py:4180
++#: ../yum/__init__.py:4605
  #, python-format
  msgid "Package %s already installed and latest version"
  msgstr ""
  
 -#: ../yum/__init__.py:3580
-+#: ../yum/__init__.py:4194
++#: ../yum/__init__.py:4619
  #, python-format
  msgid "Package matching %s already installed. Checking for update."
  msgstr ""
  
  #. update everything (the easy case)
 -#: ../yum/__init__.py:3684
-+#: ../yum/__init__.py:4317
++#: ../yum/__init__.py:4751
  msgid "Updating Everything"
  msgstr ""
  
 -#: ../yum/__init__.py:3708 ../yum/__init__.py:3849 ../yum/__init__.py:3879
 -#: ../yum/__init__.py:3915
-+#: ../yum/__init__.py:4341 ../yum/__init__.py:4488 ../yum/__init__.py:4530
-+#: ../yum/__init__.py:4566
++#: ../yum/__init__.py:4775 ../yum/__init__.py:4930 ../yum/__init__.py:4975
++#: ../yum/__init__.py:5011
  #, 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:4391 ../yum/__init__.py:4623
++#: ../yum/__init__.py:4830 ../yum/__init__.py:5072
  #, python-format
  msgid "%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3838
-+#: ../yum/__init__.py:4413 ../yum/__init__.py:4627 ../yum/__init__.py:4963
++#: ../yum/__init__.py:4854 ../yum/__init__.py:5080 ../yum/__init__.py:5416
 +#, python-format
 +msgid "No Match for argument: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4431
++#: ../yum/__init__.py:4872
 +#, python-format
 +msgid "No package matched to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:4477
++#: ../yum/__init__.py:4919
  #, python-format
  msgid "Package is already obsoleted: %s.%s %s:%s-%s"
  msgstr ""
  
 -#: ../yum/__init__.py:3874
-+#: ../yum/__init__.py:4525
++#: ../yum/__init__.py:4970
  #, python-format
  msgid "Not Updating Package that is obsoleted: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3883 ../yum/__init__.py:3919
-+#: ../yum/__init__.py:4534 ../yum/__init__.py:4570
++#: ../yum/__init__.py:4979 ../yum/__init__.py:5015
  #, 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:4640
++#: ../yum/__init__.py:5093
 +#, python-format
 +msgid "No package matched to remove: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3988
-+#: ../yum/__init__.py:4646
++#: ../yum/__init__.py:5099
  #, python-format
  msgid "Skipping the running kernel: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:3994
-+#: ../yum/__init__.py:4652
++#: ../yum/__init__.py:5105
  #, python-format
  msgid "Removing %s from the transaction"
  msgstr ""
  
 -#: ../yum/__init__.py:4029
-+#: ../yum/__init__.py:4689
++#: ../yum/__init__.py:5142
  #, python-format
  msgid "Cannot open: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4032 ../yum/__init__.py:4150 ../yum/__init__.py:4226
-+#: ../yum/__init__.py:4692 ../yum/__init__.py:4809 ../yum/__init__.py:4894
++#: ../yum/__init__.py:5145 ../yum/__init__.py:5262 ../yum/__init__.py:5347
  #, python-format
  msgid "Examining %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4036
-+#: ../yum/__init__.py:4696
++#: ../yum/__init__.py:5149
  #, python-format
  msgid "Cannot localinstall deltarpm: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4045 ../yum/__init__.py:4153 ../yum/__init__.py:4229
-+#: ../yum/__init__.py:4705 ../yum/__init__.py:4812 ../yum/__init__.py:4897
++#: ../yum/__init__.py:5158 ../yum/__init__.py:5265 ../yum/__init__.py:5350
  #, python-format
  msgid ""
  "Cannot add package %s to transaction. Not a compatible architecture: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4051
-+#: ../yum/__init__.py:4711
++#: ../yum/__init__.py:5164
  #, python-format
  msgid "Cannot install package %s. It is obsoleted by installed package %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4059
-+#: ../yum/__init__.py:4719
++#: ../yum/__init__.py:5172
  #, python-format
  msgid ""
  "Package %s not installed, cannot update it. Run yum install to install it "
@@ -172248,7 +181029,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4078 ../yum/__init__.py:4085
-+#: ../yum/__init__.py:4738 ../yum/__init__.py:4745
++#: ../yum/__init__.py:5191 ../yum/__init__.py:5198
  #, python-format
  msgid ""
  "Package %s.%s not installed, cannot update it. Run yum install to install it"
@@ -172256,118 +181037,118 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4094 ../yum/__init__.py:4158 ../yum/__init__.py:4234
-+#: ../yum/__init__.py:4754 ../yum/__init__.py:4817 ../yum/__init__.py:4902
++#: ../yum/__init__.py:5207 ../yum/__init__.py:5270 ../yum/__init__.py:5355
  #, python-format
  msgid "Excluding %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4099
-+#: ../yum/__init__.py:4759
++#: ../yum/__init__.py:5212
  #, python-format
  msgid "Marking %s to be installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4105
-+#: ../yum/__init__.py:4765
++#: ../yum/__init__.py:5218
  #, python-format
  msgid "Marking %s as an update to %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4112
-+#: ../yum/__init__.py:4772
++#: ../yum/__init__.py:5225
  #, python-format
  msgid "%s: does not update installed package."
  msgstr ""
  
 -#: ../yum/__init__.py:4147 ../yum/__init__.py:4223
-+#: ../yum/__init__.py:4806 ../yum/__init__.py:4891
++#: ../yum/__init__.py:5259 ../yum/__init__.py:5344
  #, python-format
  msgid "Cannot open file: %s. Skipping."
  msgstr ""
  
 -#: ../yum/__init__.py:4177
-+#: ../yum/__init__.py:4846
++#: ../yum/__init__.py:5299
  msgid "Problem in reinstall: no package matched to remove"
  msgstr ""
  
 -#: ../yum/__init__.py:4203
-+#: ../yum/__init__.py:4872
++#: ../yum/__init__.py:5325
  #, python-format
  msgid "Problem in reinstall: no package %s matched to install"
  msgstr ""
  
 -#: ../yum/__init__.py:4311
-+#: ../yum/__init__.py:4985
++#: ../yum/__init__.py:5438
  msgid "No package(s) available to downgrade"
  msgstr ""
  
 -#: ../yum/__init__.py:4319
-+#: ../yum/__init__.py:4993
++#: ../yum/__init__.py:5446
  #, python-format
  msgid "Package %s is allowed multiple installs, skipping"
  msgstr ""
  
 -#: ../yum/__init__.py:4365
-+#: ../yum/__init__.py:5039
++#: ../yum/__init__.py:5496
  #, python-format
  msgid "No Match for available package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4372
-+#: ../yum/__init__.py:5046
++#: ../yum/__init__.py:5506
  #, python-format
  msgid "Only Upgrade available on package: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4442 ../yum/__init__.py:4479
-+#: ../yum/__init__.py:5159 ../yum/__init__.py:5226
++#: ../yum/__init__.py:5619 ../yum/__init__.py:5686
  #, python-format
  msgid "Failed to downgrade: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4516
-+#: ../yum/__init__.py:5176 ../yum/__init__.py:5232
++#: ../yum/__init__.py:5636 ../yum/__init__.py:5692
 +#, python-format
 +msgid "Failed to upgrade: %s"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5265
++#: ../yum/__init__.py:5725
  #, python-format
  msgid "Retrieving key from %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4534
-+#: ../yum/__init__.py:5283
++#: ../yum/__init__.py:5743
  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:5306
++#: ../yum/__init__.py:5766
  #, 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:5308
++#: ../yum/__init__.py:5768
  msgid "GPG key signature verified against CA Key(s)"
  msgstr ""
  
 -#: ../yum/__init__.py:4567
-+#: ../yum/__init__.py:5316
++#: ../yum/__init__.py:5776
  #, python-format
  msgid "Invalid GPG Key from %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4576
-+#: ../yum/__init__.py:5325
++#: ../yum/__init__.py:5785
  #, python-format
  msgid "GPG key parsing failed: key does not have value %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4592
-+#: ../yum/__init__.py:5341
++#: ../yum/__init__.py:5801
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -172381,7 +181162,7 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4600
-+#: ../yum/__init__.py:5351
++#: ../yum/__init__.py:5811
  #, python-format
  msgid ""
  "Importing %s key 0x%s:\n"
@@ -172390,9 +181171,10 @@ index 704a726..540062c 100644
 +" Userid     : \"%s\"\n"
 +" Fingerprint: %s\n"
 +" From       : %s"
-+msgstr ""
-+
-+#: ../yum/__init__.py:5379
+ msgstr ""
+ 
+-#: ../yum/__init__.py:4634
++#: ../yum/__init__.py:5839
 +#, python-format
 +msgid ""
 +"\n"
@@ -172400,32 +181182,31 @@ index 704a726..540062c 100644
 +"\n"
 +" Failing package is: %s\n"
 +" GPG Keys are configured as: %s\n"
- msgstr ""
- 
--#: ../yum/__init__.py:4634
-+#: ../yum/__init__.py:5393
++msgstr ""
++
++#: ../yum/__init__.py:5853
  #, python-format
  msgid "GPG key at %s (0x%s) is already installed"
  msgstr ""
  
 -#: ../yum/__init__.py:4671
-+#: ../yum/__init__.py:5431
++#: ../yum/__init__.py:5891
  #, python-format
  msgid "Key import failed (code %d)"
  msgstr ""
  
 -#: ../yum/__init__.py:4672 ../yum/__init__.py:4755
-+#: ../yum/__init__.py:5433 ../yum/__init__.py:5534
++#: ../yum/__init__.py:5893 ../yum/__init__.py:5994
  msgid "Key imported successfully"
  msgstr ""
  
 -#: ../yum/__init__.py:4676
-+#: ../yum/__init__.py:5437
++#: ../yum/__init__.py:5897
  msgid "Didn't install any keys"
  msgstr ""
  
 -#: ../yum/__init__.py:4680
-+#: ../yum/__init__.py:5440
++#: ../yum/__init__.py:5900
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct for this package.\n"
@@ -172433,20 +181214,20 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4689
-+#: ../yum/__init__.py:5450
++#: ../yum/__init__.py:5910
  msgid "Import of key(s) didn't help, wrong key(s)?"
  msgstr ""
  
 -#: ../yum/__init__.py:4713
-+#: ../yum/__init__.py:5472
++#: ../yum/__init__.py:5932
 +msgid "No"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5474
++#: ../yum/__init__.py:5934
 +msgid "Yes"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5475
++#: ../yum/__init__.py:5935
 +#, python-format
 +msgid ""
 +"\n"
@@ -172457,26 +181238,26 @@ index 704a726..540062c 100644
 +" GPG Keys are configured as: %s\n"
 +msgstr ""
 +
-+#: ../yum/__init__.py:5488
++#: ../yum/__init__.py:5948
  #, python-format
  msgid "GPG key at %s (0x%s) is already imported"
  msgstr ""
  
 -#: ../yum/__init__.py:4754
 -msgid "Key import failed"
-+#: ../yum/__init__.py:5532
++#: ../yum/__init__.py:5992
 +#, python-format
 +msgid "Key %s import failed"
  msgstr ""
  
 -#: ../yum/__init__.py:4770
-+#: ../yum/__init__.py:5549
++#: ../yum/__init__.py:6009
  #, python-format
  msgid "Didn't install any keys for repo %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4774
-+#: ../yum/__init__.py:5554
++#: ../yum/__init__.py:6014
  #, python-format
  msgid ""
  "The GPG keys listed for the \"%s\" repository are already installed but they are not correct.\n"
@@ -172484,117 +181265,121 @@ index 704a726..540062c 100644
  msgstr ""
  
 -#: ../yum/__init__.py:4924
-+#: ../yum/__init__.py:5705
++#: ../yum/__init__.py:6172
  msgid "Unable to find a suitable mirror."
  msgstr ""
  
 -#: ../yum/__init__.py:4926
-+#: ../yum/__init__.py:5707
++#: ../yum/__init__.py:6174
  msgid "Errors were encountered while downloading packages."
  msgstr ""
  
 -#: ../yum/__init__.py:4981
-+#: ../yum/__init__.py:5762
++#: ../yum/__init__.py:6229
  #, python-format
  msgid "Please report this error at %s"
  msgstr ""
  
 -#: ../yum/__init__.py:4998
-+#: ../yum/__init__.py:5779
++#: ../yum/__init__.py:6246
  msgid "Test Transaction Errors: "
  msgstr ""
  
 -#: ../yum/__init__.py:5098
-+#: ../yum/__init__.py:5891
++#: ../yum/__init__.py:6358
  #, python-format
  msgid "Could not set cachedir: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5148 ../yum/__init__.py:5150
-+#: ../yum/__init__.py:5952 ../yum/__init__.py:5954
++#: ../yum/__init__.py:6420 ../yum/__init__.py:6422
  msgid "Dependencies not solved. Will not save unresolved transaction."
  msgstr ""
  
 -#: ../yum/__init__.py:5179 ../yum/__init__.py:5181
-+#: ../yum/__init__.py:5983 ../yum/__init__.py:5985
++#: ../yum/__init__.py:6455 ../yum/__init__.py:6457
  #, python-format
  msgid "Could not save transaction file %s: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5195
-+#: ../yum/__init__.py:6009
++#: ../yum/__init__.py:6483
  #, python-format
  msgid "Could not access/read saved transaction %s : %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5214
-+#: ../yum/__init__.py:6038
- msgid "rpmdb ver mismatched saved transaction version, "
- msgstr ""
- 
+-msgid "rpmdb ver mismatched saved transaction version, "
+-msgstr ""
+-
 -#: ../yum/__init__.py:5216
-+#: ../yum/__init__.py:6040
- msgid " ignoring, as requested."
- msgstr ""
- 
+-msgid " ignoring, as requested."
+-msgstr ""
+-
 -#: ../yum/__init__.py:5219 ../yum/__init__.py:5354
-+#: ../yum/__init__.py:6043 ../yum/__init__.py:6179
- msgid " aborting."
+-msgid " aborting."
++#: ../yum/__init__.py:6521
++msgid "rpmdb ver mismatched saved transaction version,"
  msgstr ""
  
 -#: ../yum/__init__.py:5228
-+#: ../yum/__init__.py:6052
++#: ../yum/__init__.py:6535
  msgid "cannot find tsflags or tsflags not integer."
  msgstr ""
  
 -#: ../yum/__init__.py:5267
-+#: ../yum/__init__.py:6092
++#: ../yum/__init__.py:6584
  #, python-format
  msgid "Found txmbr in unknown current state: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5271
-+#: ../yum/__init__.py:6096
++#: ../yum/__init__.py:6588
  #, python-format
  msgid "Could not find txmbr: %s in state %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5307 ../yum/__init__.py:5324
-+#: ../yum/__init__.py:6132 ../yum/__init__.py:6149
++#: ../yum/__init__.py:6625 ../yum/__init__.py:6642
  #, python-format
  msgid "Could not find txmbr: %s from origin: %s"
  msgstr ""
  
 -#: ../yum/__init__.py:5349
-+#: ../yum/__init__.py:6174
++#: ../yum/__init__.py:6667
  msgid "Transaction members, relations are missing or ts has been modified,"
  msgstr ""
  
 -#: ../yum/__init__.py:5351
-+#: ../yum/__init__.py:6176
++#: ../yum/__init__.py:6670
  msgid " ignoring, as requested. You must redepsolve!"
  msgstr ""
  
 +#. Debugging output
-+#: ../yum/__init__.py:6251 ../yum/__init__.py:6270
++#: ../yum/__init__.py:6738 ../yum/__init__.py:6757
 +#, python-format
 +msgid "%s has been visited already and cannot be removed."
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6254
++#: ../yum/__init__.py:6741
 +#, python-format
 +msgid "Examining revdeps of %s"
 +msgstr ""
 +
 +#. Debugging output
-+#: ../yum/__init__.py:6275
++#: ../yum/__init__.py:6762
 +#, python-format
 +msgid "%s has revdep %s which was user-installed."
 +msgstr ""
 +
++#: ../yum/__init__.py:6773 ../yum/__init__.py:6779
++#, python-format
++msgid "%s is needed by a package to be installed."
++msgstr ""
++
 +#. Debugging output
-+#: ../yum/__init__.py:6289
++#: ../yum/__init__.py:6793
 +#, python-format
 +msgid "%s has no user-installed revdeps."
 +msgstr ""
@@ -172694,7 +181479,7 @@ index 704a726..540062c 100644
  #, python-format
  msgid "%s provides %s but it cannot be found"
  msgstr ""
-@@ -3038,6 +3251,19 @@ msgstr ""
+@@ -3038,6 +3442,23 @@ msgstr ""
  msgid "Repackaging"
  msgstr ""
  
@@ -172703,7 +181488,7 @@ index 704a726..540062c 100644
 +msgid "Verify: %u/%u: %s"
 +msgstr ""
 +
-+#: ../yum/yumRepo.py:798
++#: ../yum/yumRepo.py:919
 +#, python-format
 +msgid ""
 +"Insufficient space in download directory %s\n"
@@ -172711,10 +181496,14 @@ index 704a726..540062c 100644
 +"    * needed %s"
 +msgstr ""
 +
++#: ../yum/yumRepo.py:986
++msgid "Package does not match intended download."
++msgstr ""
++
  #: ../rpmUtils/oldUtils.py:33
  #, python-format
  msgid "Header cannot be opened or does not match %s, %s."
-@@ -3066,5 +3292,3 @@ msgstr ""
+@@ -3066,5 +3487,3 @@ msgstr ""
  #, python-format
  msgid "Error opening rpm %s - error %s"
  msgstr ""
@@ -176612,7 +185401,7 @@ index c1af4ad..e3e3956 100644
      pass
      
 diff --git a/yum/__init__.py b/yum/__init__.py
-index 99039e0..387a73c 100644
+index 99039e0..4a491a6 100644
 --- a/yum/__init__.py
 +++ b/yum/__init__.py
 @@ -21,6 +21,7 @@ The Yum RPM software updater.
@@ -180271,6 +189060,17 @@ index 99039e0..387a73c 100644
          
          if not callback:
              callback = callbacks.ProcessTransNoOutputCallback()
+@@ -5062,8 +6293,8 @@ class YumBase(depsolve.Depsolve):
+                 raise Errors.YumRPMCheckError, retmsgs
+             retmsgs = [_('ERROR with transaction check vs depsolve:')]
+             retmsgs.extend(msgs) 
+-            retmsgs.append(_('Please report this error at %s') 
+-                                         % self.conf.bugtracker_url)
++            # Don't encourage users to file a bug here, as this is probably
++            # pre-existing issue in dependendies of installed packages
+             raise Errors.YumRPMCheckError,retmsgs
+         
+         tsConf = {}
 @@ -5114,13 +6345,19 @@ class YumBase(depsolve.Depsolve):
          return results
  
@@ -181195,7 +189995,7 @@ index 65f6d5e..fe5649d 100755
          print >> sys.stderr, "newcomps.py: No such file:\'%s\'" % sys.argv[1]
          sys.exit(1)
 diff --git a/yum/config.py b/yum/config.py
-index d09511f..d2ca937 100644
+index d09511f..f658f5b 100644
 --- a/yum/config.py
 +++ b/yum/config.py
 @@ -45,15 +45,18 @@ from misc import get_uuid, read_in_items_from_dot_dir
@@ -181925,7 +190725,7 @@ index d09511f..d2ca937 100644
      alwaysprompt = BoolOption(True)
      exactarch = BoolOption(True)
      tolerant = BoolOption(True)
-@@ -677,18 +774,31 @@ class YumConf(StartupConf):
+@@ -677,18 +774,32 @@ class YumConf(StartupConf):
      obsoletes = BoolOption(True)
      showdupesfromrepos = BoolOption(False)
      enabled = BoolOption(True)
@@ -181945,8 +190745,9 @@ index d09511f..d2ca937 100644
 +    ip_resolve = CaselessSelectionOption(
 +            allowed = ('ipv4', 'ipv6', 'whatever'),
 +            mapper  = {'4': 'ipv4', '6': 'ipv6'})
-+    max_connections = IntOption(0)
-+    deltarpm = IntOption(4)
++    max_connections = IntOption(0, range_min=0)
++    deltarpm = IntOption(-2, range_min=-16, range_max=128)
++    deltarpm_percentage = IntOption(75, range_min=1, range_max=100)
  
      http_caching = SelectionOption('all', ('none', 'packages', 'all'))
      metadata_expire = SecondsOption(60 * 60 * 6) # Time in seconds (6h).
@@ -181957,7 +190758,7 @@ index d09511f..d2ca937 100644
      # Time in seconds (1 day). NOTE: This isn't used when using metalinks
      mirrorlist_expire = SecondsOption(60 * 60 * 24)
      # XXX rpm_check_debug is unused, left around for API compatibility for now
-@@ -698,12 +808,14 @@ class YumConf(StartupConf):
+@@ -698,12 +809,14 @@ class YumConf(StartupConf):
      #  Note that "instant" is the old behaviour, but group:primary is very
      # similar but better :).
      mdpolicy = ListOption(['group:primary'])
@@ -181974,7 +190775,7 @@ index d09511f..d2ca937 100644
  
      color = SelectionOption('auto', ('auto', 'never', 'always'),
                              mapper={'on' : 'always', 'yes' : 'always',
-@@ -715,22 +827,27 @@ class YumConf(StartupConf):
+@@ -715,22 +828,27 @@ class YumConf(StartupConf):
      color_list_installed_newer = Option('bold,yellow')
      color_list_installed_reinstall = Option('normal')
      color_list_installed_extra = Option('bold,red')
@@ -182002,7 +190803,7 @@ index d09511f..d2ca937 100644
  
      history_record = BoolOption(True)
      history_record_packages = ListOption(['yum', 'rpm'])
-@@ -744,18 +861,29 @@ class YumConf(StartupConf):
+@@ -744,18 +862,29 @@ class YumConf(StartupConf):
      
      loadts_ignoremissing = BoolOption(False)
      loadts_ignorerpm = BoolOption(False)
@@ -182032,7 +190833,7 @@ index d09511f..d2ca937 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 +906,12 @@ class YumConf(StartupConf):
+@@ -778,14 +907,12 @@ class YumConf(StartupConf):
          return output
  
  class RepoConf(BaseConfig):
@@ -182050,12 +190851,12 @@ index d09511f..d2ca937 100644
          ck = self.__cached_keys
          if not isinstance(self, RepoConf):
              ck = set()
-@@ -823,39 +949,48 @@ class RepoConf(BaseConfig):
+@@ -823,39 +950,48 @@ class RepoConf(BaseConfig):
      bandwidth = Inherit(YumConf.bandwidth)
      throttle = Inherit(YumConf.throttle)
      timeout = Inherit(YumConf.timeout)
 +    ip_resolve = Inherit(YumConf.ip_resolve)
-+    deltarpm = Inherit(YumConf.deltarpm)
++    deltarpm_percentage = Inherit(YumConf.deltarpm_percentage)
 +
      http_caching = Inherit(YumConf.http_caching)
      metadata_expire = Inherit(YumConf.metadata_expire)
@@ -182110,7 +190911,7 @@ index d09511f..d2ca937 100644
  
      # ' xemacs syntax hack
  
-@@ -876,20 +1011,24 @@ def readStartupConfig(configfile, root):
+@@ -876,20 +1012,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
@@ -182141,7 +190942,7 @@ index d09511f..d2ca937 100644
      
      # ' xemacs syntax hack
  
-@@ -956,6 +1095,12 @@ def readMainConfig(startupconf):
+@@ -956,6 +1096,12 @@ def readMainConfig(startupconf):
      return yumconf
  
  def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
@@ -182154,7 +190955,7 @@ index d09511f..d2ca937 100644
      parser = ConfigParser()
      confpp_obj = ConfigPreProcessor(configfile)
      try:
-@@ -970,17 +1115,16 @@ def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
+@@ -970,17 +1116,16 @@ def readVersionGroupsConfig(configfile="/etc/yum/version-groups.conf"):
  
  
  def getOption(conf, section, name, option):
@@ -182182,7 +190983,7 @@ index d09511f..d2ca937 100644
      try: 
          val = conf.get(section, name)
      except (NoSectionError, NoOptionError):
-@@ -1028,25 +1172,28 @@ def _getsysver(installroot, distroverpkg):
+@@ -1028,25 +1173,28 @@ def _getsysver(installroot, distroverpkg):
      if idx.count() == 0:
          releasever = '$releasever'
      else:
@@ -182222,7 +191023,7 @@ index d09511f..d2ca937 100644
      # b/c repoids can have $values in them we need to map both ways to figure
      # out which one is which
      section_id = repo.id
-@@ -1054,6 +1201,19 @@ def writeRawRepoFile(repo,only=None):
+@@ -1054,6 +1202,19 @@ def writeRawRepoFile(repo,only=None):
          for sect in ini._sections.keys():
              if varReplace(sect, repo.yumvar) == repo.id:
                  section_id = sect
@@ -182242,7 +191043,7 @@ index d09511f..d2ca937 100644
      
      # Updated the ConfigParser with the changed values    
      cfgOptions = repo.cfg.options(repo.id)
-@@ -1069,7 +1229,7 @@ def writeRawRepoFile(repo,only=None):
+@@ -1069,7 +1230,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
@@ -182782,10 +191583,10 @@ index 6d744c0..500a0b9 100644
          self.conflict = conflict # what the conflict was between them
 diff --git a/yum/drpm.py b/yum/drpm.py
 new file mode 100644
-index 0000000..9c1629f
+index 0000000..3bcbcde
 --- /dev/null
 +++ b/yum/drpm.py
-@@ -0,0 +1,177 @@
+@@ -0,0 +1,219 @@
 +#  Integrated delta rpm support
 +#  Copyright 2013 Zdenek Pavlas
 +
@@ -182813,12 +191614,12 @@ index 0000000..9c1629f
 +from urlgrabber import grabber
 +async = hasattr(grabber, 'parallel_wait')
 +from xml.etree.cElementTree import iterparse
-+import os, gzip
++import os, re
 +
 +APPLYDELTA = '/usr/bin/applydeltarpm'
 +
 +class DeltaPackage:
-+    def __init__(self, rpm, size, remote, csum):
++    def __init__(self, rpm, size, remote, csum, oldrpm):
 +        # copy what needed
 +        self.rpm = rpm
 +        self.repo = rpm.repo
@@ -182830,6 +191631,7 @@ index 0000000..9c1629f
 +        self.relativepath = remote
 +        self.localpath = os.path.dirname(rpm.localpath) +'/'+ os.path.basename(remote)
 +        self.csum = csum
++        self.oldrpm = oldrpm
 +
 +    def __str__(self):
 +        return 'Delta RPM of %s' % self.rpm
@@ -182855,20 +191657,52 @@ index 0000000..9c1629f
 +        # hooray
 +        return True
 +
++def _num_cpus_online(unknown=1):
++    if not hasattr(os, "sysconf"):
++        return unknown
++
++    if not os.sysconf_names.has_key("SC_NPROCESSORS_ONLN"):
++        return unknown
++
++    ncpus = os.sysconf("SC_NPROCESSORS_ONLN")
++    try:
++        if int(ncpus) > 0:
++            return ncpus
++    except:
++        pass
++
++    return unknown
++
 +class DeltaInfo:
 +    def __init__(self, ayum, pkgs):
 +        self.verbose_logger = ayum.verbose_logger
 +        self.jobs = {}
 +        self.limit = ayum.conf.deltarpm
++        if self.limit < 0:
++            nprocs = _num_cpus_online()
++            self.limit *= -nprocs
 +
 +        # calculate update sizes
++        oldrpms = {}
 +        pinfo = {}
 +        reposize = {}
 +        for index, po in enumerate(pkgs):
 +            if not po.repo.deltarpm:
 +                continue
-+            if po.state != TS_UPDATE and po.name not in ayum.conf.installonlypkgs:
-+                continue
++            if po.state == TS_UPDATE: pass
++            elif po.name in ayum.conf.installonlypkgs: pass
++            else:
++                names = oldrpms.get(po.repo)
++                if names is None:
++                    # load all locally cached rpms
++                    names = oldrpms[po.repo] = {}
++                    for rpmfn in os.listdir(po.repo.pkgdir):
++                        m = re.match('^(.+)-(.+)-(.+)\.(.+)\.rpm$', rpmfn)
++                        if m:
++                            n, v, r, a = m.groups()
++                            names.setdefault((n, a), set()).add((v, r))
++                if (po.name, po.arch) not in names:
++                    continue
 +            pinfo.setdefault(po.repo, {})[po.pkgtup] = index
 +            reposize[po.repo] = reposize.get(po.repo, 0) + po.size
 +
@@ -182880,12 +191714,11 @@ index 0000000..9c1629f
 +        # download delta metadata
 +        mdpath = {}
 +        for repo in reposize:
-+            self.limit = max(self.limit, repo.deltarpm)
 +            for name in ('prestodelta', 'deltainfo'):
 +                try: data = repo.repoXML.getData(name); break
 +                except: pass
 +            else:
-+                self.verbose_logger.warn(_('No Presto metadata available for %s'), repo)
++                self.verbose_logger.info(_('No Presto metadata available for %s'), repo)
 +                continue
 +            path = repo.cachedir +'/'+ os.path.basename(data.location[1])
 +            if not os.path.exists(path) and int(data.size) > reposize[repo]:
@@ -182906,37 +191739,42 @@ index 0000000..9c1629f
 +        if async:
 +            grabber.parallel_wait()
 +
-+        # use installdict or rpmdb
-+        if ayum._up:
-+            installed = ayum._up.installdict.get
-+        else:
-+            installed = lambda (n, a): [
-+                (po.epoch, po.version, po.release)
-+                for po in ayum.rpmdb.searchNevra(n, None, None, None, a)]
-+
-+        # parse metadata, populate self.deltas
++        # parse metadata, create DeltaPackage instances
 +        for repo, cpath in mdpath.items():
 +            pinfo_repo = pinfo[repo]
 +            path = repo_gen_decompress(cpath, 'prestodelta.xml',
 +                                       cached=repo.cache)
 +            for ev, el in iterparse(path):
 +                if el.tag != 'newpackage': continue
-+                new = el.get('name'), el.get('arch'), el.get('epoch'), el.get('version'), el.get('release')
++                name = el.get('name')
++                arch = el.get('arch')
++                new = name, arch, el.get('epoch'), el.get('version'), el.get('release')
 +                index = pinfo_repo.get(new)
 +                if index is not None:
 +                    po = pkgs[index]
-+                    best = po.size * 0.75 # make this configurable?
-+                    have = installed(new[:2]) or []
++                    best = po.size * (repo.deltarpm_percentage / 100.0)
++                    have = oldrpms.get(repo, {}).get((name, arch), {})
 +                    for el in el.findall('delta'):
 +                        size = int(el.find('size').text)
-+                        old = el.get('oldepoch'), el.get('oldversion'), el.get('oldrelease')
-+                        if size >= best or old not in have:
++                        if size >= best:
 +                            continue
++
++                        # can we use this delta?
++                        epoch = el.get('oldepoch')
++                        ver = el.get('oldversion')
++                        rel = el.get('oldrelease')
++                        if (ver, rel) in have:
++                            oldrpm = '%s/%s-%s-%s.%s.rpm' % (repo.pkgdir, name, ver, rel, arch)
++                        else:
++                            if not ayum.rpmdb.searchNevra(name, epoch, ver, rel, arch):
++                                continue
++                            oldrpm = None
++
 +                        best = size
 +                        remote = el.find('filename').text
 +                        csum = el.find('checksum')
 +                        csum = csum.get('type'), csum.text
-+                        pkgs[index] = DeltaPackage(po, size, remote, csum)
++                        pkgs[index] = DeltaPackage(po, size, remote, csum, oldrpm)
 +                el.clear()
 +
 +    def wait(self, limit = 1):
@@ -182953,15 +191791,20 @@ index 0000000..9c1629f
 +        # this runs when worker finishes
 +        def callback(code):
 +            if code != 0:
-+                return adderror(po, _('Delta RPM rebuild failed'))
++                adderror(po, _('Delta RPM rebuild failed'))
++                return
 +            if not po.rpm.verifyLocalPkg():
-+                return adderror(po, _('Checksum of the delta-rebuilt RPM failed'))
++                adderror(po, _('Checksum of the delta-rebuilt RPM failed'))
++                return
 +            os.unlink(po.localpath)
 +            po.localpath = po.rpm.localpath # for --downloadonly
 +
 +        # spawn a worker process
 +        self.wait(self.limit)
-+        pid = os.spawnl(os.P_NOWAIT, APPLYDELTA, APPLYDELTA, po.localpath, po.rpm.localpath)
++        args = ()
++        if po.oldrpm: args += '-r', po.oldrpm
++        args += po.localpath, po.rpm.localpath
++        pid = os.spawnl(os.P_NOWAIT, APPLYDELTA, APPLYDELTA, *args)
 +        self.jobs[pid] = callback
 diff --git a/yum/failover.py b/yum/failover.py
 index bca9651..00c17ad 100644
@@ -186206,7 +195049,7 @@ index 2cb1acb..3ac0010 100644
      def __unicode__(self):
          ret = u''
 diff --git a/yum/yumRepo.py b/yum/yumRepo.py
-index e5e9ece..342ed42 100644
+index e5e9ece..ace49e3 100644
 --- a/yum/yumRepo.py
 +++ b/yum/yumRepo.py
 @@ -20,10 +20,12 @@ import time
@@ -186443,7 +195286,7 @@ index e5e9ece..342ed42 100644
          # holder for stuff we've grabbed
          self.retrieved = { 'primary':0, 'filelists':0, 'other':0, 'group':0,
 -                           'updateinfo':0, 'prestodelta' : 0}
-+                           'updateinfo':0}
++                           'updateinfo':0, 'prestodelta':0}
  
          # callbacks
          self.callback = None  # for the grabber
@@ -187102,7 +195945,7 @@ index e5e9ece..342ed42 100644
 +                    misc.unlink_f(obj.filename)
 +                    raise
 +                self.retrieved[mdtype] = 1
-+            text = "%s/%s" % (self, mdtype)
++            text = "%s/%s" % (self.ui_id, mdtype)
              if thisdata.size is None:
                  reget = None
              else:
@@ -187213,7 +196056,7 @@ index e5e9ece..342ed42 100644
          fo = None
  
 diff --git a/yumcommands.py b/yumcommands.py
-index 4dcbea7..6cc751a 100644
+index 4dcbea7..85d1fb8 100644
 --- a/yumcommands.py
 +++ b/yumcommands.py
 @@ -22,14 +22,16 @@ Classes for subcommands of the yum command line interface.
@@ -188134,7 +196977,7 @@ index 4dcbea7..6cc751a 100644
          cmd, extcmds = self._grp_cmd(basecmd, extcmds)
  
          self._grp_setup_doCommand(base)
-@@ -524,39 +1032,258 @@ class GroupsCommand(YumCommand):
+@@ -524,122 +1032,513 @@ class GroupsCommand(YumCommand):
              if cmd == 'remove':
                  return base.removeGroups(extcmds)
  
@@ -188394,9 +197237,18 @@ index 4dcbea7..6cc751a 100644
 +        """
          base.logger.debug(_("Making cache files for all metadata files."))
          base.logger.debug(_("This may take a while depending on the speed of this computer"))
++
++        # Fast == don't download any extra MD
++        fast = False
++        if extcmds and extcmds[0] == 'fast':
++            fast = True
++
          try:
-@@ -565,81 +1292,238 @@ class MakeCacheCommand(YumCommand):
-                 repo.mdpolicy = "group:all"
+             for repo in base.repos.findRepos('*'):
+                 repo.metadata_expire = 0
+-                repo.mdpolicy = "group:all"
++                if not fast:
++                    repo.mdpolicy = "group:all"
              base.doRepoSetup(dosack=0)
              base.repos.doSetup()
 -            for repo in base.repos.listEnabled():
@@ -188409,17 +197261,26 @@ index 4dcbea7..6cc751a 100644
 -            base.repos.populateSack(mdtype='metadata', cacheonly=1)
 -            base.repos.populateSack(mdtype='filelists', cacheonly=1)
 -            base.repos.populateSack(mdtype='otherdata', cacheonly=1)
-+            base.repos.populateSack(mdtype='all', cacheonly=1)
- 
+-
++            if fast:
++                #  Can't easily tell which other metadata each repo. has, so
++                # just do primary.
++                base.repos.populateSack(mdtype='metadata', cacheonly=1)
++            else:
++                base.repos.populateSack(mdtype='all', cacheonly=1)
++
 +            # Now decompress stuff, so that -C works, sigh.
 +            fname_map = {'group_gz'   : 'groups.xml',
 +                         'pkgtags'    : 'pkgtags.sqlite',
 +                         'updateinfo' : 'updateinfo.xml',
++                         'prestodelta': 'prestodelta.xml',
 +                         }
 +            for repo in base.repos.listEnabled():
 +                for MD in repo.repoXML.fileTypes():
 +                    if MD not in fname_map:
 +                        continue
++                    if MD not in repo.retrieved or not repo.retrieved[MD]:
++                        continue # For fast mode.
 +                    misc.repo_gen_decompress(repo.retrieveMD(MD),
 +                                             fname_map[MD],
 +                                             cached=repo.cache)
@@ -188641,7 +197502,7 @@ index 4dcbea7..6cc751a 100644
          obscmds = ['obsoletes'] + extcmds
          base.extcmds.insert(0, 'updates')
          result = 0
-@@ -676,161 +1560,480 @@ class CheckUpdateCommand(YumCommand):
+@@ -676,161 +1575,480 @@ class CheckUpdateCommand(YumCommand):
                                                columns=columns)
                  result = 100
          except yum.Errors.YumBaseError, e:
@@ -189131,7 +197992,7 @@ index 4dcbea7..6cc751a 100644
          def _repo_size(repo):
              ret = 0
              for pkg in repo.sack.returnPackages():
-@@ -857,7 +2060,10 @@ class RepoListCommand(YumCommand):
+@@ -857,7 +2075,10 @@ class RepoListCommand(YumCommand):
              arg = 'enabled'
          extcmds = map(lambda x: x.lower(), extcmds)
  
@@ -189143,7 +198004,7 @@ index 4dcbea7..6cc751a 100644
          if arg != 'disabled' or extcmds:
              try:
                  # Setup so len(repo.sack) is correct
-@@ -866,6 +2072,13 @@ class RepoListCommand(YumCommand):
+@@ -866,6 +2087,13 @@ class RepoListCommand(YumCommand):
              except yum.Errors.RepoError:
                  if verbose:
                      raise
@@ -189157,7 +198018,7 @@ index 4dcbea7..6cc751a 100644
  
          repos = base.repos.repos.values()
          repos.sort()
-@@ -924,111 +2137,108 @@ class RepoListCommand(YumCommand):
+@@ -924,111 +2152,108 @@ class RepoListCommand(YumCommand):
                  ui_enabled = dhibeg + _('disabled') + hiend
                  ui_endis_wid = utf8_width(_('disabled'))
  
@@ -189362,7 +198223,7 @@ index 4dcbea7..6cc751a 100644
  
          if not verbose and cols:
              #  Work out the first (id) and last (enabled/disalbed/count),
-@@ -1088,21 +2298,64 @@ class RepoListCommand(YumCommand):
+@@ -1088,21 +2313,64 @@ class RepoListCommand(YumCommand):
          return 0, ['repolist: ' +to_unicode(locale.format("%d", tot_num, True))]
  
      def needTs(self, base, basecmd, extcmds):
@@ -189427,7 +198288,7 @@ index 4dcbea7..6cc751a 100644
          if len(extcmds) == 0:
              base.usage()
              raise cli.CliError
-@@ -1147,28 +2400,85 @@ class HelpCommand(YumCommand):
+@@ -1147,28 +2415,85 @@ class HelpCommand(YumCommand):
          return help_output
  
      def doCommand(self, base, basecmd, extcmds):
@@ -189513,7 +198374,7 @@ index 4dcbea7..6cc751a 100644
          self.doneCommand(base, _("Setting up Reinstall Process"))
          try:
              return base.reinstallPkgs(extcmds)
-@@ -1177,49 +2487,139 @@ class ReInstallCommand(YumCommand):
+@@ -1177,49 +2502,139 @@ class ReInstallCommand(YumCommand):
              return 1, [to_unicode(e)]
  
      def getSummary(self):
@@ -189654,7 +198515,7 @@ index 4dcbea7..6cc751a 100644
          vcmd = 'installed'
          if extcmds:
              vcmd = extcmds[0]
-@@ -1308,7 +2708,7 @@ class VersionCommand(YumCommand):
+@@ -1308,7 +2723,7 @@ class VersionCommand(YumCommand):
                                       str(data[2][grp])))
                          _append_repos(cols, data[3][grp])
              except yum.Errors.YumBaseError, e:
@@ -189663,7 +198524,7 @@ index 4dcbea7..6cc751a 100644
          if vcmd in ('available', 'all', 'group-available', 'group-all'):
              try:
                  data = base.pkgSack.simpleVersion(not verbose, groups=groups)
-@@ -1327,7 +2727,7 @@ class VersionCommand(YumCommand):
+@@ -1327,7 +2742,7 @@ class VersionCommand(YumCommand):
                          if verbose:
                              _append_repos(cols, data[3][grp])
              except yum.Errors.YumBaseError, e:
@@ -189672,7 +198533,7 @@ index 4dcbea7..6cc751a 100644
  
          data = {'rid' : {}, 'ver' : {}}
          for (rid, ver) in cols:
-@@ -1344,6 +2744,14 @@ class VersionCommand(YumCommand):
+@@ -1344,6 +2759,14 @@ class VersionCommand(YumCommand):
          return 0, ['version']
  
      def needTs(self, base, basecmd, extcmds):
@@ -189687,7 +198548,7 @@ index 4dcbea7..6cc751a 100644
          vcmd = 'installed'
          if extcmds:
              vcmd = extcmds[0]
-@@ -1352,25 +2760,74 @@ class VersionCommand(YumCommand):
+@@ -1352,25 +2775,74 @@ class VersionCommand(YumCommand):
              return True
          return vcmd in ('available', 'all', 'group-available', 'group-all')
  
@@ -189763,7 +198624,7 @@ index 4dcbea7..6cc751a 100644
              return 2, ["Repeating transaction %u" % (old.tid,)]
  
      def _hcmd_undo(self, base, extcmds):
-@@ -1426,12 +2883,57 @@ class HistoryCommand(YumCommand):
+@@ -1426,12 +2898,57 @@ class HistoryCommand(YumCommand):
      def _hcmd_new(self, base, extcmds):
          base.history._create_db_file()
  
@@ -189822,7 +198683,7 @@ index 4dcbea7..6cc751a 100644
          if extcmds and extcmds[0] not in cmds:
              base.logger.critical(_('Invalid history sub-command, use: %s.'),
                                   ", ".join(cmds))
-@@ -1444,6 +2946,19 @@ class HistoryCommand(YumCommand):
+@@ -1444,6 +2961,19 @@ class HistoryCommand(YumCommand):
              raise cli.CliError
  
      def doCommand(self, base, basecmd, extcmds):
@@ -189842,7 +198703,7 @@ index 4dcbea7..6cc751a 100644
          vcmd = 'list'
          if extcmds:
              vcmd = extcmds[0]
-@@ -1468,29 +2983,88 @@ class HistoryCommand(YumCommand):
+@@ -1468,29 +2998,88 @@ class HistoryCommand(YumCommand):
              ret = self._hcmd_rollback(base, extcmds)
          elif vcmd == 'new':
              ret = self._hcmd_new(base, extcmds)
@@ -189931,7 +198792,7 @@ index 4dcbea7..6cc751a 100644
          chkcmd = 'all'
          if extcmds:
              chkcmd = extcmds
-@@ -1505,24 +3079,147 @@ class CheckRpmdbCommand(YumCommand):
+@@ -1505,24 +3094,147 @@ class CheckRpmdbCommand(YumCommand):
          return rc, ['%s %s' % (basecmd, chkcmd)]
  
      def needTs(self, base, basecmd, extcmds):
@@ -190082,7 +198943,7 @@ index 4dcbea7..6cc751a 100644
          self.doneCommand(base, _("loading transaction from %s") % load_file)
          
          try:
-@@ -1533,5 +3230,406 @@ class LoadTransactionCommand(YumCommand):
+@@ -1533,5 +3245,406 @@ class LoadTransactionCommand(YumCommand):
  
  
      def needTs(self, base, basecmd, extcmds):
diff --git a/yum.spec b/yum.spec
index 50b367e..a9c892c 100644
--- a/yum.spec
+++ b/yum.spec
@@ -29,7 +29,7 @@
 Summary: RPM package installer/updater/manager
 Name: yum
 Version: 3.4.3
-Release: 70%{?dist}
+Release: 71%{?dist}
 License: GPLv2+
 Group: System Environment/Base
 Source0: http://yum.baseurl.org/download/3.4/%{name}-%{version}.tar.gz
@@ -385,6 +385,13 @@ exit 0
 %endif
 
 %changelog
+* Wed Mar  6 2013 James Antill <james at fedoraproject.org> - 3.4.3-71
+- update to latest HEAD.
+- Translation updates.
+- Smarter selection of drpm candidates.
+- "makecache fast".
+- Minor updates.
+
 * Fri Mar  1 2013 James Antill <james at fedoraproject.org> - 3.4.3-70
 - update to latest HEAD.
 - Reimport the size calculation fix.


More information about the scm-commits mailing list