[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#637653: marked as done (pu: gdebi/0.6.4+squeeze1)



Your message dated Thu, 22 Sep 2011 01:55:03 +0000
with message-id <E1R6YVD-0003Ab-SD@franck.debian.org>
and subject line Bug#637653: fixed in gdebi 0.6.4+squeeze1
has caused the Debian Bug report #637653,
regarding pu: gdebi/0.6.4+squeeze1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
637653: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637653
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: pu


Hi SRMs,

I'd like to get your permission to upload to stable a fix for a bug that
happens only on certain locales (#629403). This solution should be more
robust than relying on correctness of the translations.

I attach a debdiff of the proposed changes. It's quite heavy because of
the offsets introduced in .po files (regenerated at build time) due to
line changes in the patch, real changes are limited to the files below:

 GDebi/GDebiCli.py |    7 ++++++-
 debian/changelog  |    8 ++++++++
 gdebi             |    7 ++++++-

Thanks in advance,

-- 
  .''`.
 :  :' :   Luca Falavigna <dktrkranz@debian.org>
 `.  `'
   `-
diff -Nru gdebi-0.6.4/debian/changelog gdebi-0.6.4+squeeze1/debian/changelog
--- gdebi-0.6.4/debian/changelog	2010-09-26 09:42:36.000000000 +0200
+++ gdebi-0.6.4+squeeze1/debian/changelog	2011-08-13 15:00:48.000000000 +0200
@@ -1,3 +1,11 @@
+gdebi (0.6.4+squeeze1) stable; urgency=low
+
+  * Try to determine correct localized value for "Y" answer by
+    parsing first value located into square brackets instead of
+    relying on an hardcoded value.
+
+ -- Luca Falavigna <dktrkranz@debian.org>  Sat, 13 Aug 2011 15:00:22 +0200
+
 gdebi (0.6.4) unstable; urgency=low
 
   [ David Prévot ]
diff -Nru gdebi-0.6.4/gdebi gdebi-0.6.4+squeeze1/gdebi
--- gdebi-0.6.4/gdebi	2010-09-26 09:42:36.000000000 +0200
+++ gdebi-0.6.4+squeeze1/gdebi	2011-08-13 14:58:40.000000000 +0200
@@ -30,6 +30,7 @@
 import os.path
 import gettext
 from gettext import gettext as _
+from re import findall
 
 from optparse import OptionParser
 from GDebi.GDebiCli import GDebiCli
@@ -107,5 +108,9 @@
     print msg,
     sys.stdout.flush()
     res = sys.stdin.readline()
-    if res.lower().startswith(msg[-5]):
+    try:
+        c = findall("[\[|\(](\S+)/\S+[\]|\)]", msg)[0].lower()
+    except IndexError:
+        c = "y"
+    if res.lower().startswith(c):
         debi.install()
diff -Nru gdebi-0.6.4/GDebi/GDebiCli.py gdebi-0.6.4+squeeze1/GDebi/GDebiCli.py
--- gdebi-0.6.4/GDebi/GDebiCli.py	2010-09-26 09:42:36.000000000 +0200
+++ gdebi-0.6.4+squeeze1/GDebi/GDebiCli.py	2011-08-13 14:58:40.000000000 +0200
@@ -31,6 +31,7 @@
 import thread
 
 from gettext import gettext as _
+from re import findall
 
 from apt.cache import Cache
 from DebPackage import DebPackage, DscSrcPackage
@@ -151,5 +152,9 @@
     print msg,
     sys.stdout.flush()
     res = sys.stdin.readline()
-    if res.lower().startswith(msg[-5]):
+    try:
+        c = findall("[\[|\(](\S+)/\S+[\]|\)]", msg)[0].lower()
+    except IndexError:
+        c = "y"
+    if res.lower().startswith(c):
         app.install()
diff -Nru gdebi-0.6.4/po/bn.po gdebi-0.6.4+squeeze1/po/bn.po
--- gdebi-0.6.4/po/bn.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/bn.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-06 09:57+0000\n"
 "Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
 "Language-Team: Bengali <bn@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr ""
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi সমস�যা, ফা�ল পা��া যা� নি: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "'%s' প�যা��� �নস��ল �রত� ব�যর�থ"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "�পনি �ি সফ����যার প�যা����ি �নস��ল �রত� �ান? [y/N]:"
 
@@ -394,53 +394,53 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "দ�া �র� '%s' ড�রা�ভ� '%s' প�রব�শ �রান"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "সফ����যার প�যা����ি ��লত� ব�যর�থ"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "'%s' প�যা��� �নস��ল হ����"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "��ন বর�ননা পা��া যা� নি"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "�নস��ল �রত� হব�: %s"
diff -Nru gdebi-0.6.4/po/ca.po gdebi-0.6.4+squeeze1/po/ca.po
--- gdebi-0.6.4/po/ca.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/ca.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-03-27 21:18+0000\n"
 "Last-Translator: Rosetta Administrators <rosetta@launchpad.net>\n"
 "Language-Team: Catalan <ca@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr ""
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr ""
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Hi ha un conflicte amb un paquet instal·lat: «%s»"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr ""
 
@@ -410,52 +410,52 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Inseriu «%s» a la unitat «%s»"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Es necessita instal·lar %s paquets de l'arxiu"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "A instal·lar: %s"
diff -Nru gdebi-0.6.4/po/cs.po gdebi-0.6.4+squeeze1/po/cs.po
--- gdebi-0.6.4/po/cs.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/cs.po	2011-08-13 15:00:53.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gdebi 0.6.1\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2010-07-22 15:31+0200\n"
 "Last-Translator: Michal Simunek <michal.simunek@gmail.com>\n"
 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -18,7 +18,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -27,37 +27,37 @@
 "používání: %prog [volby] název_souboru\n"
 "Pro grafickou verzi spusťte gdebi-gtk\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Spustit neinteraktivnÄ? (nebezpeÄ?né!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "Nastavit pÅ?edvolby pro APT"
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "Nezobrazovat informace o průbÄ?hu"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 "Pouze simulovat a vypsat Å?ádek kompatibilní s apt-get install do stderr"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Použít alternativní koÅ?enový adresáÅ?"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "chyba gdebi, nenalezen soubor: %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "Pro instalaci balíků musíte být root"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "PÅ?ejete si nainstalovat balík? [a/N]:"
 
@@ -406,25 +406,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Vložte prosím '%s' do jednotky '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Položky nastavení musí být zadány s =<value>\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "Nelze nastavit APT pÅ?edvolbu %s na %s\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "Neznámý typ balíku '%s', ukonÄ?uje se\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "NezdaÅ?ilo se otevÅ?ít softwarový balík\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -432,27 +432,27 @@
 "Balík je buÄ? poÅ¡kozený nebo nejste oprávnÄ?ni otevÅ?ít tento soubor. "
 "Zkontrolujte práva souboru.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "Tento balík nelze nainstalovat\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Není k dispozici žádný popis"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Následující balíky NEJSOU OVÄ?Å?ENÃ?: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Je vyžadováno ODSTRANÄ?NÃ? následujících balíků: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Je vyžadovaná instalace následujících balíků: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, python-format
 msgid "Error during install: '%s'"
 msgstr "Chyba bÄ?hem instalace: %s"
diff -Nru gdebi-0.6.4/po/da.po gdebi-0.6.4+squeeze1/po/da.po
--- gdebi-0.6.4/po/da.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/da.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2009-01-19 21:58+0000\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -19,7 +19,7 @@
 "X-Launchpad-Export-Date: 2009-01-21 17:28+0000\n"
 "X-Generator: Launchpad (build Unknown)\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -28,36 +28,36 @@
 "brug: %prog [tilvalg] filnavn\n"
 "For grafisk version kør gdebi-gtk\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Kør ikke-interaktivt (farligt!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "Indstil et APT-konfigurationstilvalg"
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "Vis ikke hvor langt installationen er nået"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr "Simuler kun og udskriv en apt-get install kompatibel linje til stderr"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Brug alternativ rootmappe"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi fejl, fil ikke fundet: %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "Skal være root for at installere pakker"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Ã?nsker du at installere softwarepakken? [j/N]:"
 
@@ -411,25 +411,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Indsæt venligst »%s« i drevet »%s«"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Konfigurationspunkter skal være specificeret med et =<værdi>\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "Kunne ikke indstille APT-tilvalg %s til %s\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "Ukendt pakketype »%s«, afslutter\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Kunne ikke åbne softwarepakken\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -437,27 +437,27 @@
 "Pakken er måske korrupt, eller du har ikke tilladelse til at åbne filen. "
 "Undersøg rettighederne på filen.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "Denne pakke kan ikke installeres\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Ingen beskrivelse er tilgængelig"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "De følgende pakker er IKKE GODKENDT: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Kræver FJERNELSE af de følgende pakker: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Kræver installation af de følgende pakker: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "IO-fejl under læsning af filliste: %s"
diff -Nru gdebi-0.6.4/po/de.po gdebi-0.6.4+squeeze1/po/de.po
--- gdebi-0.6.4/po/de.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/de.po	2011-08-13 15:00:53.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: gdebi 0.1.4\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-14 18:00+0000\n"
 "Last-Translator: Sebastian Renner <sebastianrenner@gmx.li>\n"
 "Language-Team: German <gnome-de@gnome.org>\n"
@@ -20,44 +20,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Keine Rückfragen stellen (gefährlich!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi Fehler, konnte »%s« nicht öffnen"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Konnte das Paket »%s« nicht installieren"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Wollen Sie das Software-Paket installieren? [j/N]:"
 
@@ -412,26 +412,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Bitte legen Sie »%s« in das Laufwerk »%s« ein"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Konnte das Software-Paket nicht öffnen"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -440,28 +440,28 @@
 "Das Paket ist möglicherweise beschädigt oder es ist Ihnen nicht erlaubt die "
 "Datei zu öffnen. �berprüfen Sie die Dateizugriffsrechte."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Das Paket kann nicht installiert werden"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Keine Beschreibung verfügbar"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Die folgenden Pakete sind NICHT BEGLAUBIGT: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Erfordert das ENTFERNEN folgender Pakete: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Erfordert das Installieren folgender Pakete: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Geben Sie Ihr Passwort ein um »%s« zu installieren"
diff -Nru gdebi-0.6.4/po/es.po gdebi-0.6.4+squeeze1/po/es.po
--- gdebi-0.6.4/po/es.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/es.po	2011-08-13 15:00:53.000000000 +0200
@@ -31,7 +31,7 @@
 msgstr ""
 "Project-Id-Version: gdebi 0.6.0\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2010-04-11 12:35+0200\n"
 "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
 "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -40,7 +40,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -49,38 +49,38 @@
 "Uso: %prog [opciones] nombre_de_archivo\n"
 "Ejecute «gdebi-gtk» para la versión gráfica.\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Ejecución no interactiva (¡peligroso!)."
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "Definir una opción de configuración de APT."
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "No mostrar información de progreso."
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 "Sólo simular y mostrar una línea compatible con «apt-get install» a través "
 "de la salida estándar."
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Usar un directorio raíz alternativo."
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "Error de gdebi, archivo no encontrado: %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "Necesita ser el administrador para instalar paquetes."
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "¿Quiere instalar el paquete de software? [s/N]:"
 
@@ -435,25 +435,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Por favor, inserte «%s» en la unidad «%s»"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Los elementos de configuración se deben especificar con un =<valor>\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "No se pudo definir la opción de APT %s como %s\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "El paquete «%s» es de tipo desconocido, cerrando\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Fallo al abrir el paquete de software\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -461,27 +461,27 @@
 "El paquete podría estar dañado, o puede que usted no tenga permisos para "
 "abrir el archivo. Revise los permisos del archivo.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "No se puede instalar este paquete\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "No hay descripción disponible"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Los siguientes paquetes NO están AUTENTICADOS: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Requiere la DESINSTALACIÃ?N de los siguientes paquetes: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Requiere la instalación de los siguientes paquetes: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, python-format
 msgid "Error during install: '%s'"
 msgstr "Error durante la instalación: «%s»"
diff -Nru gdebi-0.6.4/po/fi.po gdebi-0.6.4+squeeze1/po/fi.po
--- gdebi-0.6.4/po/fi.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/fi.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2007-03-12 23:38+0200\n"
 "Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
 "Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
@@ -18,7 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Rosetta-Export-Date: 2007-03-12 21:18+0000\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -27,39 +27,39 @@
 "käyttö: %prog [valitsimet] tiedosto\n"
 "Aja gdebi-gtk jos haluat graafisen version\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Suorita piilotetussa tilassa (vaarallista!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "�lä näytä tietoja edistymisestä"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 "Tee vain simulointi, ja tulosta apt-get install -yhteensopiva komentorivi "
 "stderr-ulostuloon"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Käytä vaihtoehtoista juurihakemistoa"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebin virhe, tiedostoa ei löydy: %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Paketin \"%s\" asennus epäonnistui"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Haluatko asentaa tämän ohjelmapaketin? [k/E]:"
 
@@ -407,25 +407,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Laita levy \"%s\" asemaan \"%s\""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Ohjelmapakettia ei voitu avata\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -433,27 +433,27 @@
 "Paketti voi olla viallinen tai oikeutesi eivät riitä tiedoston avaamiseen. "
 "Tarkista tiedoston oikeudet.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "Tämä paketti ei ole asennuskelpoinen\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Kuvausta ei ole saatavilla"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Seuraavien pakettien tekijää ei voida varmistaa: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Vaatii seuraavien pakettien poistamista: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Vaatii seuraavien pakettien asentamista: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Syötä salasanasi, jotta voit asentaa paketin \"%s\""
diff -Nru gdebi-0.6.4/po/fr.po gdebi-0.6.4+squeeze1/po/fr.po
--- gdebi-0.6.4/po/fr.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/fr.po	2011-08-13 15:00:53.000000000 +0200
@@ -17,7 +17,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2010-08-23 22:19-0400\n"
 "Last-Translator: David Prévot <david@tilapin.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -31,7 +31,7 @@
 "X-Poedit-Language: French\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -40,38 +40,38 @@
 "utilisation : %prog [options] nom-du-fichier\n"
 "Pour une version graphique, utiliser gdebi-gtk\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Lancer de façon non interactive (dangereux !)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "Définir une option de configuration d'APT"
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "Ne pas afficher l'état d'avancement"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 "Simuler uniquement et afficher la sortie comme le ferait une commande « apt-"
 "get install » dans stderr"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Utiliser un répertoire racine alternatif"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "erreur gdebi, fichier introuvable : %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "L'installation de paquets requiert les droits d'administration"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Voulez-vous installer le paquet logiciel ? [o/N] :"
 
@@ -430,25 +430,25 @@
 msgstr ""
 "Veuillez insérer le disque dont le nom est « %s » dans le lecteur « %s »"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Les éléments de configuration doivent être spécifiés avec =<value>\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "Impossible de définir l'option APT %s à %s\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "Type de paquet « %s » inconnu, arrêt\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Ã?chec de l'ouverture du paquet logiciel\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -456,27 +456,27 @@
 "Ce paquet est peut-être corrompu, ou vous n'avez pas les permissions pour y "
 "accéder. Vérifiez les permissions du fichier.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "Ce paquet ne peut pas être installé\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Aucune description n'est disponible"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Les paquets suivants NE SONT PAS AUTHENTIFI�S : "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Nécessite la D�SINSTALLATION des paquets suivants : "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Nécessite l'installation des paquets suivants : "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, python-format
 msgid "Error during install: '%s'"
 msgstr "Erreur d'installation : %s"
diff -Nru gdebi-0.6.4/po/gdebi.pot gdebi-0.6.4+squeeze1/po/gdebi.pot
--- gdebi-0.6.4/po/gdebi.pot	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/gdebi.pot	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,43 +17,43 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr ""
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr ""
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr ""
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr ""
 
@@ -388,51 +388,51 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, python-format
 msgid "Error during install: '%s'"
 msgstr ""
diff -Nru gdebi-0.6.4/po/he.po gdebi-0.6.4+squeeze1/po/he.po
--- gdebi-0.6.4/po/he.po	2010-09-26 09:44:47.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/he.po	2011-08-13 15:00:53.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2010-08-29 16:55+0000\n"
 "Last-Translator: Yaron <sh.yaron@gmail.com>\n"
 "Language-Team: Hebrew <he@li.org>\n"
@@ -18,7 +18,7 @@
 "X-Launchpad-Export-Date: 2010-09-01 09:08+0000\n"
 "X-Generator: Launchpad (build Unknown)\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -27,36 +27,36 @@
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "×?פע×?×? ×?×? ×?×?× ×?ר×?ק×?×?×?×?ת (×?ס×?×?×?!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "Set an APT configuration option"
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "Do not show progress information"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr "Simulate only and print a apt-get install compatible line to stderr"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Use alternative root dir"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi error, file not found: %s\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "Need to be root to install packages"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Do you want to install the software package? [y/N]:"
 
@@ -407,25 +407,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "× ×? ×?×?×?× ×?ס ×?ת \"%s\" ×?×?×?× ×? \"%s\"."
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Configuration items must be specified with a =<value>\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "Couldn't set APT option %s to %s\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "Unknown package type '%s', exiting\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Failed to open the software package\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -433,27 +433,27 @@
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "This package is uninstallable\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "×?×?×? ת×?×?×?ר ×?×?×?×?"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "The following packages are UNAUTHENTICATED: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Requires the REMOVAL of the following packages: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Requires the installation of the following packages: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "ש×?×?×?ת ק×?×? פ×?×? ×?×?×?×?×? קר×?×?ת רש×?×?ת ×?ק×?צ×?×?: %s"
diff -Nru gdebi-0.6.4/po/hr.po gdebi-0.6.4+squeeze1/po/hr.po
--- gdebi-0.6.4/po/hr.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/hr.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-14 06:11+0000\n"
 "Last-Translator: Ante KaramatiÄ? <ivoks@ubuntu.com>\n"
 "Language-Team: Croatian <hr@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Pokreni bez interakcije (opasno!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi greÅ¡ka, datoteka '%s' nije pronaÄ?ena"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Instalacija paketa '%s' nije uspjela"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Želite li instalirati paket? [d/N]:"
 
@@ -407,26 +407,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Molim, ubacite '%s' u ureÄ?aj '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Ne mogu otvoriti paket"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -435,28 +435,28 @@
 "Paket je neispravan ili nemate dozvolu ga otvoriti. Provjerite dozvole na "
 "datoteci."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Ovaj paket se ne može instalirati"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Opis nije dostupan"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "SlijedeÄ?i paketi NISU autorizirani: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Zahtijeva UKLANJANJE slijedeÄ?ih paketa: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Zahtijeva instalaciju slijedeÄ?ih paketa: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Za instalaciju: %s"
diff -Nru gdebi-0.6.4/po/hu.po gdebi-0.6.4+squeeze1/po/hu.po
--- gdebi-0.6.4/po/hu.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/hu.po	2011-08-13 15:00:53.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-11 20:19+0000\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <hu@li.org>\n"
@@ -16,44 +16,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Futtatás nem interaktív módban (veszélyes!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi hiba, nem található a következÅ? fájl: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Nem sikerült telepíteni a következÅ? csomagot: \"%s\""
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Kívánja telepíteni a szoftvercsomagot? [y/N]:"
 
@@ -409,26 +409,26 @@
 msgstr ""
 "Helyezze be a következÅ? adathordozót: \"%s\", ebbe a meghajtóba: \"%s\""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "A szoftvercsomag megnyitása meghiúsult"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -437,28 +437,28 @@
 "A csomag sérült lehet vagy nincs joga a fájl megnyitásához. EllenÅ?rizze a "
 "fájl jogosultságait."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Ez a csomag telepíthetetlen"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Nem érhetÅ? el leírás"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Az alábbi csomagok NINCSENEK HITELES�TVE: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "A következÅ? csomagok ELTÃ?VOLÃ?TÃ?SA szükséges: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "A következÅ? csomagok telepítése szükséges: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Adja meg jelszavát a következÅ? telepítéséhez: %s"
diff -Nru gdebi-0.6.4/po/id.po gdebi-0.6.4+squeeze1/po/id.po
--- gdebi-0.6.4/po/id.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/id.po	2011-08-13 15:00:53.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-16 08:00+0000\n"
 "Last-Translator: Andy Apdhani <imtheface@gmail.com>\n"
 "Language-Team: Indonesian <id@li.org>\n"
@@ -16,44 +16,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Jalankan non-interaktif (berbahaya!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi ada kesalahan, berkas tidak ditemukan: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Gagal menginstal paket '%s'"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Apakah anda ingin menginstal paket perangkat lunak? [y/N]:"
 
@@ -406,26 +406,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Silakan masukan '%s' ke dalam penggerak '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Gagal membuka paket perangkat lunak"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -434,28 +434,28 @@
 "Paket mungkin rusak atau anda tidak diizinkan untuk membuka berkas. Periksa "
 "hak izin dari berkas."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Paket ini tidak dapat diunistal"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Deskripsi tidak tersedia"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Paket berikut belum DIOTENTIFIKASI: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Membutuhkan PENGHAPUSAN dari paket berikut: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Membutuhkan instalasi dari paket berikut: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Akan diinstal: %s"
diff -Nru gdebi-0.6.4/po/it.po gdebi-0.6.4+squeeze1/po/it.po
--- gdebi-0.6.4/po/it.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/it.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-08 15:32+0000\n"
 "Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
 "Language-Team: Italian <it@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Esecuzione non-interattiva (pericoloso!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "errore di gdebi, file non trovato: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Installazione pacchetto «%s» fallita"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Installare il pacchetto software? [y/N]:"
 
@@ -409,26 +409,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Inserire «%s» nell'unità «%s»"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Apertura del pacchetto software fallita"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -437,28 +437,28 @@
 "Il pacchetto potrebbe essere danneggiato oppure non si ha il permesso di "
 "aprire il file. Verificare i permessi sul file."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Questo pacchetto non è installabile"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Nessuna descrizione disponibile"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "I seguenti pacchetti NON SONO AUTENTICATI: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Richiede la RIMOZIONE dei seguenti pacchetti: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Richiede l'installazione dei seguenti pacchetti: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Da installare: %s"
diff -Nru gdebi-0.6.4/po/ko.po gdebi-0.6.4+squeeze1/po/ko.po
--- gdebi-0.6.4/po/ko.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/ko.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-09 13:25+0000\n"
 "Last-Translator: atie <atie.at.matrix@gmail.com>\n"
 "Language-Team: Korean <ko@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "ë??í??ì??ì?´ ì?¤í?? (ì??í??í?¨!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi ì??ë?¬, í??ì?¼ì?? ì°¾ì?? ì?? ì??ì?µë??ë?¤: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "'%s' í?¨í?¤ì§? ì?¤ì¹?를 ì?¤í?¨ í??ì??ì?µë??ë?¤"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "ì??í??í?¸ì?¨ì?´ í?¨í?¤ì§?를 ì?¤ì¹?í??기를 ì??í??ì?­ë??ê¹?? [y/N]:"
 
@@ -405,26 +405,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "'%s'(ì??)를 ë??ë?¼ì?´ë¸? '%s'ì?? ë?£ì?¼ì?­ì??ì?¤"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "ì??í??í?¸ì?¨ì?´ í?¨í?¤ì§?를 ì?¬ë??ë?° ì?¤í?¨ í??ì??ì?µë??ë?¤"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -433,28 +433,28 @@
 "í?¨í?¤ì§?ê°? ì??못 ë??ì??ê±°ë?? í??ì?¼ì?? ì?¬ë?? ê²?ì?´ í??ì?©ë??ì§? ì??ì??ì?µë??ë?¤. í??ì?¼ì?? ì ?ê·¼ ê¶?í??"
 "ì?? ì ?ê²? í??ì?­ì??ì?¤."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "ì?´ í?¨í?¤ì§?ë?? ì?¤ì¹?í?  ì?? ì??ì?µë??ë?¤"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "ì?¤ëª?ì?´ ì??ì?µë??ë?¤"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "ë?¤ì?? í?¨í?¤ì§?ë?? ì?¸ì¦?ë??ì§? ì??ì??ì?µë??ë?¤: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "ë?¤ì?? í?¨í?¤ì§?ì?? ì?­ì ?ê°? í??ì?? í?©ë??ë?¤: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "ë?¤ì?? í?¨í?¤ì§?ì?? ì?¤ì¹?ê°? í??ì?? í?©ë??ë?¤: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "���: %s"
diff -Nru gdebi-0.6.4/po/ku.po gdebi-0.6.4+squeeze1/po/ku.po
--- gdebi-0.6.4/po/ku.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/ku.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-13 13:45+0000\n"
 "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
 "Language-Team: Kurdish <ku@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr ""
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "�ewtiya gdebi, dosya nehat dîtin: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Sazkirina paketa '%s' serneket"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr ""
 
@@ -394,53 +394,53 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Vekirina paketa nivîsbariyê serneket"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Ev paket nayê sazkirin"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Daxuyanî tune"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "RAKIRINA van paketan pêwîst dike: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Sazkirina van paketan pêwîst dike: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Were sazkirin: %s"
diff -Nru gdebi-0.6.4/po/nl.po gdebi-0.6.4+squeeze1/po/nl.po
--- gdebi-0.6.4/po/nl.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/nl.po	2011-08-13 15:00:53.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-11 19:00+0000\n"
 "Last-Translator: Jan Claeys <ubuntu@janc.be>\n"
 "Language-Team: Dutch <nl@li.org>\n"
@@ -18,44 +18,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Niet-interactief uitvoeren (gevaarlijk!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi-fout, bestand niet gevonden: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Kon pakket '%s' niet installeren"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Wilt u het softwarepakket installeren? [j/N]:"
 
@@ -409,26 +409,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Plaats '%s' in station '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Kon het softwarepakket niet openen"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -437,28 +437,28 @@
 "Het pakket kan corrupt zijn, of u hebt niet genoeg rechten om het bestand te "
 "openen. Controleer de rechten van het bestand."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Dit pakket is niet installeerbaar"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Geen omschrijving beschikbaar"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "De volgende pakketten zijn ONGEAUTHORISEERD: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Vereist de VERWIJDERING van de volgende pakketen: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Vereist de installatie van de volgende pakketen: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Geef uw wachtwoord om '%s' te installeren"
diff -Nru gdebi-0.6.4/po/pl.po gdebi-0.6.4+squeeze1/po/pl.po
--- gdebi-0.6.4/po/pl.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/pl.po	2011-08-13 15:00:53.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-18 19:26+0000\n"
 "Last-Translator: Zygmunt Krynicki <zkrynicki@gmail.com>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Uruchom nie-interaktywnie (niebezpieczne!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "bÅ?Ä?d gdebi, nie można znaleźÄ? pliku: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Instalacja pakietu \"%s\" zakoÅ?czona niepowodzeniem"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Czy chcesz zainstalowaÄ? ten pakiet oprogramowania? [t/N]:"
 
@@ -408,26 +408,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "ProszÄ? wÅ?ożyÄ? \"%s\" do napÄ?du \"%s\""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Nie udaÅ?o siÄ? otworzyÄ? pakietu oprogramowania"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -436,28 +436,28 @@
 "Ten pakiet może byÄ? uszkodzony. Sprawdź też czy masz wystarczajÄ?ce "
 "uprawnienia do otworzenia pliku."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Nie można odinstalowaÄ? tego pakietu"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Opis niedostÄ?pny"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Poniższe pakiety sÄ? NIEUWIERZYTELNIONE: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Wymaga USUNIÄ?CIA poniższych pakietów: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Wymaga instalacji poniższych pakietów: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Do zainstalowania: %s"
diff -Nru gdebi-0.6.4/po/pt_BR.po gdebi-0.6.4+squeeze1/po/pt_BR.po
--- gdebi-0.6.4/po/pt_BR.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/pt_BR.po	2011-08-13 15:00:54.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-10 16:51+0000\n"
 "Last-Translator: Fábio Nogueira <deb-user-ba@ubuntu.com>\n"
 "Language-Team: Portuguese (Brazil) <pt_BR@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Executar em modo não-interativo (perigoso!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "erro do gdebi, arquivo não encontrado: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Falha ao instalar o pacote '%s'"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Você quer instalar o pacote? [s/N]"
 
@@ -405,26 +405,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Por favor insira '%s' no drive '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Falha ao abrir o pacote"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -433,28 +433,28 @@
 "O pacote pode estar corrompido ou não é permitido você abrir o arquivo. "
 "Verifique as permissões do arquivo."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Este pacote não pode ser desinstalado"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Nenhuma descrição disponível"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Os seguintes pacotes são INAUTENTIC�VEIS: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Requer a REMOÃ?Ã?O dos seguintes pacotes: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Requer a instalação dos seguintes pacotes: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "A ser instalado: %s"
diff -Nru gdebi-0.6.4/po/pt.po gdebi-0.6.4+squeeze1/po/pt.po
--- gdebi-0.6.4/po/pt.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/pt.po	2011-08-13 15:00:54.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-14 13:16+0000\n"
 "Last-Translator: Rui Az. <astronomy@mail.pt>\n"
 "Language-Team: Portuguese <pt@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Executar em não-interactivo (perigoso!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "erro do gdebi, ficheiro não encontrado: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Falha ao instalar pacote '%s'"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Deseja instalar o pacote de software? [y/N]:"
 
@@ -407,26 +407,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Por favor insira '%s' no leitor '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Falha para abrir pacote de software"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -435,28 +435,28 @@
 "O pacote poderá estar corrompido ou não lhe é permitido abrir o ficheiro. "
 "Verifique as permissões do ficheiro."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Este pacote não é desinstalável"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Nenhuma descrição está disponível"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Os pacotes seguintes são N�O-AUTENTICADOS: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Requer a REMOÃ?Ã?O dos pacotes seguintes: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Requer a instalação dos pacotes seguintes: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Introduza a sua senha para instalar '%s'"
diff -Nru gdebi-0.6.4/po/ru.po gdebi-0.6.4+squeeze1/po/ru.po
--- gdebi-0.6.4/po/ru.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/ru.po	2011-08-13 15:00:54.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-17 03:25+0000\n"
 "Last-Translator: Igor Zubarev <igor4u@gmail.com>\n"
 "Language-Team: Russian <ru@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Ð?апÑ?Ñ?Ñ?иÑ?Ñ? неинÑ?еÑ?акÑ?ивно (опаÑ?но!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "оÑ?ибка gdebi, Ñ?айл не найден: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Ð?е Ñ?далоÑ?Ñ? Ñ?Ñ?Ñ?ановиÑ?Ñ? пакеÑ? '%s'"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Ð?Ñ? Ñ?оÑ?иÑ?е Ñ?Ñ?Ñ?ановиÑ?Ñ? Ñ?Ñ?оÑ? пакеÑ?? [y/N]"
 
@@ -407,26 +407,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Ð?ожалÑ?йÑ?Ñ?а вÑ?Ñ?авÑ?Ñ?е '%s' в пÑ?ивод '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Ð?е Ñ?далоÑ?Ñ? оÑ?кÑ?Ñ?Ñ?Ñ? пакеÑ?"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -435,28 +435,28 @@
 "Ð?озможно пакеÑ? повÑ?ежден, или Ð?ам не позволено оÑ?кÑ?Ñ?ваÑ?Ñ? Ñ?айл. Ð?Ñ?овеÑ?Ñ?Ñ?е "
 "пÑ?ава Ñ?айла."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "ЭÑ?оÑ? пакеÑ? нелÑ?зÑ? Ñ?Ñ?Ñ?ановиÑ?Ñ?"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Ð?пиÑ?ание недоÑ?Ñ?Ñ?пно"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "СледÑ?Ñ?Ñ?ие пакеÑ?Ñ? Ð?Ð?Ð?Ð?ТÐ?РÐ?Ð?Ð?Ð?Ð?Ð?Ы: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "ТÑ?ебÑ?еÑ? УÐ?Ð?Ð?Ð?Ð?Ð?Я Ñ?ледÑ?Ñ?Ñ?иÑ? пакеÑ?ов: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "ТÑ?ебÑ?еÑ? Ñ?Ñ?Ñ?ановки Ñ?ледÑ?Ñ?Ñ?иÑ? пакеÑ?ов: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Ð?лÑ? Ñ?Ñ?Ñ?ановки: %s"
diff -Nru gdebi-0.6.4/po/sk.po gdebi-0.6.4+squeeze1/po/sk.po
--- gdebi-0.6.4/po/sk.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/sk.po	2011-08-13 15:00:54.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-05-16 21:08+0000\n"
 "Last-Translator: Peter Chabada <ubuntu@chabada.sk>\n"
 "Language-Team: Slovak <sk@li.org>\n"
@@ -17,44 +17,44 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "SpustiÅ¥ neinteraktívne (nebezpeÄ?né!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "Nastala chyba, súbor nebol nájdený: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Nepodarilo sa nainštalovať balík '%s'"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Chcete nainštalovať tento softvérový balík? [y/N]:"
 
@@ -407,26 +407,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Prosím, vložte '%s' do mechaniky '%s'"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Nepodarilo sa otvoriť softvérový balík"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -435,28 +435,28 @@
 "Balík môže byť poškodený alebo nie ste oprávnený otvoriť súbor s balíkom. "
 "Skontrolujte práva k súboru."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Tento balík nie je možné naištalovať"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Nie je dostupný žiadny popis"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Pri nasledovných balíkoch NEBOLO MOŽN� OVERIŤ PRAVOSŤ: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Vyžaduje ODSTR�NENIE nasledových balíkov: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Vyžaduje inštaláciu nasledových balíkov: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Bude sa inštalovať: %s"
diff -Nru gdebi-0.6.4/po/sr.po gdebi-0.6.4+squeeze1/po/sr.po
--- gdebi-0.6.4/po/sr.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/sr.po	2011-08-13 15:00:54.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-29 17:23+0000\n"
 "Last-Translator: Jovan Turanjanin <jovan_turanjanin@yahoo.com>\n"
 "Language-Team: Serbian <sr@li.org>\n"
@@ -17,43 +17,43 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr ""
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi гÑ?еÑ?ка, даÑ?оÑ?ека ниÑ?е наÑ?ена: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr ""
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr ""
 
@@ -390,51 +390,51 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, python-format
 msgid "Error during install: '%s'"
 msgstr ""
diff -Nru gdebi-0.6.4/po/sv.po gdebi-0.6.4+squeeze1/po/sv.po
--- gdebi-0.6.4/po/sv.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/sv.po	2011-08-13 15:00:54.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gdebi 0.1.4\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2006-04-23 13:00+0000\n"
 "Last-Translator: Christian Bjälevik <nafallo@ubuntu.com>\n"
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -16,44 +16,44 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
 "For a graphical version run gdebi-gtk\n"
 msgstr ""
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "Kör icke-interaktivt (farligt!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr ""
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr ""
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr ""
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr ""
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, fuzzy, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi-fel, filen hittades inte: %s"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 #, fuzzy
 msgid "Need to be root to install packages"
 msgstr "Misslyckades med att installera paketet \"%s\""
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Vill du installera programvarupaketet? [j/N]:"
 
@@ -404,26 +404,26 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Mata in \"%s\" i enheten \"%s\""
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr ""
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 #, fuzzy
 msgid "Failed to open the software package\n"
 msgstr "Misslyckades med att öppna programvarupaketet"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 #, fuzzy
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
@@ -432,28 +432,28 @@
 "Paketet kan vara skadat eller så tillåts du inte att öppna filen. "
 "Kontrollera rättigheterna på filen."
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 #, fuzzy
 msgid "This package is uninstallable\n"
 msgstr "Detta paket är inte installerbart"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Ingen beskrivning finns tillgänglig"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Följande paket är INTE AUTENTISERADE: "
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Kräver BORTTAGNING av följande paket: "
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Kräver installation av följande paket: "
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Ange ditt lösenord för att installera \"%s\""
diff -Nru gdebi-0.6.4/po/tr.po gdebi-0.6.4+squeeze1/po/tr.po
--- gdebi-0.6.4/po/tr.po	2010-09-26 09:44:48.000000000 +0200
+++ gdebi-0.6.4+squeeze1/po/tr.po	2011-08-13 15:00:54.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gdebi\n"
 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2010-09-26 07:44+0000\n"
+"POT-Creation-Date: 2011-08-13 15:00+0200\n"
 "PO-Revision-Date: 2008-07-10 19:01+0200\n"
 "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
@@ -18,7 +18,7 @@
 "X-Launchpad-Export-Date: 2008-07-09 21:04+0000\n"
 "X-Generator: Launchpad (build Unknown)\n"
 
-#: ../gdebi:47
+#: ../gdebi:48
 #, c-format
 msgid ""
 "usage: %prog [options] filename\n"
@@ -27,36 +27,36 @@
 "kullanım: %prog [seçenekler] dosyaadı\n"
 "Görsel sürüm için gdebi-gtk'yı çalıÅ?tırın\n"
 
-#: ../gdebi:53 ../gdebi-gtk:53
+#: ../gdebi:54 ../gdebi-gtk:53
 msgid "Run non-interactive (dangerous!)"
 msgstr "EtkileÅ?imsiz çalıÅ? (tehlikeli!)"
 
-#: ../gdebi:57
+#: ../gdebi:58
 msgid "Set an APT configuration option"
 msgstr "APT yapılandırma seçeneklerini ayarla"
 
-#: ../gdebi:61
+#: ../gdebi:62
 msgid "Do not show progress information"
 msgstr "İlerleme bilgisini gösterme"
 
-#: ../gdebi:65
+#: ../gdebi:66
 msgid "Simulate only and print a apt-get install compatible line to stderr"
 msgstr "Sadece benzetim yap ve apt-get install uyumlu satırı stderr'a bas"
 
-#: ../gdebi:67
+#: ../gdebi:68
 msgid "Use alternative root dir"
 msgstr "Alternatif kök dizin kullan"
 
-#: ../gdebi:75
+#: ../gdebi:76
 #, c-format
 msgid "gdebi error, file not found: %s\n"
 msgstr "gdebi hatası, %s dosyası bulunamadı\n"
 
-#: ../gdebi:94 ../gdebi:104
+#: ../gdebi:95 ../gdebi:105
 msgid "Need to be root to install packages"
 msgstr "Paket kurabilmeniz için root olmanız gerekli"
 
-#: ../gdebi:106 ../GDebi/GDebiCli.py:150
+#: ../gdebi:107 ../GDebi/GDebiCli.py:151
 msgid "Do you want to install the software package? [y/N]:"
 msgstr "Bu yazılım paketini kurmak istiyor musunuz? [e/H]:"
 
@@ -411,25 +411,25 @@
 msgid "Please insert '%s' into the drive '%s'"
 msgstr "Lütfen '%s' sürücüsüne '%s' takın"
 
-#: ../GDebi/GDebiCli.py:58
+#: ../GDebi/GDebiCli.py:59
 msgid "Configuration items must be specified with a =<value>\n"
 msgstr "Yapılandırma öÄ?eleri a = <deÄ?er> Å?eklinde belirtilmelidir\n"
 
-#: ../GDebi/GDebiCli.py:64
+#: ../GDebi/GDebiCli.py:65
 #, python-format
 msgid "Couldn't set APT option %s to %s\n"
 msgstr "%s APT seçeneÄ?i %s deÄ?erine ayarlanamadı\n"
 
-#: ../GDebi/GDebiCli.py:77
+#: ../GDebi/GDebiCli.py:78
 #, python-format
 msgid "Unknown package type '%s', exiting\n"
 msgstr "'%s' diye bir paket türü tanınmıyor, Å?imdi çıkılacak\n"
 
-#: ../GDebi/GDebiCli.py:80
+#: ../GDebi/GDebiCli.py:81
 msgid "Failed to open the software package\n"
 msgstr "Yazılım paketi açılamadı\n"
 
-#: ../GDebi/GDebiCli.py:81
+#: ../GDebi/GDebiCli.py:82
 msgid ""
 "The package might be corrupted or you are not allowed to open the file. "
 "Check the permissions of the file.\n"
@@ -437,27 +437,27 @@
 "Paket hasar görmüÅ? olabilir ya da paketi açma yetkisine sahip "
 "olmayabilirsiniz. Dosyanın izinlerini denetleyin.\n"
 
-#: ../GDebi/GDebiCli.py:87
+#: ../GDebi/GDebiCli.py:88
 msgid "This package is uninstallable\n"
 msgstr "Paket kaldırılamaz durumda\n"
 
-#: ../GDebi/GDebiCli.py:96 ../GDebi/GDebiKDE.py:217
+#: ../GDebi/GDebiCli.py:97 ../GDebi/GDebiKDE.py:217
 msgid "No description is available"
 msgstr "Herhangi bir açıklama yok"
 
-#: ../GDebi/GDebiCli.py:102
+#: ../GDebi/GDebiCli.py:103
 msgid "The following packages are UNAUTHENTICATED: "
 msgstr "Å?u paketler DOÄ?RULANMAMIÅ?:"
 
-#: ../GDebi/GDebiCli.py:106
+#: ../GDebi/GDebiCli.py:107
 msgid "Requires the REMOVAL of the following packages: "
 msgstr "Å?u paketlerin KALDIRILMASINI gerektiriyor:"
 
-#: ../GDebi/GDebiCli.py:111
+#: ../GDebi/GDebiCli.py:112
 msgid "Requires the installation of the following packages: "
 msgstr "Å?u paketlerin kurulmasını gerektiriyor:"
 
-#: ../GDebi/GDebiCli.py:125
+#: ../GDebi/GDebiCli.py:126
 #, fuzzy, python-format
 msgid "Error during install: '%s'"
 msgstr "Kurulacak: %s"

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: gdebi
Source-Version: 0.6.4+squeeze1

We believe that the bug you reported is fixed in the latest version of
gdebi, which is due to be installed in the Debian FTP archive:

gdebi-core_0.6.4+squeeze1_all.deb
  to main/g/gdebi/gdebi-core_0.6.4+squeeze1_all.deb
gdebi-kde_0.6.4+squeeze1_all.deb
  to main/g/gdebi/gdebi-kde_0.6.4+squeeze1_all.deb
gdebi_0.6.4+squeeze1.dsc
  to main/g/gdebi/gdebi_0.6.4+squeeze1.dsc
gdebi_0.6.4+squeeze1.tar.gz
  to main/g/gdebi/gdebi_0.6.4+squeeze1.tar.gz
gdebi_0.6.4+squeeze1_all.deb
  to main/g/gdebi/gdebi_0.6.4+squeeze1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 637653@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luca Falavigna <dktrkranz@debian.org> (supplier of updated gdebi package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 12 Sep 2011 23:52:03 +0200
Source: gdebi
Binary: gdebi-core gdebi gdebi-kde
Architecture: source all
Version: 0.6.4+squeeze1
Distribution: stable
Urgency: low
Maintainer: Ubuntu Developers <ubuntu-dev-team@lists.alioth.debian.org>
Changed-By: Luca Falavigna <dktrkranz@debian.org>
Description: 
 gdebi      - Simple tool to install deb files - GNOME GUI
 gdebi-core - Simple tool to install deb files
 gdebi-kde  - Simple tool to install deb files - KDE GUI
Closes: 637653
Changes: 
 gdebi (0.6.4+squeeze1) stable; urgency=low
 .
   * Try to determine correct localized value for "Y" answer by
     parsing first value located into square brackets instead of
     relying on an hardcoded value (Closes: #637653).
Checksums-Sha1: 
 a6cfb60ea67810c9bc5b9c5d39ace7f26e9114b6 1651 gdebi_0.6.4+squeeze1.dsc
 b4043d11a5f99d72709026332f1db8715e720ea0 137512 gdebi_0.6.4+squeeze1.tar.gz
 6f9bc096f5d8ee3c22b2983229aed7260d3c7b4b 70174 gdebi-core_0.6.4+squeeze1_all.deb
 20ab1d3d2c15124d7acb89efc3c26a87ce24c28a 36474 gdebi_0.6.4+squeeze1_all.deb
 22c4bc05530759f8795b045ca312f0a4885384dc 26218 gdebi-kde_0.6.4+squeeze1_all.deb
Checksums-Sha256: 
 d5ea617fb1f1985b9406378517f9a72f86ad17df1b2a738d270711d73dd4db53 1651 gdebi_0.6.4+squeeze1.dsc
 501157494dde632c075bb5629937a3e12c0a55d51fad24d2a5e46c346a25151d 137512 gdebi_0.6.4+squeeze1.tar.gz
 36f62bf149ce4b5857af00c1370cea6956de72016d4fd252dcb8d2eb7c6be860 70174 gdebi-core_0.6.4+squeeze1_all.deb
 7c32279a148d7832e31f832f304040efb258b90709545119081a572287b1ae64 36474 gdebi_0.6.4+squeeze1_all.deb
 a015365150920684802d50adc64ae84fa2c02e4b222e4f8080397270d2cbb85e 26218 gdebi-kde_0.6.4+squeeze1_all.deb
Files: 
 811a55943a2fcc02e6a44b6917f1d7db 1651 admin optional gdebi_0.6.4+squeeze1.dsc
 443d18a43ccf9c327d39f6c9f0ca1306 137512 admin optional gdebi_0.6.4+squeeze1.tar.gz
 da3d59003a814cf1f115a1e72ec091b5 70174 admin optional gdebi-core_0.6.4+squeeze1_all.deb
 232575dd2eb31cc1a43007f0847084e6 36474 admin optional gdebi_0.6.4+squeeze1_all.deb
 5ffdfdcf4c82a0c4be209c7071add057 26218 admin optional gdebi-kde_0.6.4+squeeze1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJOekdLAAoJEEkIatPr4vMfaTMP/iv3FBNpA5Fh2zSH0OTVpYCw
CNKjdXV2AL7z11aDnw9iH/Nj4dDNXDWEosB+bLjUiIqBVEZsKgTvyuKmg3I2y1zv
F662PdRmsp9fs4cf0SY1/x0yuDy1YY+0RKSQX887iYCnCBDF41O+14AbPmK/gLMK
2+keJ8QMcYcgoA5VBugwhtlRFDb/ADZf3XtQLEvmaEPvQYvQEAA66FY1fNgzCihs
zz4DmDtjb2ZkgiwiDR+uynFSpc1XzBE2fzzIvvQlgNN86PLPuJ5NZ2H0Hb8c+Afb
1HEx+pyfobK127AdVmLNICe4REz9hyrNVL0GRQ6CSYihHudh1NCtEY9oVcLWUoj7
Yy3w+hBTE2ZRLw2Es+YlEy9xNYTLHEli4mvLOA/hWkiGVpX7OqGS5R3igmen33a1
x6UwJ0ewFKXI98/GfupbWI+Sr8iyybk+5Y0jheKd+FCbolvely1ow6aRUfrby2q1
M/nDVB15tuhtt+fRihAez42wD8AYRxeBxkFUiW+YpiTwLQEJwn/X6sJkDRy10TGq
rLVuGj6nofEj3SYOJYY9Z4yDgVjFA8zqT1aaGsO2XmnGlnb6DzUfkBwn06MSXEnu
Ugd7EPhZ1zqxfFNEGX3ZF0qq9WMPHB0z2d3b822lcKYaPznaQqJJCOu1LG5QuEfM
Czg2sd8nTqZHeN2cws6Y
=d5JY
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: