Mark Pegasov
Mark Pegasov

Reputation: 5289

Store i18n translations in activerecord — rails 3.2

Are there any build-in way to store translations in database for rails 3.2?

I've find some gems like a https://github.com/svenfuchs/i18n-active_record and this doc http://rubydoc.info/docs/rails/2.3.8/I18n/Backend/ActiveRecord for 2.3 rails, but I can't find same solutions for 3.2.

Upvotes: 2

Views: 1617

Answers (1)

joelparkerhenderson
joelparkerhenderson

Reputation: 35443

Yes, Globalize3:

Good blog post on Globalize3:

If you're curious about how to do i18n backends:

If you're curious about faster backends using Tokyo Cabinet or Redis:

Upvotes: 5

Related Questions