[yum-git] output.py po/POTFILES.in po/ru.po po/yum.pot

Tim Lauridsen timlau at linux.duke.edu
Mon Jan 28 07:19:07 UTC 2008


 output.py      |  100 ++++++++++----------
 po/POTFILES.in |    2 
 po/ru.po       |  281 ++++++++++++++++++++++++++++++++++++++++++++++++++-------
 po/yum.pot     |  230 ++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 526 insertions(+), 87 deletions(-)

New commits:
commit b5c70ba264dbdd3bb7f426457e921dadd499992c
Author: Tim Lauridsen <tim at naboo.local>
Date:   Mon Jan 28 08:18:38 2008 +0100

    added _() translation wrappers to output.py

diff --git a/output.py b/output.py
index 6656680..607bb9c 100644
--- a/output.py
+++ b/output.py
@@ -237,7 +237,7 @@ class YumOutput:
         """failure output for failovers from urlgrabber"""
         
         self.logger.error('%s: %s', errobj.url, str(errobj.exception))
-        self.logger.error('Trying other mirror.')
+        self.logger.error(_('Trying other mirror.'))
         raise errobj.exception
     
         
@@ -317,7 +317,7 @@ class YumOutput:
 
         while True:
             try:
-                choice = raw_input('Is this ok [y/N]: ')
+                choice = raw_input(_('Is this ok [y/N]: '))
             except:
                 choice = ''
             choice = choice.lower()
@@ -331,26 +331,26 @@ class YumOutput:
                 
     
     def displayPkgsInGroups(self, group):
-        print '\nGroup: %s' % group.name
+        print _('\nGroup: %s') % group.name
         if group.description != "":
-            print ' Description: %s' % group.description.encode("UTF-8")
+            print _(' Description: %s') % group.description.encode("UTF-8")
         if len(group.mandatory_packages) > 0:
-            print ' Mandatory Packages:'
+            print _(' Mandatory Packages:')
             for item in group.mandatory_packages:
                 print '   %s' % item
 
         if len(group.default_packages) > 0:
-            print ' Default Packages:'
+            print _(' Default Packages:')
             for item in group.default_packages:
                 print '   %s' % item
         
         if len(group.optional_packages) > 0:
-            print ' Optional Packages:'
+            print _(' Optional Packages:')
             for item in group.optional_packages:
                 print '   %s' % item
 
         if len(group.conditional_packages) > 0:
-            print ' Conditional Packages:'
+            print _(' Conditional Packages:')
             for item, cond in group.conditional_packages.iteritems():
                 print '   %s' % (item,)
 
@@ -358,16 +358,16 @@ class YumOutput:
         """take a list of findDeps results and 'pretty print' the output"""
         
         for pkg in results:
-            print "package: %s" % pkg.compactPrint()
+            print _("package: %s") % pkg.compactPrint()
             if len(results[pkg]) == 0:
-                print "  No dependencies for this package"
+                print _("  No dependencies for this package")
                 continue
 
             for req in results[pkg]:
                 reqlist = results[pkg][req] 
-                print "  dependency: %s" % prco_tuple_to_string(req)
+                print _("  dependency: %s") % prco_tuple_to_string(req)
                 if not reqlist:
-                    print "   Unsatisfied dependency"
+                    print _("   Unsatisfied dependency")
                     continue
                 
                 for po in reqlist:
@@ -450,15 +450,15 @@ class YumOutput:
                    pass
             except:
                  error = True
-                 self.logger.error('There was an error calculating total download size')
+                 self.logger.error(_('There was an error calculating total download size'))
                  break
 
         if (not error):
             if locsize:
