gettext.py 19.4 KB
Newer Older
1 2 3 4 5 6 7 8
"""Internationalization and localization support.

This module provides internationalization (I18N) and localization (L10N)
support for your Python programs by providing an interface to the GNU gettext
message catalog library.

I18N refers to the operation by which a program is made aware of multiple
languages.  L10N refers to the adaptation of your program, once
9
internationalized, to the local language and cultural habits.
10 11 12

"""

13 14
# This module represents the integration of work, contributions, feedback, and
# suggestions from the following people:
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#
# Martin von Loewis, who wrote the initial implementation of the underlying
# C-based libintlmodule (later renamed _gettext), along with a skeletal
# gettext.py implementation.
#
# Peter Funk, who wrote fintl.py, a fairly complete wrapper around intlmodule,
# which also included a pure-Python implementation to read .mo files if
# intlmodule wasn't available.
#
# James Henstridge, who also wrote a gettext.py module, which has some
# interesting, but currently unsupported experimental features: the notion of
# a Catalog class and instances, and the ability to add to a catalog file via
# a Python API.
#
# Barry Warsaw integrated these modules, wrote the .install() API and code,
# and conformed all C and Python code to Python's coding standards.
31 32 33 34
#
# Francois Pinard and Marc-Andre Lemburg also contributed valuably to this
# module.
#
35
# J. David Ibanez implemented plural forms. Bruno Haible fixed some bugs.
36
#
37 38 39 40 41 42 43 44 45 46
# TODO:
# - Lazy loading of .mo files.  Currently the entire catalog is loaded into
#   memory, but that's probably bad for large translated programs.  Instead,
#   the lexical sort of original strings in GNU .mo files should be exploited
#   to do binary searches and lazy initializations.  Or you might want to use
#   the undocumented double-hash algorithm for .mo files with hash tables, but
#   you'll need to study the GNU gettext code to do this.
#
# - Support Solaris .mo file formats.  Unfortunately, we've been unable to
#   find this format documented anywhere.
47

48

49
import locale, copy, os, re, struct, sys
50
from errno import ENOENT
51

52

53 54 55 56
__all__ = ['NullTranslations', 'GNUTranslations', 'Catalog',
           'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
           'dgettext', 'dngettext', 'gettext', 'ngettext',
           ]
57

58
_default_localedir = os.path.join(sys.prefix, 'share', 'locale')
59 60


61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
def test(condition, true, false):
    """
    Implements the C expression:

      condition ? true : false

    Required to correctly interpret plural forms.
    """
    if condition:
        return true
    else:
        return false


def c2py(plural):
Barry Warsaw's avatar
Barry Warsaw committed
76 77
    """Gets a C expression as used in PO files for plural forms and returns a
    Python lambda function that implements an equivalent expression.
78 79
    """
    # Security check, allow only the "n" identifier
80 81 82 83
    try:
        from cStringIO import StringIO
    except ImportError:
        from StringIO import StringIO
84 85
    import token, tokenize
    tokens = tokenize.generate_tokens(StringIO(plural).readline)
86
    try:
Barry Warsaw's avatar
Barry Warsaw committed
87
        danger = [x for x in tokens if x[0] == token.NAME and x[1] != 'n']
88 89 90 91 92 93
    except tokenize.TokenError:
        raise ValueError, \
              'plural forms expression error, maybe unbalanced parenthesis'
    else:
        if danger:
            raise ValueError, 'plural forms expression could be dangerous'
94 95 96 97 98

    # Replace some C operators by their Python equivalents
    plural = plural.replace('&&', ' and ')
    plural = plural.replace('||', ' or ')

99 100
    expr = re.compile(r'\!([^=])')
    plural = expr.sub(' not \\1', plural)
101 102 103 104 105 106 107 108 109 110 111 112 113 114

    # Regular expression and replacement function used to transform
    # "a?b:c" to "test(a,b,c)".
    expr = re.compile(r'(.*?)\?(.*?):(.*)')
    def repl(x):
        return "test(%s, %s, %s)" % (x.group(1), x.group(2),
                                     expr.sub(repl, x.group(3)))

    # Code to transform the plural expression, taking care of parentheses
    stack = ['']
    for c in plural:
        if c == '(':
            stack.append('')
        elif c == ')':
