summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-08-16 09:16:27 +0000
committerJeremy Katz <katzj@redhat.com>2002-08-16 09:16:27 +0000
commit0638add5c28af02cd75db528bfdbb8fac6bf8270 (patch)
treeaacc448a700fce10d952eaad76557b9d9840d2c3 /textw
parent43329d11faec5eacf6bf573052ac96be30268843 (diff)
downloadanaconda-0638add5c28af02cd75db528bfdbb8fac6bf8270.tar.gz
anaconda-0638add5c28af02cd75db528bfdbb8fac6bf8270.tar.xz
anaconda-0638add5c28af02cd75db528bfdbb8fac6bf8270.zip
don't translate the name here; groups aren't in the anaconda po files and the comps file is utf-8 so we can't really display the translations on the console anyway.
Diffstat (limited to 'textw')
-rw-r--r--textw/packages_text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/packages_text.py b/textw/packages_text.py
index 039351662..f3f254968 100644
--- a/textw/packages_text.py
+++ b/textw/packages_text.py
@@ -45,7 +45,7 @@ class PackageGroupWindow:
ct = CheckboxTree(height = 8, scroll = 1)
for comp in comps:
if not comp.hidden:
- ct.append(_(comp.name), comp, comp.isSelected(justManual = 1))
+ ct.append(comp.name, comp, comp.isSelected(justManual = 1))
cb = Checkbox (_("Select individual packages"),
not dispatch.stepInSkipList("indivpackage"))