summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2024-04-12 18:08:51 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2024-04-12 18:08:51 +0200
commitf725565ae69a06d0ad5747881b6f54a19c0c1763 (patch)
treeae0ba3624bef3e1549e2bf0f555590eb98e6513b
parent275ee5afe968e77d8379f0f3b6dc54c6239aa4f6 (diff)
Use the same words for the summary
Instead of using Upgrades, Installs, and so on, just use Upgrading, Installing, etc. This solves the problem of not having a nice noun for "Not upgrading".
-rw-r--r--apt-private/private-output.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc
index bffdd6f67..bbf50397f 100644
--- a/apt-private/private-output.cc
+++ b/apt-private/private-output.cc
@@ -760,15 +760,15 @@ void Stats(ostream &out, pkgDepCache &Dep, APT::PackageVector const &HeldBackPac
}
if (outVer >= 30)
ioprintf(out, _("Summary:\n"));
- ioprintf(out,outVer < 30 ? _("%lu upgraded, %lu newly installed, ") : _(" Upgrades: %lu, Installs: %lu, "),
+ ioprintf(out,outVer < 30 ? _("%lu upgraded, %lu newly installed, ") : _(" Upgrading: %lu, Installing: %lu, "),
Upgrade,Install);
if (ReInstall != 0)
- ioprintf(out,outVer < 30 ? _("%lu reinstalled, ") : _("Reinstalls: %lu, "),ReInstall);
+ ioprintf(out,outVer < 30 ? _("%lu reinstalled, ") : _("Reinstalling: %lu, "),ReInstall);
if (Downgrade != 0)
- ioprintf(out,outVer < 30 ? _("%lu downgraded, ") : _("Downgrades: %lu, "),Downgrade);
+ ioprintf(out,outVer < 30 ? _("%lu downgraded, ") : _("Downgrading: %lu, "),Downgrade);
- ioprintf(out, outVer < 30 ? _("%lu to remove and %lu not upgraded.\n") : _("Removals: %lu, Not Upgrading: %lu\n"),
+ ioprintf(out, outVer < 30 ? _("%lu to remove and %lu not upgraded.\n") : _("Removing: %lu, Not Upgrading: %lu\n"),
Dep.DelCount(), HeldBackPackages.size());
// FIXME: outVer