summaryrefslogtreecommitdiff
path: root/DistUpgrade
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-06-01 14:47:04 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-06-01 14:47:04 +0200
commitaacccf6280516ade960554a58d1050287841b55b (patch)
tree839fe732f3b98a73b92b223970fb39144a350f40 /DistUpgrade
parent06b9dd32bed7a12dbdf92a61f81591ffff258a8b (diff)
downloadpython-apt-aacccf6280516ade960554a58d1050287841b55b.tar.gz
* DistUpgrade/DistUpgradeViewGtk.py:
- added a FIXME
Diffstat (limited to 'DistUpgrade')
-rw-r--r--DistUpgrade/DistUpgradeViewGtk.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py
index 43889793..8f9eb62c 100644
--- a/DistUpgrade/DistUpgradeViewGtk.py
+++ b/DistUpgrade/DistUpgradeViewGtk.py
@@ -444,9 +444,11 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp):
msg = ""
if pkgs_remove > 0:
+ # FIXME: make those two seperate lines to make it clear
+ # that the "%" applies to the result of ngettext
msg += gettext.ngettext("%s package is going to be removed.",
"%s packages are going to be removed.",
- pkgs_remove)% pkgs_remove
+ pkgs_remove) % pkgs_remove
msg += " "
if pkgs_inst > 0:
msg += gettext.ngettext("%s new package is going to be "