Hi,

I've verified that a program like the following works as expected under 
python2.4:

import gettext
_ = gettext.translation('dialog').lgettext
print _("OK")
_ = gettext.translation('dia').lgettext
print _("x")


Thus:

gettext.bindtextdomain('linda')
gettext.textdomain('linda')
_ = gettext.gettext

can be replaced with:

_ = gettext.translation('linda').lgettext


on python2.4



regards,
        junichi
-- 
Junichi Uekawa, Debian Developer   http://www.netfort.gr.jp/~dancer/
183A 70FC 4732 1B87 57A5  CE82 D837 7D4E E81E 55C1 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to