summaryrefslogtreecommitdiffstats
path: root/Lib/gettext.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-25 20:26:43 (GMT)
committerBarry Warsaw <barry@python.org>2000-08-25 20:26:43 (GMT)
commitfa488ec2a0c60dc6a90d1be7b58d0a277db97b41 (patch)
tree6b5129c77af2d2ea0b3876da5a918b35fa1e2cd9 /Lib/gettext.py
parent1dce09da610941d56b9392cb77a87fccfd58083c (diff)
downloadcpython-fa488ec2a0c60dc6a90d1be7b58d0a277db97b41.zip
cpython-fa488ec2a0c60dc6a90d1be7b58d0a277db97b41.tar.gz
cpython-fa488ec2a0c60dc6a90d1be7b58d0a277db97b41.tar.bz2
_expand_lang(), _find(): Added support for unaliasing and expanded the
language found in the environment variable, contributed by James Henstridge.
Diffstat (limited to 'Lib/gettext.py')
-rw-r--r--Lib/gettext.py57
1 files changed, 53 insertions, 4 deletions
diff --git a/Lib/gettext.py b/Lib/gettext.py
index 74c7c38..c216089 100644
--- a/Lib/gettext.py
+++ b/Lib/gettext.py
@@ -86,7 +86,8 @@ Currently, only GNU gettext format binary .mo files are supported.
"""
-# This module represents the integration of work from the following authors:
+# This module represents the integration of work, contributions, feedback, and
+# suggestions from the following people:
#
# Martin von Loewis, who wrote the initial implementation of the underlying
# C-based libintlmodule (later renamed _gettext), along with a skeletal
@@ -121,6 +122,49 @@ _localedirs = {}
+def _expand_lang(locale):
+ from locale import normalize
+ locale = normalize(locale)
+ COMPONENT_CODESET = 1 << 0
+ COMPONENT_TERRITORY = 1 << 1
+ COMPONENT_MODIFIER = 1 << 2
+ # split up the locale into its base components
+ mask = 0
+ pos = locale.find('@')
+ if pos >= 0:
+ modifier = locale[pos:]
+ locale = locale[:pos]
+ mask |= COMPONENT_MODIFIER
+ else:
+ modifier = ''
+ pos = locale.find('.')
+ if pos >= 0:
+ codeset = locale[pos:]
+ locale = locale[:pos]
+ mask |= COMPONENT_CODESET
+ else:
+ codeset = ''
+ pos = locale.find('_')
+ if pos >= 0:
+ territory = locale[pos:]
+ locale = locale[:pos]
+ mask |= COMPONENT_TERRITORY
+ else:
+ territory = ''
+ language = locale
+ ret = []
+ for i in range(mask+1):
+ if not (i & ~mask): # if all components for this combo exist ...
+ val = language
+ if i & COMPONENT_TERRITORY: val += territory
+ if i & COMPONENT_CODESET: val += codeset
+ if i & COMPONENT_MODIFIER: val += modifier
+ ret.append(val)
+ ret.reverse()
+ return ret
+
+
+
class GNUTranslations(UserDict):
# Magic number of .mo files
MAGIC = 0x950412de
@@ -158,8 +202,8 @@ class GNUTranslations(UserDict):
raise IOError(0, 'File is corrupt', filename)
#
# advance to next entry in the seek tables
- masteridx = masteridx + 8
- transidx = transidx + 8
+ masteridx += 8
+ transidx += 8
return catalog
@@ -171,7 +215,6 @@ Translations = GNUTranslations
def _find(localedir=None, languages=None, domain=None):
global _current_domain
global _localedirs
-
# Get some reasonable defaults for arguments that were not supplied
if domain is None:
domain = _current_domain
@@ -193,6 +236,12 @@ def _find(localedir=None, languages=None, domain=None):
break
if 'C' not in languages:
languages.append('C')
+ # now normalize and expand the languages
+ langdict = {}
+ for lang in languages:
+ for nelang in _expand_lang(lang):
+ langdict[nelang] = nelang
+ languages = langdict.keys()
# select a language
for lang in languages:
if lang == 'C':