Sha256: c28ef3e18e3f09fde00fc9237e37d899117ef1d9142fc916770cdb60e16f8ec4

Contents?: true

Size: 1.79 KB

Versions: 1

Compression:

Stored size: 1.79 KB

Contents

[![Gem Version](https://badge.fury.io/rb/translatable_records.svg)](http://badge.fury.io/rb/translatable_records)
[![Code Climate](https://codeclimate.com/github/mmontossi/translatable_records/badges/gpa.svg)](https://codeclimate.com/github/mmontossi/translatable_records)
[![Build Status](https://travis-ci.org/mmontossi/translatable_records.svg)](https://travis-ci.org/mmontossi/translatable_records)
[![Dependency Status](https://gemnasium.com/mmontossi/translatable_records.svg)](https://gemnasium.com/mmontossi/translatable_records)

# Translatable Records

Fully customizable record translations for rails.

## Why

I did this gem to:

- Have the freedom to customize the translation model.
- Avoid duplication by delegate translatable attributes directly to translation model.
- Use translations other than I18n.available_locales.

## Install

Put this line in your Gemfile:
```ruby
gem 'translatable_records'
```

Then bundle:
```
$ bundle
```

## Configuration

Define wich attributes will be translated in the model:
```ruby
class Product < ActiveRecord::Base
  translate :name
end
```

Generate the translation and migration:
```
$ bundle exec rails g translation product
```

Update your db:
```
$ bundle exec rake db:migrate
```

## Usage

### Accessors

By default will use I18n.locale but you can change it:
```ruby
product.locale = :en
```

Accessor continue working the same:
```ruby
product.name = 'Phone'
```

### Views

If you want to save multiple translations:
```erb
<%= f.fields_for :translations do |ff| %>
  <%= ff.hidden_field :locale %>
  <%= ff.label :name %>
  <%= ff.text_field :name %>
<% end %>
```

## Credits

This gem is maintained and funded by [mmontossi](https://github.com/mmontossi).

## License

It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
translatable_records-4.0.0.0 README.md