diff options
author | Erik Troan <ewt@redhat.com> | 2000-08-10 19:14:38 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-08-10 19:14:38 +0000 |
commit | 23c35c35dc6c256adfd270e2000a949b30e56f81 (patch) | |
tree | b17a9033bcfa862b02ccb7f83bea794bd542f444 /textw | |
parent | 027028dffe6e33fb635783e0d67c38d752b088a1 (diff) | |
download | anaconda-23c35c35dc6c256adfd270e2000a949b30e56f81.tar.gz anaconda-23c35c35dc6c256adfd270e2000a949b30e56f81.tar.xz anaconda-23c35c35dc6c256adfd270e2000a949b30e56f81.zip |
marked some more strings as i18n
Diffstat (limited to 'textw')
-rw-r--r-- | textw/packages_text.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textw/packages_text.py b/textw/packages_text.py index 5978221bc..f79a12f0b 100644 --- a/textw/packages_text.py +++ b/textw/packages_text.py @@ -94,8 +94,8 @@ class IndividualPackageWindow: header[rpm.RPMTAG_RELEASE])), 1, 0, anchorLeft = 1) sg.setField (Label (_("Size :")), 0, 1, (0, 0, 1, 0), anchorLeft = 1) - sg.setField (Label ("%.1f KBytes" % (header[rpm.RPMTAG_SIZE] / 1024.0)), - 1, 1, anchorLeft= 1) + sg.setField (Label (_("%.1f KBytes") + % (header[rpm.RPMTAG_SIZE] / 1024.0)), 1, 1, anchorLeft= 1) txt = TextboxReflowed(60, self.get_rpm_desc(header), maxHeight = 10) |