summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-03-07 16:27:45 +0000
committerMatt Wilson <msw@redhat.com>2001-03-07 16:27:45 +0000
commitf81d4525c5a0377afa2ac1a81c4d05dd8e9eb367 (patch)
tree0eff7c98040212aba414fd320778b03704aae7ad /text.py
parent24394effa38fa21cef8e7c31855f17e5a57b26bc (diff)
downloadanaconda-f81d4525c5a0377afa2ac1a81c4d05dd8e9eb367.tar.gz
anaconda-f81d4525c5a0377afa2ac1a81c4d05dd8e9eb367.tar.xz
anaconda-f81d4525c5a0377afa2ac1a81c4d05dd8e9eb367.zip
use translated lang names
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/text.py b/text.py
index 55cf17230..ab8f297a9 100644
--- a/text.py
+++ b/text.py
@@ -59,10 +59,13 @@ class LanguageWindow:
else:
buttons = [_("Ok")]
+ translated = []
+ for lang in languages:
+ translated.append (_(lang))
(button, choice) = \
ListboxChoiceWindow(screen, _("Language Selection"),
_("What language would you like to use during the "
- "installation process?"), languages,
+ "installation process?"), translated,
buttons, width = 30, default = current, scroll = 1,
height = height, help = "lang")