summaryrefslogtreecommitdiff
path: root/DistUpgrade/DistUpgradeViewGtk.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-02-14 14:42:56 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-02-14 14:42:56 +0100
commita322dcddd7b886ecbdc5eaacec0b78a735d97428 (patch)
tree387804e5e5c1e6a5631a1a7f5e21fdfb335537c5 /DistUpgrade/DistUpgradeViewGtk.py
parentcca98271729fa52ee96da87b81a81635f42ef61c (diff)
parentde0af64f747c8f5783ed09efd9fc80f9ee9759a0 (diff)
downloadpython-apt-a322dcddd7b886ecbdc5eaacec0b78a735d97428.tar.gz
* removed the gnome2 dependencies
Diffstat (limited to 'DistUpgrade/DistUpgradeViewGtk.py')
-rw-r--r--DistUpgrade/DistUpgradeViewGtk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py
index bf4acf0c..11b5d9c6 100644
--- a/DistUpgrade/DistUpgradeViewGtk.py
+++ b/DistUpgrade/DistUpgradeViewGtk.py
@@ -102,10 +102,10 @@ class GtkFetchProgressAdapter(apt.progress.FetchProgress):
currentItem = self.totalItems
if self.currentCPS > 0:
- self.status.set_text(_("Downloading file %li of %li with %s/s" % (currentItem, self.totalItems, apt_pkg.SizeToStr(self.currentCPS))))
+ self.status.set_text(_("Downloading file %li of %li at %s/s" % (currentItem, self.totalItems, apt_pkg.SizeToStr(self.currentCPS))))
self.progress.set_text(_("%s remaining" % apt_pkg.TimeToStr(self.eta)))
else:
- self.status.set_text(_("Downloading file %li of %li with unknown speed" % (currentItem, self.totalItems)))
+ self.status.set_text(_("Downloading file %li of %li at unknown speed" % (currentItem, self.totalItems)))
self.progress.set_text(" ")
while gtk.events_pending():