apt/apt-0.5.15lorg2-alt-src-apt-shell-wrong_message_fix.patch
Slava Semushin d4f21fc971 0.5.15lorg2-alt11.1
- Fixed typo in output of help command in apt-shell (#5400)
- Fixed wrong message during remove package(s) in apt-shell (#7618)
2007-08-01 00:59:13 +07:00

15 lines
592 B
Diff

https://bugzilla.altlinux.org/show_bug.cgi?id=7618
--- apt/cmdline/apt-shell.cc.orig 2007-07-31 23:23:46 +0700
+++ apt/cmdline/apt-shell.cc 2007-07-31 23:42:10 +0700
@@ -829,7 +829,7 @@ bool ShowChanges(CacheFile &Cache,pkgDep
ioprintf(c1out,_("After unpacking will need more %sB of disk space.\n"),
SizeToStr(UsrSize).c_str());
else
- ioprintf(c1out,_("After unpacking will need less %sB of disk space.\n"),
+ ioprintf(c1out,_("After unpacking %sB disk space will be freed.\n"),
SizeToStr(-1*UsrSize).c_str());
} else {
double DebBytes = Cache->DebSize();