diff options
| author | Jeremy Katz <katzj@redhat.com> | 2002-08-16 09:16:27 +0000 |
|---|---|---|
| committer | Jeremy Katz <katzj@redhat.com> | 2002-08-16 09:16:27 +0000 |
| commit | 0638add5c28af02cd75db528bfdbb8fac6bf8270 (patch) | |
| tree | aacc448a700fce10d952eaad76557b9d9840d2c3 | |
| parent | 43329d11faec5eacf6bf573052ac96be30268843 (diff) | |
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.
| -rw-r--r-- | textw/packages_text.py | 2 |
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")) |
