summaryrefslogtreecommitdiffstats
path: root/textw/language_text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-06 01:40:59 +0000
committerMike Fulbright <msf@redhat.com>2001-07-06 01:40:59 +0000
commit21dc7cd04e8b7d523a122164714d056690747be1 (patch)
treec84b8548e78e2a020a3d635a3d43d5aefa18da32 /textw/language_text.py
parente3b1f979d46a099db61ebfac04ac99bc5957b064 (diff)
downloadanaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.gz
anaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.xz
anaconda-21dc7cd04e8b7d523a122164714d056690747be1.zip
integrated changes suggested by docs
Diffstat (limited to 'textw/language_text.py')
-rw-r--r--textw/language_text.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/textw/language_text.py b/textw/language_text.py
index 9ed2916ab..2cab8e51a 100644
--- a/textw/language_text.py
+++ b/textw/language_text.py
@@ -99,13 +99,13 @@ class LanguageSupportWindow:
bb = ButtonBar (screen, (TEXT_OK_BUTTON, (_("Select All"), "all"), (_("Reset"), "reset"), TEXT_BACK_BUTTON))
- message = (_("Choose the languages to be installed:"))
- width = len(message)
- tb = Textbox (width, 2, message)
+ message = (_("Choose additional languages that you would like to use "
+ "on this system:"))
+ tb = TextboxReflowed(50, message)
g = GridFormHelp (screen, _("Language Support"), "langsupport", 1, 4)
- g.add (tb, 0, 0, (0, 0, 0, 0), anchorLeft = 1)
+ g.add (tb, 0, 0, (0, 0, 0, 1), anchorLeft = 1)
g.add (ct, 0, 1, (0, 0, 0, 1))
g.add (bb, 0, 3, growx = 1)
@@ -164,7 +164,7 @@ class LanguageDefaultWindow:
buttons = [TEXT_OK_BUTTON, TEXT_BACK_BUTTON]
(button, choice) = ListboxChoiceWindow(screen, _("Default Language"),
- _("Choose the default language: "), langs,
+ _("Choose the default language for this system: "), langs,
buttons, width = 30, default = current, scroll = 1,
height = height, help = "langdefault")