diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-01-06 22:48:49 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-01-06 22:48:49 +0000 |
commit | 69792779ccc9abc1ed09d942d940684c2e97b735 (patch) | |
tree | 15719122dda77843112b80247d5cd4cdbf30202f /iw | |
parent | 0027ed796c2b28ba9fbdfea02c129c7685763af3 (diff) | |
download | anaconda-69792779ccc9abc1ed09d942d940684c2e97b735.tar.gz anaconda-69792779ccc9abc1ed09d942d940684c2e97b735.tar.xz anaconda-69792779ccc9abc1ed09d942d940684c2e97b735.zip |
fix translation of packages in installclasses (#109561)
Diffstat (limited to 'iw')
-rw-r--r-- | iw/desktop_choice_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/desktop_choice_gui.py b/iw/desktop_choice_gui.py index ff853a5c3..1b1215151 100644 --- a/iw/desktop_choice_gui.py +++ b/iw/desktop_choice_gui.py @@ -59,7 +59,7 @@ class DesktopChoiceWindow (InstallWindow): "customize your installation.") %(productName,) if len(instclass.pkgstext) > 0: - labeltxt = header + instclass.pkgstext + footer + labeltxt = header + _(instclass.pkgstext) + footer else: labeltxt = _( "If you would like to change the default package set to be " |