Re: i18n a Python app

2007-12-02 Thread Donn Ingle
Another thought, how would one provide translations for doc strings? class Boo: """This class goes Boo!""" Can one do this, which does not seem likely: class Boo: _( "This class goes Boo!" ) \d -- http://mail.python.org/mailman/listinfo/python-list

i18n a Python app

2007-12-02 Thread Donn Ingle
Hi, I have been going spare looking for a tutorial or howto from my pov as a total beginner to i18n. I understand that one must use gettext, but there seems to be no good info about *how* one uses it. What command line utilities does one use to: 1. make a .pot file 2. make a .mo file Are there