1 """Internationalization and localization support.
3 This module provides internationalization (I18N) and localization (L10N)
4 support for your Python programs by providing an interface to the GNU gettext
5 message catalog library.
7 I18N refers to the operation by which a program is made aware of multiple
8 languages. L10N refers to the adaptation of your program, once
9 internationalized, to the local language and cultural habits.
13 # This module represents the integration of work, contributions, feedback, and
14 # suggestions from the following people:
16 # Martin von Loewis, who wrote the initial implementation of the underlying
17 # C-based libintlmodule (later renamed _gettext), along with a skeletal
18 # gettext.py implementation.
20 # Peter Funk, who wrote fintl.py, a fairly complete wrapper around intlmodule,
21 # which also included a pure-Python implementation to read .mo files if
22 # intlmodule wasn't available.
24 # James Henstridge, who also wrote a gettext.py module, which has some
25 # interesting, but currently unsupported experimental features: the notion of
26 # a Catalog class and instances, and the ability to add to a catalog file via
29 # Barry Warsaw integrated these modules, wrote the .install() API and code,
30 # and conformed all C and Python code to Python's coding standards.
32 # Francois Pinard and Marc-Andre Lemburg also contributed valuably to this
36 # - Lazy loading of .mo files. Currently the entire catalog is loaded into
37 # memory, but that's probably bad for large translated programs. Instead,
38 # the lexical sort of original strings in GNU .mo files should be exploited
39 # to do binary searches and lazy initializations. Or you might want to use
40 # the undocumented double-hash algorithm for .mo files with hash tables, but
41 # you'll need to study the GNU gettext code to do this.
43 # - Support Solaris .mo file formats. Unfortunately, we've been unable to
44 # find this format documented anywhere.
49 from errno
import ENOENT
51 _default_localedir
= os
.path
.join(sys
.prefix
, 'share', 'locale')
55 def _expand_lang(locale
):
56 from locale
import normalize
57 locale
= normalize(locale
)
58 COMPONENT_CODESET
= 1 << 0
59 COMPONENT_TERRITORY
= 1 << 1
60 COMPONENT_MODIFIER
= 1 << 2
61 # split up the locale into its base components
63 pos
= locale
.find('@')
65 modifier
= locale
[pos
:]
67 mask |
= COMPONENT_MODIFIER
70 pos
= locale
.find('.')
72 codeset
= locale
[pos
:]
74 mask |
= COMPONENT_CODESET
77 pos
= locale
.find('_')
79 territory
= locale
[pos
:]
81 mask |
= COMPONENT_TERRITORY
86 for i
in range(mask
+1):
87 if not (i
& ~mask
): # if all components for this combo exist ...
89 if i
& COMPONENT_TERRITORY
: val
+= territory
90 if i
& COMPONENT_CODESET
: val
+= codeset
91 if i
& COMPONENT_MODIFIER
: val
+= modifier
98 class NullTranslations
:
99 def __init__(self
, fp
=None):
105 def _parse(self
, fp
):
108 def gettext(self
, message
):
111 def ugettext(self
, message
):
112 return unicode(message
)
120 def install(self
, unicode=0):
122 __builtin__
.__dict
__['_'] = unicode and self
.ugettext
or self
.gettext
125 class GNUTranslations(NullTranslations
):
126 # Magic number of .mo files
127 LE_MAGIC
= 0x950412de
128 BE_MAGIC
= 0xde120495
130 def _parse(self
, fp
):
131 """Override this method to support alternative .mo formats."""
132 # We need to & all 32 bit unsigned integers with 0xffffffff for
133 # portability to 64 bit machines.
135 unpack
= struct
.unpack
136 filename
= getattr(fp
, 'name', '')
137 # Parse the .mo file header, which consists of 5 little endian 32
139 self
._catalog
= catalog
= {}
142 # Are we big endian or little endian?
143 magic
= unpack('<i', buf
[:4])[0] & MASK
144 if magic
== self
.LE_MAGIC
:
145 version
, msgcount
, masteridx
, transidx
= unpack('<4i', buf
[4:20])
147 elif magic
== self
.BE_MAGIC
:
148 version
, msgcount
, masteridx
, transidx
= unpack('>4i', buf
[4:20])
151 raise IOError(0, 'Bad magic number', filename
)
156 # Now put all messages from the .mo file buffer into the catalog
158 for i
in xrange(0, msgcount
):
159 mlen
, moff
= unpack(ii
, buf
[masteridx
:masteridx
+8])
161 mend
= moff
+ (mlen
& MASK
)
162 tlen
, toff
= unpack(ii
, buf
[transidx
:transidx
+8])
164 tend
= toff
+ (tlen
& MASK
)
165 if mend
< buflen
and tend
< buflen
:
166 tmsg
= buf
[toff
:tend
]
167 catalog
[buf
[moff
:mend
]] = tmsg
169 raise IOError(0, 'File is corrupt', filename
)
170 # See if we're looking at GNU .mo conventions for metadata
171 if mlen
== 0 and tmsg
.lower().startswith('project-id-version:'):
172 # Catalog description
173 for item
in tmsg
.split('\n'):
177 k
, v
= item
.split(':', 1)
178 k
= k
.strip().lower()
181 if k
== 'content-type':
182 self
._charset
= v
.split('charset=')[1]
183 # advance to next entry in the seek tables
187 def gettext(self
, message
):
188 return self
._catalog
.get(message
, message
)
190 def ugettext(self
, message
):
191 tmsg
= self
._catalog
.get(message
, message
)
192 return unicode(tmsg
, self
._charset
)
196 # Locate a .mo file using the gettext strategy
197 def find(domain
, localedir
=None, languages
=None):
198 # Get some reasonable defaults for arguments that were not supplied
199 if localedir
is None:
200 localedir
= _default_localedir
201 if languages
is None:
203 for envar
in ('LANGUAGE', 'LC_ALL', 'LC_MESSAGES', 'LANG'):
204 val
= os
.environ
.get(envar
)
206 languages
= val
.split(':')
208 if 'C' not in languages
:
209 languages
.append('C')
210 # now normalize and expand the languages
212 for lang
in languages
:
213 for nelang
in _expand_lang(lang
):
214 langdict
[nelang
] = nelang
215 languages
= langdict
.keys()
217 for lang
in languages
:
220 mofile
= os
.path
.join(localedir
, lang
, 'LC_MESSAGES', '%s.mo' % domain
)
221 if os
.path
.exists(mofile
):
227 # a mapping between absolute .mo file path and Translation object
230 def translation(domain
, localedir
=None, languages
=None, class_
=None):
232 class_
= GNUTranslations
233 mofile
= find(domain
, localedir
, languages
)
235 raise IOError(ENOENT
, 'No translation file found for domain', domain
)
236 key
= os
.path
.abspath(mofile
)
237 # TBD: do we need to worry about the file pointer getting collected?
238 t
= _translations
.setdefault(key
, class_(open(mofile
, 'rb')))
243 def install(domain
, localedir
=None, unicode=0):
244 translation(domain
, localedir
).install(unicode)
248 # a mapping b/w domains and locale directories
250 # current global domain, `messages' used for compatibility w/ GNU gettext
251 _current_domain
= 'messages'
254 def textdomain(domain
=None):
255 global _current_domain
256 if domain
is not None:
257 _current_domain
= domain
258 return _current_domain
261 def bindtextdomain(domain
, localedir
=None):
263 if localedir
is not None:
264 _localedirs
[domain
] = localedir
265 return _localedirs
.get(domain
, _default_localedir
)
268 def dgettext(domain
, message
):
270 t
= translation(domain
, _localedirs
.get(domain
, None))
273 return t
.gettext(message
)
276 def gettext(message
):
277 return dgettext(_current_domain
, message
)
280 # dcgettext() has been deemed unnecessary and is not implemented.
282 # James Henstridge's Catalog constructor from GNOME gettext. Documented usage
286 # cat = gettext.Catalog(PACKAGE, localedir=LOCALEDIR)
288 # print _('Hello World')
290 # The resulting catalog object currently don't support access through a
291 # dictionary API, which was supported (but apparently unused) in GNOME
294 Catalog
= translation