mercurial/i18n.py
changeset 3888 660504812daf
parent 2859 345bac2bc4ec
child 7650 85ae7aaf08e9
--- a/mercurial/i18n.py	Thu Dec 14 15:55:46 2006 -0600
+++ b/mercurial/i18n.py	Thu Dec 14 17:32:00 2006 -0600
@@ -7,9 +7,7 @@
 of the GNU General Public License, incorporated herein by reference.
 """
 
-# the import from gettext is _really_ slow
-# for now we use a dummy function
-gettext = lambda x: x
-#import gettext
-#t = gettext.translation('hg', '/usr/share/locale', fallback=1)
-#gettext = t.gettext
+import gettext
+t = gettext.translation('hg', fallback=1)
+gettext = t.gettext
+_ = gettext