annotate mercurial/i18n.py @ 2569:2264b2b077a1

run-tests.py: make tests use same python interpreter as test harness. this is wanted because some tests run python interpreter directly. must use same python interpreter in tests as in main harness or problems will happen because of e.g. different python abi if run-tests.py run with python 2.5 but system python is 2.4. fix is to see if system python is used and is named python. if no, put symlink called python at front of shell search path.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Thu, 06 Jul 2006 10:09:24 -0700
parents fbf2b10011aa
children 345bac2bc4ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1400
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
1 """
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
2 i18n.py - internationalization support for mercurial
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
3
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
4 Copyright 2005 Matt Mackall <mpm@selenic.com>
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
5
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
6 This software may be used and distributed according to the terms
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
7 of the GNU General Public License, incorporated herein by reference.
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
8 """
cf9a1233738a i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff changeset
9
1401
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
10 # the import from gettext is _really_ slow
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
11 # for now we use a dummy function
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
12 gettext = lambda x: x
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
13 #import gettext
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
14 #t = gettext.translation('hg', '/usr/share/locale', fallback=1)
fbf2b10011aa use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents: 1400
diff changeset
15 #gettext = t.gettext