Hi to everyone
I was making some little research on Form, Grid, and Auth objects and the way they give support translations. Found that:
Auth does not implement a method to translate strings used for building document elements, but it is possible to overwrite the params attribute on-the-fly to use the T object (by adding a few lines to scaffolding common.py module
Grid does implement translations receiving a T object as argument in constructor
Form labels and other strings do not support translations (there are some threads on this subject)
Perhaps it would be possible that Auth and Form class adds support for translations the same way that Grid implements it? The caveat I see on this is the app will not update translations until the class gets instantiated on an action. Another approach would be to customize classes on the model and find a mechanism to use the updated classes in controller.
Regards
Alan