diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-07-26 03:25:13 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-07-26 03:25:13 +0000 |
commit | be11fba9cdbcd1781f1657914102b6e051d42dce (patch) | |
tree | 7d1e2076e8f126ad4bd26e8ae8d838906e5b0e8e | |
parent | 12159804ff3260213d9a0e99a6131ff71739057d (diff) | |
download | anaconda-be11fba9cdbcd1781f1657914102b6e051d42dce.tar.gz anaconda-be11fba9cdbcd1781f1657914102b6e051d42dce.tar.xz anaconda-be11fba9cdbcd1781f1657914102b6e051d42dce.zip |
don't do korean in utf-8 (#69898) and make certain we don't do zh_TW.UTF-8 either
-rwxr-xr-x | scripts/genlocalelist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/genlocalelist.py b/scripts/genlocalelist.py index 8a7adec9e..199f385f4 100755 --- a/scripts/genlocalelist.py +++ b/scripts/genlocalelist.py @@ -122,7 +122,8 @@ for line in lines: # to offer that if lang.startswith("nb_") or lang.startswith("iw_"): continue - if lang in ["zh_TW.euctw", "zh_TW.UTF-8", "ja_JP.UTF-8"]: + if lang in ["zh_TW.euctw", "zh_TW.UTF-8", "ja_JP.UTF-8", "ko_KR.UTF-8", + "zh_TW.UTF-8"]: continue f = os.popen("LANG=%s locale language territory charmap" %(lang,), "r") |