-                self.verbose_logger.log(logginglevels.INFO_1, "Total size: %s", 
+                self.verbose_logger.log(logginglevels.INFO_1, _("Total size: %s"), 
                                         self.format_number(totsize))
             if locsize != totsize:
-                self.verbose_logger.log(logginglevels.INFO_1, "Total download size: %s", 
+                self.verbose_logger.log(logginglevels.INFO_1, _("Total download size: %s"), 
                                         self.format_number(totsize - locsize))
             
     def listTransaction(self):
@@ -470,16 +470,16 @@ class YumOutput:
 =============================================================================
  %-22s  %-9s  %-15s  %-16s  %-5s
 =============================================================================
-""" % ('Package', 'Arch', 'Version', 'Repository', 'Size')
+""" % (_('Package'), _('Arch'), _('Version'), _('Repository'), _('Size'))
         else:
             out = ""
 
-        for (action, pkglist) in [('Installing', self.tsInfo.installed),
-                            ('Updating', self.tsInfo.updated),
-                            ('Removing', self.tsInfo.removed),
-                            ('Installing for dependencies', self.tsInfo.depinstalled),
-                            ('Updating for dependencies', self.tsInfo.depupdated),
-                            ('Removing for dependencies', self.tsInfo.depremoved)]:
+        for (action, pkglist) in [(_('Installing'), self.tsInfo.installed),
+                            (_('Updating'), self.tsInfo.updated),
+                            (_('Removing'), self.tsInfo.removed),
+                            (_('Installing for dependencies'), self.tsInfo.depinstalled),
+                            (_('Updating for dependencies'), self.tsInfo.depupdated),
+                            (_('Removing for dependencies'), self.tsInfo.depremoved)]:
             if pkglist:
                 totalmsg = "%s:\n" % action
             for txmbr in pkglist:
@@ -491,7 +491,7 @@ class YumOutput:
                 msg = " %-22s  %-9s  %-15s  %-16s  %5s\n" % (n, a,
                               evr, repoid, size)
                 for obspo in txmbr.obsoletes:
-                    appended = '     replacing  %s.%s %s\n\n' % (obspo.name,
+                    appended = _('     replacing  %s.%s %s\n\n') % (obspo.name,
                         obspo.arch, obspo.printVer())
                     msg = msg+appended
                 totalmsg = totalmsg + msg
@@ -499,13 +499,13 @@ class YumOutput:
             if pkglist:
                 out = out + totalmsg
 
-        summary = """
+        summary = _("""
 Transaction Summary
 =============================================================================
 Install  %5.5s Package(s)         
 Update   %5.5s Package(s)         
 Remove   %5.5s Package(s)         
-""" % (len(self.tsInfo.installed + self.tsInfo.depinstalled),
+""") % (len(self.tsInfo.installed + self.tsInfo.depinstalled),
        len(self.tsInfo.updated + self.tsInfo.depupdated),
        len(self.tsInfo.removed + self.tsInfo.depremoved))
         out = out + summary
@@ -517,13 +517,13 @@ Remove   %5.5s Package(s)
         
         self.tsInfo.makelists()
 
-        for (action, pkglist) in [('Removed', self.tsInfo.removed), 
-                                  ('Dependency Removed', self.tsInfo.depremoved),
-                                  ('Installed', self.tsInfo.installed), 
-                                  ('Dependency Installed', self.tsInfo.depinstalled),
-                                  ('Updated', self.tsInfo.updated),
-                                  ('Dependency Updated', self.tsInfo.depupdated),
-                                  ('Replaced', self.tsInfo.obsoleted)]:
+        for (action, pkglist) in [(_('Removed'), self.tsInfo.removed), 
+                                  (_('Dependency Removed'), self.tsInfo.depremoved),
+                                  (_('Installed'), self.tsInfo.installed), 
+                                  (_('Dependency Installed'), self.tsInfo.depinstalled),
+                                  (_('Updated'), self.tsInfo.updated),
+                                  (_('Dependency Updated'), self.tsInfo.depupdated),
+                                  (_('Replaced'), self.tsInfo.obsoleted)]:
             
             if len(pkglist) > 0:
                 out += '\n%s:' % action
@@ -581,9 +581,9 @@ Remove   %5.5s Package(s)
         if not hasattr(self, '_last_interrupt'):
             hibeg = self.term.MODE['bold']
             hiend = self.term.MODE['normal']
-            msg = """
+            msg = _("""
  Current download cancelled, %sinterrupt (ctrl-c) again%s within %s%s%s seconds to exit.
-""" % (hibeg, hiend, hibeg, delta_exit_str, hiend)
+""") % (hibeg, hiend, hibeg, delta_exit_str, hiend)
             self.verbose_logger.log(logginglevels.INFO_2, msg)
         elif now - self._last_interrupt < delta_exit_chk:
             # Two quick CTRL-C's, quit
@@ -591,7 +591,7 @@ Remove   %5.5s Package(s)
 
         # Go to next mirror
         self._last_interrupt = now
-        raise URLGrabError(15, 'user interrupt')
+        raise URLGrabError(15, _('user interrupt'))
 
 class DepSolveProgressCallBack:
     """provides text output callback functions for Dependency Solver callback"""
@@ -602,55 +602,55 @@ class DepSolveProgressCallBack:
         self.loops = 0
     
     def pkgAdded(self, pkgtup, mode):
-        modedict = { 'i': 'installed',
-                     'u': 'updated',
-                     'o': 'obsoleted',
-                     'e': 'erased'}
+        modedict = { 'i': _('installed'),
+                     'u': _('updated'),
+                     'o': _('obsoleted'),
+                     'e': _('erased')}
         (n, a, e, v, r) = pkgtup
         modeterm = modedict[mode]
         self.verbose_logger.log(logginglevels.INFO_2,
-            '---> Package %s.%s %s:%s-%s set to be %s', n, a, e, v, r,
+            _('---> Package %s.%s %s:%s-%s set to be %s'), n, a, e, v, r,
             modeterm)
         
     def start(self):
         self.loops += 1
         
     def tscheck(self):
-        self.verbose_logger.log(logginglevels.INFO_2, '--> Running transaction check')
+        self.verbose_logger.log(logginglevels.INFO_2, _('--> Running transaction check'))
         
     def restartLoop(self):
         self.loops += 1
         self.verbose_logger.log(logginglevels.INFO_2,
-            '--> Restarting Dependency Resolution with new changes.')
+            _('--> Restarting Dependency Resolution with new changes.'))
         self.verbose_logger.debug('---> Loop Number: %d', self.loops)
     
     def end(self):
         self.verbose_logger.log(logginglevels.INFO_2,
-            '--> Finished Dependency Resolution')
+            _('--> Finished Dependency Resolution'))
 
     
     def procReq(self, name, formatted_req):
         self.verbose_logger.log(logginglevels.INFO_2,
-            '--> Processing Dependency: %s for package: %s', formatted_req,
+            _('--> Processing Dependency: %s for package: %s'), formatted_req,
             name)
         
     
     def unresolved(self, msg):
