summaryrefslogtreecommitdiffstats
path: root/language.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-02-22 20:00:32 +0000
committerJeremy Katz <katzj@redhat.com>2006-02-22 20:00:32 +0000
commit44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8 (patch)
treeadf919bcfc3d3dfc4d1297a350a6b7ee307aceca /language.py
parentda4e01fa60d0b0b0844e194e8cde5d32800b56d1 (diff)
downloadanaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.tar.gz
anaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.tar.xz
anaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.zip
2006-02-22 Jeremy Katz <katzj@redhat.com>
* lang-table: Set all previously bterm using languages to "none" for the fact that we can't handle them in text-mode anymore * textw/language_text.py (LanguageWindow.__call__): Remove bterm special-casing. * text.py (InstallInterface.run): Likewise. * loader2/lang.c (setupLanguage): Likewise. * language.py (Language.fixLang): No more "bterm" font * stubs/unicode-lite.c: Don't require wlite * stubs/Makefile: Don't link against wlite * loader2/Makefile: No more linking to bterm here either * isys/lang.c: Remove bterm support code. * isys/lang.h: And declaration. * isys/Makefile (LOADLIBES): No more linking to bterm * isys/isys.c (start_bterm): Remove this * anaconda.spec (BuildPreReq): Bye-bye bogl
Diffstat (limited to 'language.py')
-rw-r--r--language.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/language.py b/language.py
index b9ab4aa6a..aaaac7319 100644
--- a/language.py
+++ b/language.py
@@ -122,7 +122,7 @@ class Language:
for lang in self.localeInfo.keys():
if lang == langToFix:
(a, b, font, c, d) = self.localeInfo[lang]
- if font == "bterm" or font == "none":
+ if font == "none":
ret = "en_US.UTF-8"
self.targetLang = lang
@@ -141,7 +141,7 @@ class Language:
# Note: in /etc/fonts.cgz fonts are named by the map
# name as that's unique, font names are not
font = self.localeInfo[self.canonLangNick(nick)][2]
- if font == "bterm" or font == "none":
+ if font == "none":
return "latarcyrheb-sun16"
else:
return font