diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-03-28 19:10:20 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-03-28 19:10:20 +0200 |
commit | 0c508b03a25a99edb1b969525e9c9916b0edd4db (patch) | |
tree | 55a61659f3bef089f97ec8a6120a71cde728bdac /apt-pkg | |
parent | 1e8b4c0f25c2d719a036e276f963c5182dee01d5 (diff) |
* "downloading" -> "retrieving" (thanks to kamion)
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index a9a770905..fff1b2b6a 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -820,9 +820,9 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) // only show the ETA if it makes sense if (ETA > 0 && ETA < 172800 /* two days */ ) - snprintf(msg,sizeof(msg), _("Downloading file %li of %li (%s remaining)"), i, TotalItems, TimeToStr(ETA).c_str()); + snprintf(msg,sizeof(msg), _("Retrieving file %li of %li (%s remaining)"), i, TotalItems, TimeToStr(ETA).c_str()); else - snprintf(msg,sizeof(msg), _("Downloading file %li of %li"), i, TotalItems); + snprintf(msg,sizeof(msg), _("Retrieving file %li of %li"), i, TotalItems); |