-        self.verbose_logger.log(logginglevels.INFO_2, '--> Unresolved Dependency: %s',
+        self.verbose_logger.log(logginglevels.INFO_2, _('--> Unresolved Dependency: %s'),
             msg)
 
     
     def procConflict(self, name, confname):
         self.verbose_logger.log(logginglevels.INFO_2,
-            '--> Processing Conflict: %s conflicts %s', name, confname)
+            _('--> Processing Conflict: %s conflicts %s'), name, confname)
 
     def transactionPopulation(self):
-        self.verbose_logger.log(logginglevels.INFO_2, '--> Populating transaction set '
-            'with selected packages. Please wait.')
+        self.verbose_logger.log(logginglevels.INFO_2, _('--> Populating transaction set '
+            'with selected packages. Please wait.'))
     
     def downloadHeader(self, name):
-        self.verbose_logger.log(logginglevels.INFO_2, '---> Downloading header for %s '
-            'to pack into transaction set.', name)
+        self.verbose_logger.log(logginglevels.INFO_2, _('---> Downloading header for %s '
+            'to pack into transaction set.'), name)
        
 
 class CacheProgressCallback:
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 55e1a3e..c7b02c9 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -2,9 +2,7 @@
 callback.py
 cli.py
 output.py
-progress_meter.py
 shell.py
-translate.py
 utils.py
 yumcommands.py
 yummain.py
diff --git a/po/ru.po b/po/ru.po
index 87a5980..6ec8396 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,12 +3,11 @@
 # Grigory Bakunov <black at asplinux.ru>, 2002,2003.
 # Vladimir Bormotov <bor at insight.donbass.com>, 2002.
 #
