Well, there is simple standalone web translator as a working example: http://github.com/pejuko/i18n-web-translator
It is written using framework ramaze (I have sent it there because this group is enlisted as a mailing-list for the i18n-library) However, the scenario for using this tool is following: In your application you just include backend I18n::Backend::Simple.send(:include, I18n::Backend::Translator) for your locales you need to have some default file (eg. default.yml in eg. locale directory) and then you can use i18n-translate tool for merging files. If you want to use PO files then you need include also I18n::Backend::PO etc. I also recomend to use fallbacks plugin. I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks) Some usage examples are also in README.md file: http://github.com/pejuko/i18n-translators-tools/blob/master/README.md On 10 srp, 16:06, Andrés gutiérrez <[email protected]> wrote: > 2010/8/10 pejuko <[email protected]> > > > oops, actualy, there is a typo: > > > > There are also some backends for i18n library: > > > > -- I18n::Backend::Simple.send(:include, I18n::Backend::Translator) > > > (Extended format. i18n-translators-tools brings extended format) > > > backend for the extended format is: > > I18n::Backend::Translate > > Could you put an usage example with a rails App (2.3.x or 3.0.x)? > An example of a simple UI interface to translate App files. > > > > > -- > > You received this message because you are subscribed to the Google Groups > > "rails-i18n" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<rails-i18n%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/rails-i18n?hl=en. > > -- You received this message because you are subscribed to the Google Groups "rails-i18n" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rails-i18n?hl=en.
