Przeglądaj źródła

* "downloading" -> "retrieving" (thanks to kamion)

Michael Vogt 20 lat temu
rodzic
commit
0c508b03a2
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      apt-pkg/acquire.cc

+ 2 - 2
apt-pkg/acquire.cc

@@ -820,9 +820,9 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner)
 
 
       // only show the ETA if it makes sense
       // only show the ETA if it makes sense
       if (ETA > 0 && ETA < 172800 /* two days */ )
       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
       else
-	 snprintf(msg,sizeof(msg), _("Downloading file %li of %li"), i, TotalItems);
+	 snprintf(msg,sizeof(msg), _("Retrieving file %li of %li"), i, TotalItems);