mercurial/i18n.py
author Matt Mackall <mpm@selenic.com>
Thu, 14 Dec 2006 17:32:00 -0600
changeset 3890 660504812daf
parent 2858 345bac2bc4ec
permissions -rw-r--r--
Enable gettext translations The new demandimport eliminates most of the gettext performance hit of importing gettext, which was doubling the run time for 'hg'. Now, with 'hg tip': dummy: .09530s no translations: .09638s translations: .09755s

"""
i18n.py - internationalization support for mercurial

Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>

This software may be used and distributed according to the terms
of the GNU General Public License, incorporated herein by reference.
"""

import gettext
t = gettext.translation('hg', fallback=1)
gettext = t.gettext
_ = gettext