115 116 117 118
            if len(stack) == 1:
                # Actually, we never reach this code, because unbalanced
                # parentheses get caught in the security check at the
                # beginning.
119 120 121 122 123 124 125 126 127 128
                raise ValueError, 'unbalanced parenthesis in plural form'
            s = expr.sub(repl, stack.pop())
            stack[-1] += '(%s)' % s
        else:
            stack[-1] += c
    plural = expr.sub(repl, stack.pop())

    return eval('lambda n: int(%s)' % plural)


Tim Peters's avatar
Tim Peters committed
129

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
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


Tim Peters's avatar
Tim Peters committed
172

173 174 175
class NullTranslations:
    def __init__(self, fp=None):
        self._info = {}
176
        self._charset = None
177
        self._output_charset = None
178
        self._fallback = None
179
        if fp is not None:
180
            self._parse(fp)
181

182 183 184
    def _parse(self, fp):
        pass

185 186 187 188 189 190
    def add_fallback(self, fallback):
        if self._fallback:
            self._fallback.add_fallback(fallback)
        else:
            self._fallback = fallback

191
    def gettext(self, message):
192 193
        if self._fallback:
            return self._fallback.gettext(message)
194 195
        return message

196 197 198 199 200
    def lgettext(self, message):
        if self._fallback:
            return self._fallback.lgettext(message)
        return message

201 202 203 204 205 206 207 208
    def ngettext(self, msgid1, msgid2, n):
        if self._fallback:
            return self._fallback.ngettext(msgid1, msgid2, n)
        if n == 1:
            return msgid1
        else:
            return msgid2

209 210 211 212 213 214 215 216
    def lngettext(self, msgid1, msgid2, n):
        if self._fallback:
            return self._fallback.lngettext(msgid1, msgid2, n)
        if n == 1:
            return msgid1
        else:
            return msgid2

217
    def ugettext(self, message):
218 219
        if self._fallback:
            return self._fallback.ugettext(message)
220 221
        return unicode(message)

222 223 224 225 226 227 228 229
    def ungettext(self, msgid1, msgid2, n):
        if self._fallback:
            return self._fallback.ungettext(msgid1, msgid2, n)
        if n == 1:
            return unicode(msgid1)
        else:
            return unicode(msgid2)

230 231 232 233 234 235
    def info(self):
        return self._info

    def charset(self):
        return self._charset

236 237 238 239 240 241
    def output_charset(self):
        return self._output_charset

    def set_output_charset(self, charset):
        self._output_charset = charset

242
    def install(self, unicode=False, names=None):
243 244
        import __builtin__
        __builtin__.__dict__['_'] = unicode and self.ugettext or self.gettext
245 246 247 248 249 250 251 252 253 254
        if hasattr(names, "__contains__"):
            if "gettext" in names:
                __builtin__.__dict__['gettext'] = __builtin__.__dict__['_']
            if "ngettext" in names:
                __builtin__.__dict__['ngettext'] = (unicode and self.ungettext
                                                             or self.ngettext)
            if "lgettext" in names:
                __builtin__.__dict__['lgettext'] = self.lgettext
            if "lngettext" in names:
                __builtin__.__dict__['lngettext'] = self.lngettext
255 256 257 258


class GNUTranslations(NullTranslations):
    # Magic number of .mo files
259 260
    LE_MAGIC = 0x950412deL
    BE_MAGIC = 0xde120495L
261 262 263 264 265 266 267

    def _parse(self, fp):
        """Override this method to support alternative .mo formats."""
        unpack = struct.unpack
        filename = getattr(fp, 'name', '')
        # Parse the .mo file header, which consists of 5 little endian 32
        # bit words.
268
        self._catalog = catalog = {}
269
        self.plural = lambda n: int(n != 1) # germanic plural by default
270
        buf = fp.read()
271
        buflen = len(buf)
272
        # Are we big endian or little endian?
273
        magic = unpack('<I', buf[:4])[0]
