summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:03:21 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:03:21 +0000
commit2adb5fda8c34d1eea3e94fe6d1d6c378144ccfad (patch)
treec55adba2ff1fbb5531737291f7cb0881c22baf34 /cmdline
parente36b0a2e45b9afb5fc19135e197524e19370864e (diff)
* Change upgraded/newly installed/not fully installed o...
Author: mdz Date: 2003-08-22 01:51:01 GMT * Change upgraded/newly installed/not fully installed or removed messages to be consistent and somewhat shorter (some translations exceeded 80 characters even in the simplest case)
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 53c4f166a..3c03e0fa3 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.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());
}
/*}}}*/