-#: ../translate.py:221
 msgid ""
 msgstr ""
 "Project-Id-Version: yum\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-28 07:59+0100\n"
+"POT-Creation-Date: 2008-01-28 08:17+0100\n"
 "PO-Revision-Date: 2003-10-14 15:36+0400\n"
 "Last-Translator: Grigory Bakunov <black at asplinux.ru>\n"
 "Language-Team: Russian <ru at li.org>\n"
@@ -376,6 +375,10 @@ msgstr ""
 msgid "skip packages with depsolving problems"
 msgstr ""
 
+#: ../output.py:240
+msgid "Trying other mirror."
+msgstr ""
+
 #: ../output.py:267
 #, python-format
 msgid "Name   : %s"
@@ -425,6 +428,249 @@ msgstr ""
 "Описание:\n"
 " %s"
 
+#: ../output.py:320
+msgid "Is this ok [y/N]: "
+msgstr "Выполнить [y/N]: "
+
+#: ../output.py:334
+#, fuzzy, python-format
+msgid ""
+"\n"
+"Group: %s"
+msgstr "Группа: %s"
+
+#: ../output.py:336
+#, fuzzy, python-format
+msgid " Description: %s"
+msgstr ""
+"Описание:\n"
+" %s"
+
+#: ../output.py:338
+msgid " Mandatory Packages:"
+msgstr ""
+
+#: ../output.py:343
+#, fuzzy
+msgid " Default Packages:"
+msgstr "Удаление пакетов"
+
+#: ../output.py:348
+#, fuzzy
+msgid " Optional Packages:"
+msgstr "Поиск обновленных пакетов"
+
+#: ../output.py:353
+#, fuzzy
+msgid " Conditional Packages:"
+msgstr "Поиск обновленных пакетов"
+
+#: ../output.py:361
+#, fuzzy, python-format
+msgid "package: %s"
+msgstr "Удаление пакетов"
+
+#: ../output.py:363
+msgid "  No dependencies for this package"
+msgstr ""
+
+#: ../output.py:368
+#, python-format
+msgid "  dependency: %s"
+msgstr ""
+
+#: ../output.py:370
+msgid "   Unsatisfied dependency"
+msgstr ""
+
+#: ../output.py:453
+msgid "There was an error calculating total download size"
+msgstr ""
+
+#: ../output.py:458
+#, fuzzy, python-format
+msgid "Total size: %s"
+msgstr "Не обычный файл: %s"
+
+#: ../output.py:461
+#, fuzzy, python-format
+msgid "Total download size: %s"
+msgstr "Не обычный файл: %s"
+
+#: ../output.py:473
+msgid "Package"
+msgstr ""
+
+#: ../output.py:473
+msgid "Arch"
+msgstr "Арх."
+
+#: ../output.py:473
+msgid "Version"
+msgstr "Версия"
+
+#: ../output.py:473
+msgid "Repository"
+msgstr ""
+
+#: ../output.py:473
+msgid "Size"
+msgstr ""
+
+#: ../output.py:477
+#, fuzzy
+msgid "Installing"
+msgstr "Ошибки установки:"
+
+#: ../output.py:478
+msgid "Updating"
+msgstr ""
+
+#: ../output.py:479
+msgid "Removing"
+msgstr ""
+
+#: ../output.py:480
+#, fuzzy
+msgid "Installing for dependencies"
+msgstr "Разрешение зависимостей"
+
+#: ../output.py:481
+#, fuzzy
+msgid "Updating for dependencies"
+msgstr "Разрешение зависимостей"
+
+#: ../output.py:482
+#, fuzzy
+msgid "Removing for dependencies"
+msgstr "Разрешение зависимостей"
+
+#: ../output.py:494
+#, python-format
+msgid ""
+"     replacing  %s.%s %s\n"
+"\n"
+msgstr ""
+
+#: ../output.py:502
+#, python-format
+msgid ""
+"\n"
+"Transaction Summary\n"
+"=============================================================================\n"
+"Install  %5.5s Package(s)         \n"
+"Update   %5.5s Package(s)         \n"
+"Remove   %5.5s Package(s)         \n"
+msgstr ""
+
+#: ../output.py:520
+msgid "Removed"
+msgstr ""
+
+#: ../output.py:521
+#, fuzzy
+msgid "Dependency Removed"
+msgstr "Зависимости разрешены"
+
+#: ../output.py:522
+#, fuzzy
+msgid "Installed"
+msgstr "Установлено по зависимостям: "
+
+#: ../output.py:523
+#, fuzzy
+msgid "Dependency Installed"
+msgstr "Установлено по зависимостям: "
+
+#: ../output.py:524
+#, fuzzy
+msgid "Updated"
+msgstr "Обновлено: "
+
+#: ../output.py:525
+#, fuzzy
+msgid "Dependency Updated"
+msgstr "Зависимости разрешены"
+
+#: ../output.py:526
+msgid "Replaced"
+msgstr ""
+
+#: ../output.py:584
+#, python-format
+msgid ""
+"\n"
+" Current download cancelled, %sinterrupt (ctrl-c) again%s within %s%s%s "
+"seconds to exit.\n"
+msgstr ""
+
+#: ../output.py:594
+msgid "user interrupt"
+msgstr ""
+
+#: ../output.py:605
+#, fuzzy
+msgid "installed"
+msgstr "Установлено по зависимостям: "
+
+#: ../output.py:606
+#, fuzzy
+msgid "updated"
+msgstr "Обновлено: "
+
+#: ../output.py:607
+msgid "obsoleted"
+msgstr ""
+
+#: ../output.py:608
+#, fuzzy
+msgid "erased"
+msgstr "Удалено: "
+
+#: ../output.py:612
+#, fuzzy, python-format
+msgid "---> Package %s.%s %s:%s-%s set to be %s"
+msgstr ""
+"Установленный пакет: %s.%s %s:%s-%s предоставляет\n"
+" %s"
+
+#: ../output.py:619
+#, fuzzy
+msgid "--> Running transaction check"
+msgstr "Неизвестная ошибка в тестой транзакции:"
+
+#: ../output.py:624
+msgid "--> Restarting Dependency Resolution with new changes."
+msgstr ""
+
+#: ../output.py:629
+msgid "--> Finished Dependency Resolution"
+msgstr ""
+
+#: ../output.py:634
+#, python-format
+msgid "--> Processing Dependency: %s for package: %s"
+msgstr ""
+
+#: ../output.py:639
+#, python-format
+msgid "--> Unresolved Dependency: %s"
+msgstr ""
+
+#: ../output.py:645
+#, python-format
+msgid "--> Processing Conflict: %s conflicts %s"
+msgstr ""
+
+#: ../output.py:648
+msgid "--> Populating transaction set with selected packages. Please wait."
+msgstr ""
+
+#: ../output.py:652
+#, python-format
+msgid "---> Downloading header for %s to pack into transaction set."
+msgstr ""
+
 #: ../yumcommands.py:35
 #, fuzzy
 msgid "You need to be root to perform this command."