274
        if magic == self.LE_MAGIC:
275 276
            version, msgcount, masteridx, transidx = unpack('<4I', buf[4:20])
            ii = '<II'
277
        elif magic == self.BE_MAGIC:
278 279
            version, msgcount, masteridx, transidx = unpack('>4I', buf[4:20])
            ii = '>II'
280
        else:
281 282 283 284
            raise IOError(0, 'Bad magic number', filename)
        # Now put all messages from the .mo file buffer into the catalog
        # dictionary.
        for i in xrange(0, msgcount):
285
            mlen, moff = unpack(ii, buf[masteridx:masteridx+8])
286
            mend = moff + mlen
287
            tlen, toff = unpack(ii, buf[transidx:transidx+8])
288
            tend = toff + tlen
289
            if mend < buflen and tend < buflen:
290
                msg = buf[moff:mend]
291
                tmsg = buf[toff:tend]
292 293
            else:
                raise IOError(0, 'File is corrupt', filename)
294
            # See if we're looking at GNU .mo conventions for metadata
295
            if mlen == 0:
296
                # Catalog description
297
                lastk = k = None
298
                for item in tmsg.splitlines():
299 300 301
                    item = item.strip()
                    if not item:
                        continue
302 303 304 305 306 307 308 309
                    if ':' in item:
                        k, v = item.split(':', 1)
                        k = k.strip().lower()
                        v = v.strip()
                        self._info[k] = v
                        lastk = k
                    elif lastk:
                        self._info[lastk] += '\n' + item
310 311
                    if k == 'content-type':
                        self._charset = v.split('charset=')[1]
312 313 314 315
                    elif k == 'plural-forms':
                        v = v.split(';')
                        plural = v[1].split('plural=')[1]
                        self.plural = c2py(plural)
Barry Warsaw's avatar
Barry Warsaw committed
316 317 318 319 320 321 322 323 324
            # Note: we unconditionally convert both msgids and msgstrs to
            # Unicode using the character encoding specified in the charset
            # parameter of the Content-Type header.  The gettext documentation
            # strongly encourages msgids to be us-ascii, but some appliations
            # require alternative encodings (e.g. Zope's ZCML and ZPT).  For
            # traditional gettext applications, the msgid conversion will
            # cause no problems since us-ascii should always be a subset of
            # the charset encoding.  We may want to fall back to 8-bit msgids
            # if the Unicode conversion fails.
325
            if '\x00' in msg:
326 327 328
                # Plural forms
                msgid1, msgid2 = msg.split('\x00')
                tmsg = tmsg.split('\x00')
Barry Warsaw's avatar
Barry Warsaw committed
329
                if self._charset:
330 331 332 333 334
                    msgid1 = unicode(msgid1, self._charset)
                    tmsg = [unicode(x, self._charset) for x in tmsg]
                for i in range(len(tmsg)):
                    catalog[(msgid1, i)] = tmsg[i]
            else:
Barry Warsaw's avatar
Barry Warsaw committed
335
                if self._charset:
336 337 338
                    msg = unicode(msg, self._charset)
                    tmsg = unicode(tmsg, self._charset)
                catalog[msg] = tmsg
339
            # advance to next entry in the seek tables
340 341
            masteridx += 8
            transidx += 8
342

343
    def gettext(self, message):
Barry Warsaw's avatar
Barry Warsaw committed
344 345 346
        missing = object()
        tmsg = self._catalog.get(message, missing)
        if tmsg is missing:
347 348 349
            if self._fallback:
                return self._fallback.gettext(message)
            return message
Barry Warsaw's avatar
Barry Warsaw committed
350
        # Encode the Unicode tmsg back to an 8-bit string, if possible
351 352 353
        if self._output_charset:
            return tmsg.encode(self._output_charset)
        elif self._charset:
Barry Warsaw's avatar
Barry Warsaw committed
354 355
            return tmsg.encode(self._charset)
        return tmsg
356

