No commit activity in last 3 years
No release in over a year
A simple gem to add a translation mechanic to your existing apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

> 6.0
 Project Readme

ActiverecordI18n

This gem was created to use db additionaly to the existing I18n.t This gems didn't replace the standard.

I use this code for few year on all my project, It's simple and easy to support. I'm finally decide to share this code.

If you want to replace, the exsiting I18n.t, I recommand you this gem : https://github.com/svenfuchs/i18n-active_record

Usage

Use from view

ot('mykey')   # will create a key name  mykey
ot('.mykey')   # will create a key name  <view-path>.mykey

Using elsewhere from a view

ActiverecordI18n::Helper.ot('mykey')

Getting started

Add this line to your application's Gemfile:

gem 'activerecord_i18n'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install activerecord_i18n

To install model and migration

$ rails generate activerecord_i18n:install

Contributor

You want to contribute ? I need to finish the test

License

The gem is available as open source under the terms of the MIT License.