diff options
| author | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-02-13 19:32:04 +0100 |
|---|---|---|
| committer | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-02-13 19:32:04 +0100 |
| commit | de0af64f747c8f5783ed09efd9fc80f9ee9759a0 (patch) | |
| tree | b2a1720b6adca12e25dadbd054b7c9859bc9a75a /DistUpgrade | |
| parent | 47f19eb647bc35af73815087a84ac45220f557b2 (diff) | |
| download | python-apt-de0af64f747c8f5783ed09efd9fc80f9ee9759a0.tar.gz | |
* Remove dependency on python-gnome - call yelp manually
* Use same height for all butons in the bottom row
* Fix bad denglish wording: "downloading at..." - thanks Jorge Bernal
Diffstat (limited to 'DistUpgrade')
| -rw-r--r-- | DistUpgrade/DistUpgradeViewGtk.py | 4 |
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(): |