357 358 359 360 361 362 363 364 365 366 367
    def lgettext(self, message):
        missing = object()
        tmsg = self._catalog.get(message, missing)
        if tmsg is missing:
            if self._fallback:
                return self._fallback.lgettext(message)
            return message
        if self._output_charset:
            return tmsg.encode(self._output_charset)
        return tmsg.encode(locale.getpreferredencoding())

368 369
    def ngettext(self, msgid1, msgid2, n):
        try:
Barry Warsaw's avatar
Barry Warsaw committed
370
            tmsg = self._catalog[(msgid1, self.plural(n))]
371 372 373
            if self._output_charset:
                return tmsg.encode(self._output_charset)
            elif self._charset:
Barry Warsaw's avatar
Barry Warsaw committed
374 375
                return tmsg.encode(self._charset)
            return tmsg
376 377 378 379 380 381 382 383
        except KeyError:
            if self._fallback:
                return self._fallback.ngettext(msgid1, msgid2, n)
            if n == 1:
                return msgid1
            else:
                return msgid2

384 385 386 387 388 389 390 391 392 393 394 395 396 397
    def lngettext(self, msgid1, msgid2, n):
        try:
            tmsg = self._catalog[(msgid1, self.plural(n))]
            if self._output_charset:
                return tmsg.encode(self._output_charset)
            return tmsg.encode(locale.getpreferredencoding())
        except KeyError:
            if self._fallback:
                return self._fallback.lngettext(msgid1, msgid2, n)
            if n == 1:
                return msgid1
            else:
                return msgid2

398
    def ugettext(self, message):
399 400 401
        missing = object()
        tmsg = self._catalog.get(message, missing)
        if tmsg is missing:
402 403
            if self._fallback:
                return self._fallback.ugettext(message)
Barry Warsaw's avatar
Barry Warsaw committed
404
            return unicode(message)
405
        return tmsg
406

407 408 409 410 411 412 413
    def ungettext(self, msgid1, msgid2, n):
        try:
            tmsg = self._catalog[(msgid1, self.plural(n))]
        except KeyError:
            if self._fallback:
                return self._fallback.ungettext(msgid1, msgid2, n)
            if n == 1:
Barry Warsaw's avatar
Barry Warsaw committed
414
                tmsg = unicode(msgid1)
415
            else:
Barry Warsaw's avatar
Barry Warsaw committed
416
                tmsg = unicode(msgid2)
417
        return tmsg
418

Tim Peters's avatar
Tim Peters committed
419

420
# Locate a .mo file using the gettext strategy
421
def find(domain, localedir=None, languages=None, all=0):
422 423
    # Get some reasonable defaults for arguments that were not supplied
    if localedir is None:
424
        localedir = _default_localedir
425 426 427 428 429 430 431 432 433
    if languages is None:
        languages = []
        for envar in ('LANGUAGE', 'LC_ALL', 'LC_MESSAGES', 'LANG'):
            val = os.environ.get(envar)
            if val:
                languages = val.split(':')
                break
        if 'C' not in languages:
            languages.append('C')
434
    # now normalize and expand the languages
435
    nelangs = []
436 437
    for lang in languages:
        for nelang in _expand_lang(lang):
438 439
            if nelang not in nelangs:
                nelangs.append(nelang)
440
    # select a language
441 442 443 444
    if all:
        result = []
    else:
        result = None
445
    for lang in nelangs:
446 447
        if lang == 'C':
            break
448
        mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
449
        if os.path.exists(mofile):
450 451 452 453 454
            if all:
                result.append(mofile)
            else:
                return mofile
    return result
455 456


Tim Peters's avatar
Tim Peters committed
457

458 459 460
# a mapping between absolute .mo file path and Translation object
_translations = {}

461
def translation(domain, localedir=None, languages=None,
462
                class_=None, fallback=False, codeset=None):
463 464
    if class_ is None:
        class_ = GNUTranslations
465
    mofiles = find(domain, localedir, languages, all=1)
Barry Warsaw's avatar
Barry Warsaw committed
466
    if not mofiles:
467 468
        if fallback:
            return NullTranslations()
469 470
        raise IOError(ENOENT, 'No translation file found for domain', domain)
    # TBD: do we need to worry about the file pointer getting collected?
