jizak
jizak

Reputation: 382

rails i18n, the best way to manage localization

I'm using http://guides.rubyonrails.org/i18n.html for localization. Looks like that the only solution for updating localization is to update yml files. May be there are some solutions or gems which adds ability to update localization via application. For example we can include some gem and update localization files from our app. Is there some solutions for that?

Upvotes: 0

Views: 2685

Answers (3)

Matt
Matt

Reputation: 5398

Take a look at Globalize 3. It stores the translation/localization data in the database. There's also a gem to hook it up with ActiveAdmin.

Also, while you're at it, don't miss the rails-i18n gem mentioned in the guide. It translates Rails itself into many languages, so you don't have to do it yourself.

Upvotes: 2

tigrish
tigrish

Reputation: 2518

Shameless plug for my own product here, but check out http://www.localeapp.com for a solution that works with YAML files out of the box.

Upvotes: 2

apneadiving
apneadiving

Reputation: 115541

There is a great railscast to manage i18n through Redis.

Upvotes: 1

Related Questions