]> git.saurik.com Git - apt.git/commitdiff
* Add colons to apt-get's "kept back"/"upgraded"/"downg...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:04:54 +0000 (17:04 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:04:54 +0000 (17:04 +0000)
Author: mdz
Date: 2004-01-09 07:14:28 GMT
* Add colons to apt-get's "kept back"/"upgraded"/"downgraded" messages
(Closes: #226813)

cmdline/apt-get.cc
debian/changelog

index 05d70a7fedb0ad5730b8ae4da2c94c58163e4c29..7b4e732d72ba132b9a80d90f51deacf77e224e70 100644 (file)
@@ -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                           /*{{{*/
index b41cf45a0d74fbd798d2d8081bfb71268c97eba0..cec991fbdd09e312d704714cafde7b239c4e8f89 100644 (file)
@@ -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)
 
  --