summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-03-23 21:14:20 +0000
committerChris Lumens <clumens@redhat.com>2005-03-23 21:14:20 +0000
commit68e971a9d0f3ac7e299aefe686c6e1ad8f25f96b (patch)
tree4987450ced01aa3227df29c6787225681ca6df1e /text.py
parent9e822d2730b96fb9a418070dce1138cc5fbafecd (diff)
downloadanaconda-68e971a9d0f3ac7e299aefe686c6e1ad8f25f96b.tar.gz
anaconda-68e971a9d0f3ac7e299aefe686c6e1ad8f25f96b.tar.xz
anaconda-68e971a9d0f3ac7e299aefe686c6e1ad8f25f96b.zip
Combined Language and InstallTimeLanguage in language.py into a single
class, updated the lang-table format to remove an unused column, and changed langSupport to instLanguage everywhere to reinforce the class merge idea.
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index a32bc0cf9..31d418d7f 100644
--- a/text.py
+++ b/text.py
@@ -150,7 +150,7 @@ class ProgressWindow:
class InstallInterface:
def helpWindow(self, screen, key):
lang = self.instLanguage.getCurrent()
- lang = self.instLanguage.getLangNick(lang)
+ lang = self.instLanguage.getNickByName(lang)
self.langSearchPath = expandLangs(lang) + ['C']
if key == "helponhelp":
@@ -433,7 +433,7 @@ class InstallInterface:
#(self.screen.width - len(_(self.welcomeText))) * " ")
#self.screen.drawRootText (0 - len(_(step[0])), 0, _(step[0]))
langname = id.instLanguage.getCurrent()
- lang = id.instLanguage.getLangNick(langname)
+ lang = id.instLanguage.getNickByName(langname)
self.langSearchPath = expandLangs(lang) + ['C']
self.instLanguage = id.instLanguage