fcastellanos
fcastellanos

Reputation: 263

Is there a web UI for modifying I18n locales for Rails 3?

I'm looking for a way to modify the values of I18n yml files for locales via web gui, is there some gem for that?

Upvotes: 13

Views: 5363

Answers (6)

wojtekk
wojtekk

Reputation: 616

In http://rst-it.com we also had problems with finding the right solution, so we decided to make an activeadmin translation panel with interface similar to http://www.localeapp.com/.

Currently we are in design stage (first draft is on https://github.com/KMPgroup/active_I18n) but next week we will have working solution.

I will post here info when we lunch it, but in the meantime you can check https://github.com/KMPgroup/active_I18n and tell us what you think or even write an issue - the more feedback at the beginning the better.

Upvotes: 3

msroot
msroot

Reputation: 837

Tolk is a web interface for doing i18n translations packaged as an engine for Rails 4 applications

https://github.com/tolk/tolk

Upvotes: 8

mohamagdy
mohamagdy

Reputation: 2093

A gem that mimics Twitter Translation Center github.com/badrit/translation_center

Upvotes: 10

NielsH
NielsH

Reputation: 697

This looks promising too:

http://www.localeapp.com/

I think I will give it a try. Anyone has experience with this service?

Upvotes: 1

twmills
twmills

Reputation: 3015

There's also tolk written by the creator of rails:

https://github.com/dhh/tolk

Upvotes: 3

Roman
Roman

Reputation: 13058

Yes, I modified the Newsdesk's translate plugin for using with Rails 3:

https://github.com/romanbsd/translate

Upvotes: 5

Related Questions