mercurial/i18n.py
author Benoit Boissinot <benoit.boissinot@ens-lyon.org
Tue, 18 Oct 2005 18:37:48 -0700
changeset 1400 cf9a1233738a
child 1401 fbf2b10011aa
permissions -rw-r--r--
i18n first part: make '_' available for files who need it

"""
i18n.py - internationalization support for mercurial

Copyright 2005 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', '/usr/share/locale', fallback=1)
gettext = t.gettext