Hi everyone!
I'm updating the ubquio_scaffold plugin to be Rails 3.2 compatible and I found that the I18n files generation could be simplified.
If you look at this generator:
It creates the files for each model and view instead of modify an existing and generic models.yml file.
With this aproach whe will have specific files for each model and we wouldn't have a massive I18n file that changes (fields reordenation, etc) on every scaffold generation.
The good news is that the new I18n gem and Rails 3.2 reload all the I18n files without the need to restart the server, so generate new files in development environment it's no longer a problem.
What do you think? Should we change the generation process?