471 472
    # Avoid opening, reading, and parsing the .mo file after it's been done
    # once.
473 474 475 476 477 478
    result = None
    for mofile in mofiles:
        key = os.path.abspath(mofile)
        t = _translations.get(key)
        if t is None:
            t = _translations.setdefault(key, class_(open(mofile, 'rb')))
479 480 481
        # Copy the translation object to allow setting fallbacks and
        # output charset. All other instance data is shared with the
        # cached object.
482
        t = copy.copy(t)
483 484
        if codeset:
            t.set_output_charset(codeset)
485 486 487 488 489
        if result is None:
            result = t
        else:
            result.add_fallback(t)
    return result
490

Tim Peters's avatar
Tim Peters committed
491

492
def install(domain, localedir=None, unicode=False, codeset=None, names=None):
493
    t = translation(domain, localedir, fallback=True, codeset=codeset)
494
    t.install(unicode, names)
495 496


Tim Peters's avatar
Tim Peters committed
497

498 499
# a mapping b/w domains and locale directories
_localedirs = {}
500 501
# a mapping b/w domains and codesets
_localecodesets = {}
502 503
# current global domain, `messages' used for compatibility w/ GNU gettext
_current_domain = 'messages'
504 505 506 507


def textdomain(domain=None):
    global _current_domain
508
    if domain is not None:
509
        _current_domain = domain
510
    return _current_domain
511 512


513 514 515 516 517
def bindtextdomain(domain, localedir=None):
    global _localedirs
    if localedir is not None:
        _localedirs[domain] = localedir
    return _localedirs.get(domain, _default_localedir)
518 519


520 521 522 523 524 525 526
def bind_textdomain_codeset(domain, codeset=None):
    global _localecodesets
    if codeset is not None:
        _localecodesets[domain] = codeset
    return _localecodesets.get(domain)


527
def dgettext(domain, message):
528
    try:
529 530
        t = translation(domain, _localedirs.get(domain, None),
                        codeset=_localecodesets.get(domain))
531 532 533
    except IOError:
        return message
    return t.gettext(message)
Tim Peters's avatar
Tim Peters committed
534

535 536 537 538 539 540 541
def ldgettext(domain, message):
    try:
        t = translation(domain, _localedirs.get(domain, None),
                        codeset=_localecodesets.get(domain))
    except IOError:
        return message
    return t.lgettext(message)
542

543 544
def dngettext(domain, msgid1, msgid2, n):
    try:
545 546
        t = translation(domain, _localedirs.get(domain, None),
                        codeset=_localecodesets.get(domain))
547 548 549 550 551 552 553
    except IOError:
        if n == 1:
            return msgid1
        else:
            return msgid2
    return t.ngettext(msgid1, msgid2, n)

554 555 556 557 558 559 560 561 562 563
def ldngettext(domain, msgid1, msgid2, n):
    try:
        t = translation(domain, _localedirs.get(domain, None),
                        codeset=_localecodesets.get(domain))
    except IOError:
        if n == 1:
            return msgid1
        else:
            return msgid2
    return t.lngettext(msgid1, msgid2, n)
564

565 566
def gettext(message):
    return dgettext(_current_domain, message)
567

568 569
def lgettext(message):
    return ldgettext(_current_domain, message)
570

571 572 573
def ngettext(msgid1, msgid2, n):
    return dngettext(_current_domain, msgid1, msgid2, n)

574 575
def lngettext(msgid1, msgid2, n):
    return ldngettext(_current_domain, msgid1, msgid2, n)
576

577
# dcgettext() has been deemed unnecessary and is not implemented.
578

579 580 581 582 583 584 585
# James Henstridge's Catalog constructor from GNOME gettext.  Documented usage
# was:
#
#    import gettext
#    cat = gettext.Catalog(PACKAGE, localedir=LOCALEDIR)
#    _ = cat.gettext
#    print _('Hello World')
586

587 588 589
# The resulting catalog object currently don't support access through a
# dictionary API, which was supported (but apparently unused) in GNOME
# gettext.
590

591
Catalog = translation