[google-appengine] Re: How can I support multilingual interfaces in GAE?

2008-09-06 Thread Davide Rognoni
In Python you can use the dictionary (IT = italian): >>> TRANS = { ... "IT" : { ... "hello" : "ciao", ... "apple" : "mela", ... } ... } >>> TRANS {'IT': {'hello': 'ciao', 'apple': 'mela'}} . . . -- Best Template Engine http://pyoohtml.appspot.com/best-template-engine . . . On Sep

[google-appengine] Re: How can I support multilingual interfaces in GAE?

2008-09-06 Thread A . TNG
On Mon, Jun 23, 2008 at 10:31 PM, Takashi Matsuo <[EMAIL PROTECTED]> wrote: > > Hi, > > Perhaps you can use django's i18n capability. In my case, it worked perfectly. > > Please see: > http://www.djangoproject.com/documentation/i18n/ > or > http://www.djangoproject.com/documentation/0.96/i18n/ > a