@@ -1232,9 +1478,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ "Уже найден кортеж: %s %s:\n"
 #~ "%s "
 
-#~ msgid "Dep Installed: "
-#~ msgstr "Установлено по зависимостям: "
-
 #~ msgid "errors found"
 #~ msgstr "найдены ошибки"
 
@@ -1313,9 +1556,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgid "[deps: %s]"
 #~ msgstr "[зависимость: %s]"
 
-#~ msgid "Version"
-#~ msgstr "Версия"
-
 #~ msgid "Looking in Available Packages:"
 #~ msgstr "Просмотр доступных пакетов"
 
@@ -1330,13 +1570,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgstr "Проверка зависимостей %d/d"
 
 #~ msgid ""
-#~ "Installed package: %s.%s %s:%s-%s matches with\n"
-#~ " %s"
-#~ msgstr ""
-#~ "Установленный пакет: %s.%s %s:%s-%s предоставляет\n"
-#~ " %s"
-
-#~ msgid ""
 #~ "Errors within the dir(s):\n"
 #~ " %s"
 #~ msgstr ""
@@ -1383,9 +1616,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgid "NonMatching RPM version, %s, removing."
 #~ msgstr "Несовпадающая версия RPM, %s, удаляется."
 
-#~ msgid "Is this ok [y/N]: "
-#~ msgstr "Выполнить [y/N]: "
-
 #~ msgid "I will erase these to satisfy the dependencies:"
 #~ msgstr "Необходимо удалить эти пакеты для разрешения зависимостей:"
 
