Rubytastic
Rubytastic

Reputation: 15491

gem for translating ruby I18n strings on rails app from the browser/frontend?

Is there an up2date gem out to edit the whole rails i18n strings from the frontend? and to edit your translations from the webbrowser?

There once was this great gem:

Which let you edit your translations from the webbrowser. Is there any solution out today that does the same or better?

Upvotes: 4

Views: 853

Answers (3)

Eric Baril
Eric Baril

Reputation: 305

There is https://github.com/jhilden/i18n_viz now thats does exactly what you are looking for. It supports Rails 3+.

Upvotes: 0

docstun
docstun

Reputation: 90

We had some bad experiences with Copycopter, since it can mess up your localization files pretty badly. Thats's why we have built our own solution: PhraseApp

And we have pushed even further by allowing you to edit your translations on the page itself and not only with a generic form. If you have decided to use Copycopter instead, we provide a simple migration guide how move the data to PhraseApp.

Upvotes: 1

Amar
Amar

Reputation: 6942

Copycopter might be useful,

I have my custom made solution,i migrate I18n to redis and set backend to redis,and added one Ui that list down all the I18n and you can edit or delete or create,

I have written small library that will migrate to yaml to redis https://github.com/amardaxini/i18n_redis

Upvotes: 1

Related Questions