diff options
author | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-27 17:55:40 +0530 |
---|---|---|
committer | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-27 17:55:40 +0530 |
commit | 82f348577dfc0712662db444e54f95eba245e301 (patch) | |
tree | 2b0dd5748d8d77493027b16438f8a67c45a3a8a2 /cmdline/apt-get.cc | |
parent | 48ebb4bf6bef1c1ff214e21f303ac78d2145de2d (diff) |
Some modifications to the queuing.stage-I
Diffstat (limited to 'cmdline/apt-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 61caa45cf..d22c86555 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1139,12 +1139,12 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, if (DebBytes != FetchBytes) //TRANSLATOR: The required space between number and unit is already included // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB - ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"), + ioprintf(c1out,_("Need to get at most %sB/%sB of archives.\n"), SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str()); else if (DebBytes != 0) //TRANSLATOR: The required space between number and unit is already included // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB - ioprintf(c1out,_("Need to get %sB of archives.\n"), + ioprintf(c1out,_("Need to get at most %sB of archives.\n"), SizeToStr(DebBytes).c_str()); // Size delta |