]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-get.cc
* Change upgraded/newly installed/not fully installed o...
[apt.git] / cmdline / apt-get.cc
index 53c4f166a80d92f4051775bd4be464d928aa6cea..3c03e0fa3db1200c9c5110018bf75cbc0e218500 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.138 2003/08/09 03:07:03 mdz Exp $
+// $Id: apt-get.cc,v 1.139 2003/08/22 01:51:01 mdz Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -570,7 +570,7 @@ void Stats(ostream &out,pkgDepCache &Dep)
         ReInstall++;
    }   
 
-   ioprintf(out,_("%lu packages upgraded, %lu newly installed, "),
+   ioprintf(out,_("%lu upgraded, %lu newly installed, "),
            Upgrade,Install);
    
    if (ReInstall != 0)
@@ -582,7 +582,7 @@ void Stats(ostream &out,pkgDepCache &Dep)
            Dep.DelCount(),Dep.KeepCount());
    
    if (Dep.BadCount() != 0)
-      ioprintf(out,_("%lu packages not fully installed or removed.\n"),
+      ioprintf(out,_("%lu not fully installed or removed.\n"),
               Dep.BadCount());
 }
                                                                        /*}}}*/