[I18n-sig] When Internationalizing ?

Barry Warsaw barry at python.org
Mon May 23 16:29:24 CEST 2005


On Mon, 2005-05-23 at 09:44, philopensource at hotmail.com wrote:

> I was just wondering if i have to internazionalize the application at its start or when it is finish.
> What is the right order to do it?

Definitely begin marking up your human readable text as early as
possible.  It's as simple as wrapping things in _() function calls.  You
can even stub out the i18n with this:

def _(s): return s

-Barry

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 307 bytes
Desc: This is a digitally signed message part
Url : http://mail.python.org/pipermail/i18n-sig/attachments/20050523/8e2916ea/attachment.pgp


More information about the I18n-sig mailing list