diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:54 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:54 +0000 |
commit | aee7bceb6d00bff8545105f508f2b68b9a53e23b (patch) | |
tree | e5474e67531e57374fb9c437de082572058cda84 | |
parent | ce2cb0b814a1b0cc6a51c9288279c9875e68613d (diff) |
* Add colons to apt-get's "kept back"/"upgraded"/"downg...
Author: mdz
Date: 2004-01-09 07:14:28 GMT
* Add colons to apt-get's "kept back"/"upgraded"/"downgraded" messages
(Closes: #226813)
-rw-r--r-- | cmdline/apt-get.cc | 8 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 05d70a7fe..7b4e732d7 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.150 2003/12/24 22:53:10 mdz Exp $ +// $Id: apt-get.cc,v 1.151 2004/01/09 07:14:28 mdz Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -418,7 +418,7 @@ void ShowKept(ostream &out,CacheFile &Cache) List += string(I.Name()) + " "; VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n"; } - ShowList(out,_("The following packages have been kept back"),List,VersionsList); + ShowList(out,_("The following packages have been kept back:"),List,VersionsList); } /*}}}*/ // ShowUpgraded - Show upgraded packages /*{{{*/ @@ -439,7 +439,7 @@ void ShowUpgraded(ostream &out,CacheFile &Cache) List += string(I.Name()) + " "; VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n"; } - ShowList(out,_("The following packages will be upgraded"),List,VersionsList); + ShowList(out,_("The following packages will be upgraded:"),List,VersionsList); } /*}}}*/ // ShowDowngraded - Show downgraded packages /*{{{*/ @@ -460,7 +460,7 @@ bool ShowDowngraded(ostream &out,CacheFile &Cache) List += string(I.Name()) + " "; VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n"; } - return ShowList(out,_("The following packages will be DOWNGRADED"),List,VersionsList); + return ShowList(out,_("The following packages will be DOWNGRADED:"),List,VersionsList); } /*}}}*/ // ShowHold - Show held but changed packages /*{{{*/ diff --git a/debian/changelog b/debian/changelog index b41cf45a0..cec991fbd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.5.21) unstable; urgency=low compilation on Solaris. (Closes: #226509) * Updated French translation from Pierre Machard <pmachard@debian.org> (Closes: #226886) + * Add colons to apt-get's "kept back"/"upgraded"/"downgraded" messages + (Closes: #226813) -- |