mercurial/i18n.py
author Shun-ichi GOTO <shunichi.goto@gmail.com>
Fri, 12 Oct 2007 11:46:49 +0900
changeset 5459 b0e5f44fdeb3
parent 3890 660504812daf
permissions -rw-r--r--
mpatch: Define Py_ssize_t for old pythons and use it instead of ssize_t. See also PEP 353. NOTE: Microsoft compilers (8 or earlier) does not have ssize_t.

"""
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