@@ -1417,9 +1647,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgid "Unable to run grubby correctly: the message was:\n"
 #~ msgstr "Hевозможно запустить grubby:\n"
 
-#~ msgid "Not a normal file: %s"
-#~ msgstr "Не обычный файл: %s"
-
 #~ msgid "IOError - # %s - %s"
 #~ msgstr "Ошибка ввода-вывода - # %s - %s"
 
@@ -1432,9 +1659,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgid "Error: Disk space Error"
 #~ msgstr "Ошибка: Недостаточно места на диске"
 
-#~ msgid "Updated: "
-#~ msgstr "Обновлено: "
-
 #~ msgid "Need to pass a list of pkgs to install"
 #~ msgstr "Необходимо указать список пакетов для установки"
 
@@ -1453,9 +1677,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgstr ""
 #~ "Не найден файл настроек сервера - репозиторий не найден. Завершение."
 
-#~ msgid "Resolving dependencies"
-#~ msgstr "Разрешение зависимостей"
-
 #~ msgid ""
 #~ "\n"
 #~ "    Usage:  yum [options] <update | upgrade | install | info | remove | "
@@ -1521,9 +1742,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ "\n"
 #~ "Получение файла header.info"
 
-#~ msgid "Arch"
-#~ msgstr "Арх."
-
 #~ msgid "Gathering header information file(s) from server(s)"
 #~ msgstr "Получение файлов заголовков с серверов"
 
@@ -1642,9 +1860,6 @@ msgstr "Невозможно открыть пакет %s - ошибка %s"
 #~ msgid "Repo"
 #~ msgstr "Репозиторий"
 
-#~ msgid "Group  : %s"
-#~ msgstr "Группа: %s"
-
 #~ msgid "No bootloader found, Cannot configure kernel."
 #~ msgstr "Загрузчик не найден, загрузка нового ядра не настроена."
 
diff --git a/po/yum.pot b/po/yum.pot
index 9409f75..55f7a6b 100644
--- a/po/yum.pot
+++ b/po/yum.pot
@@ -3,13 +3,12 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
 #
-#: ../translate.py:221
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-28 07:59+0100\n"
+"POT-Creation-Date: 2008-01-28 08:17+0100\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"
@@ -358,6 +357,10 @@ msgstr ""
 msgid "skip packages with depsolving problems"
 msgstr ""
 
+#: ../output.py:240
+msgid "Trying other mirror."
+msgstr ""
+
 #: ../output.py:267
 #, python-format
 msgid "Name   : %s"
@@ -405,6 +408,229 @@ msgid ""
 "%s"
 msgstr ""
 
