Mercurial > hg
view mercurial/i18n.py @ 4881:c51c9bc4579d
Add hghave utility and run-tests.py support.
hghave detects system features like symlinks availability at run-time. Tests can be skipped by starting them with:
"$TESTDIR/hghave" symlink || exit 80
The 80 exit status triggers hghave output handling by run-tests.py. Also, tests output can be locally patched on the fly to match reference output.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sat, 14 Jul 2007 18:34:06 +0200 |
parents | 660504812daf |
children | 85ae7aaf08e9 |
line wrap: on
line source
""" 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