I think so, but to force translation for all languages, you might need to
do something like:
T.current_languages = []
By default, T.current_languages = ['en'], which means it doesn't bother
translating when the accepted language is 'en'.
Anthony
On Thursday, July 12, 2012 1:37:16 PM UTC-4, rochacbruno wrote:
>
> I need something like this.
>
> <h1> {{=T("Here I will put the awesome title")}} </h1>
>
> So I will create files for languages:
>
> en.py
>
> {"Here I will put the awesome title": "My Title"}
>
> pt-br.py
>
> {"Here I will put the awesome title": "Meu tÃtulo"}
>
> an so..
>
> Should it works?
>