+#: ../output.py:320
+msgid "Is this ok [y/N]: "
+msgstr ""
+
+#: ../output.py:334
+#, python-format
+msgid ""
+"\n"
+"Group: %s"
+msgstr ""
+
+#: ../output.py:336
+#, python-format
+msgid " Description: %s"
+msgstr ""
+
+#: ../output.py:338
+msgid " Mandatory Packages:"
+msgstr ""
+
+#: ../output.py:343
+msgid " Default Packages:"
+msgstr ""
+
+#: ../output.py:348
+msgid " Optional Packages:"
+msgstr ""
+
+#: ../output.py:353
+msgid " Conditional Packages:"
+msgstr ""
+
+#: ../output.py:361
+#, python-format
+msgid "package: %s"
+msgstr ""
+
+#: ../output.py:363
+msgid "  No dependencies for this package"
+msgstr ""
+
+#: ../output.py:368
+#, python-format
+msgid "  dependency: %s"
+msgstr ""
+
+#: ../output.py:370
+msgid "   Unsatisfied dependency"
+msgstr ""
+
+#: ../output.py:453
+msgid "There was an error calculating total download size"
+msgstr ""
+
+#: ../output.py:458
+#, python-format
+msgid "Total size: %s"
+msgstr ""
+
+#: ../output.py:461
+#, python-format
+msgid "Total download size: %s"
+msgstr ""
+
+#: ../output.py:473
+msgid "Package"
+msgstr ""
+
+#: ../output.py:473
+msgid "Arch"
+msgstr ""
+
+#: ../output.py:473
+msgid "Version"
+msgstr ""
+
+#: ../output.py:473
+msgid "Repository"
+msgstr ""
+
+#: ../output.py:473
+msgid "Size"
+msgstr ""
+
+#: ../output.py:477
+msgid "Installing"
+msgstr ""
+
+#: ../output.py:478
+msgid "Updating"
+msgstr ""
+
+#: ../output.py:479
+msgid "Removing"
+msgstr ""
+
+#: ../output.py:480
+msgid "Installing for dependencies"
+msgstr ""
+
+#: ../output.py:481
+msgid "Updating for dependencies"
+msgstr ""
+
+#: ../output.py:482
+msgid "Removing for dependencies"
+msgstr ""
+
+#: ../output.py:494
+#, python-format
+msgid ""
+"     replacing  %s.%s %s\n"
+"\n"
+msgstr ""
+
+#: ../output.py:502
+#, python-format
+msgid ""
+"\n"
+"Transaction Summary\n"
+"=============================================================================\n"
+"Install  %5.5s Package(s)         \n"
+"Update   %5.5s Package(s)         \n"
+"Remove   %5.5s Package(s)         \n"
+msgstr ""
+
+#: ../output.py:520
+msgid "Removed"
+msgstr ""
+
+#: ../output.py:521
+msgid "Dependency Removed"
+msgstr ""
+
+#: ../output.py:522
+msgid "Installed"
+msgstr ""
+
+#: ../output.py:523
+msgid "Dependency Installed"
+msgstr ""
+
+#: ../output.py:524
+msgid "Updated"
+msgstr ""
+
+#: ../output.py:525
+msgid "Dependency Updated"
+msgstr ""
+
+#: ../output.py:526
+msgid "Replaced"
+msgstr ""
+
+#: ../output.py:584
+#, python-format
+msgid ""
+"\n"
+" Current download cancelled, %sinterrupt (ctrl-c) again%s within %s%s%s "
+"seconds to exit.\n"
+msgstr ""
+
+#: ../output.py:594
+msgid "user interrupt"
+msgstr ""
+
+#: ../output.py:605
+msgid "installed"
+msgstr ""
+
+#: ../output.py:606
+msgid "updated"
+msgstr ""
+
+#: ../output.py:607
+msgid "obsoleted"
+msgstr ""
+
+#: ../output.py:608
+msgid "erased"
+msgstr ""
+
+#: ../output.py:612
+#, python-format
+msgid "---> Package %s.%s %s:%s-%s set to be %s"
+msgstr ""
+
+#: ../output.py:619
+msgid "--> Running transaction check"
+msgstr ""
+
+#: ../output.py:624
+msgid "--> Restarting Dependency Resolution with new changes."
+msgstr ""
+
+#: ../output.py:629
+msgid "--> Finished Dependency Resolution"
+msgstr ""
+
+#: ../output.py:634
+#, python-format
+msgid "--> Processing Dependency: %s for package: %s"
+msgstr ""
+
+#: ../output.py:639
+#, python-format
+msgid "--> Unresolved Dependency: %s"
+msgstr ""
+
+#: ../output.py:645
+#, python-format
+msgid "--> Processing Conflict: %s conflicts %s"
+msgstr ""
+
+#: ../output.py:648
+msgid "--> Populating transaction set with selected packages. Please wait."
+msgstr ""
+
+#: ../output.py:652
+#, python-format
+msgid "---> Downloading header for %s to pack into transaction set."
+msgstr ""
+
 #: ../yumcommands.py:35
 msgid "You need to be root to perform this command."
 msgstr ""



More information about the Yum-cvs-commits mailing list