summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-25 15:05:04 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-25 15:05:04 +0000
commitc4cda37496018827bd9e17b600327d0ee9f5d379 (patch)
tree5055f5b55d9e2bda5903c5c0fb95620ad93c0799 /scripts
parent3fab5839fd27531dab5f2f41462c28669d0cb0b5 (diff)
downloadanaconda-c4cda37496018827bd9e17b600327d0ee9f5d379.tar.gz
anaconda-c4cda37496018827bd9e17b600327d0ee9f5d379.tar.xz
anaconda-c4cda37496018827bd9e17b600327d0ee9f5d379.zip
don't do UTF-8@euro since the locales already set LC_CURRENCY to be euro in those locales according to jakub
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/genlocalelist.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/genlocalelist.py b/scripts/genlocalelist.py
index 948cb383d..8a7adec9e 100755
--- a/scripts/genlocalelist.py
+++ b/scripts/genlocalelist.py
@@ -115,6 +115,9 @@ for line in lines:
# major hack... chop off iso885915 to make it shorter
lang = re.sub(".iso885915$", "", lang)
+ # we don't want @euro locales for utf8
+ lang = lang.replace("UTF-8@euro", "UTF-8")
+
# someone put nb_NO in locale.alias. yuck. We don't want
# to offer that
if lang.startswith("nb_") or lang.startswith("iw_"):