Project

mongo-i18n

0.01
Repository is archived
No commit activity in last 3 years
No release in over 3 years
MongoDB backend implementation for I18n gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 2.3.0

Runtime

 Project Readme

Mongo-I18n¶ ↑

MongoDB backend implementation for I18n gem.

Supports¶ ↑

  • Ruby 1.8.7 (Ruby 1.9+ untested but should work).

  • I18n 0.5.0

  • Rails 3.0.3

Installation¶ ↑

From command line:

gem install mongo-i18n

At rails’ 3 gemfile:

gem 'mongo-i18n'

Usage with Rails 3¶ ↑

I recommend to start with Chain backend while mongodb collection is empty, and move to entirely mongodb-based backend when you populate your database with all I18n messages.

Begin with:

collection = Mongo::Connection.new['my_app_related_db'].collection('i18n')
I18n.backend = I18n::Backend::Chain.new(I18n::Backend::KeyValue.new(MongoI18n::Store.new(collection)), I18n.backend)

And finish with:

collection = Mongo::Connection.new['my_app_related_db'].collection('i18n')
I18n.backend = I18n::Backend::KeyValue.new(MongoI18n::Store.new(collection)

If you are already using a mongodb ORM in your project (and I suppose you are, why else would you be reading this article? :), I recommend using the existing database connection:

collection = MongoMapper.database.collection('i18n')
I18n.backend = I18n::Backend::KeyValue.new(MongoI18n::Store.new(collection))

License¶ ↑

Mongo-I18n is licensed under Apache license. See LICENSE for details.