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 /installclasses | |
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 'installclasses')
-rw-r--r-- | installclasses/personal_desktop.py | 14 | ||||
-rw-r--r-- | installclasses/workstation.py | 18 |
2 files changed, 16 insertions, 16 deletions
diff --git a/installclasses/personal_desktop.py b/installclasses/personal_desktop.py index 8ea525c0d..8cbee510f 100644 --- a/installclasses/personal_desktop.py +++ b/installclasses/personal_desktop.py @@ -15,13 +15,13 @@ class InstallClass(BaseInstallClass): "environment and create a system ideal for home " "or desktop use.") - pkgstext = _("\tDesktop shell (GNOME)\n" - "\tOffice suite (OpenOffice)\n" - "\tWeb browser (Mozilla) \n" - "\tEmail (Evolution)\n" - "\tInstant messaging\n" - "\tSound and video applications\n" - "\tGames\n") + pkgstext = N_("\tDesktop shell (GNOME)\n" + "\tOffice suite (OpenOffice)\n" + "\tWeb browser (Mozilla) \n" + "\tEmail (Evolution)\n" + "\tInstant messaging\n" + "\tSound and video applications\n" + "\tGames\n") showLoginChoice = 0 diff --git a/installclasses/workstation.py b/installclasses/workstation.py index 1724ef0de..f0310a5d2 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -11,15 +11,15 @@ class InstallClass(personal_desktop.InstallClass): "environment with tools for software " "development and system administration. ") - pkgstext = _("\tDesktop shell (GNOME)\n" - "\tOffice suite (OpenOffice)\n" - "\tWeb browser (Mozilla) \n" - "\tEmail (Evolution)\n" - "\tInstant messaging\n" - "\tSound and video applications\n" - "\tGames\n" - "\tSoftware Development Tools\n" - "\tAdministration Tools\n") + pkgstext = N_("\tDesktop shell (GNOME)\n" + "\tOffice suite (OpenOffice)\n" + "\tWeb browser (Mozilla) \n" + "\tEmail (Evolution)\n" + "\tInstant messaging\n" + "\tSound and video applications\n" + "\tGames\n" + "\tSoftware Development Tools\n" + "\tAdministration Tools\n") sortPriority = 2 |