No commit activity in last 3 years
No release in over 3 years
Handles globalize3 translations
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

ActiveAdmin::Globalize3

Makes it easy to translate your resource fields.

Installation

gem "activeadmin-globalize3"

Your model

active_admin_translates :title, :description do
  validates_presence_of :title
end

Editor configuration

index do
  # ...
  translation_status
  # ...
  default_actions
end

form do |f|
  # ...
  f.translated_inputs "Translated fields", switch_locale: false do |t|
    t.input :title
    t.input :content
  end
  # ...
end

If switch_locale is set, each tab will be rendered switching locale.

Friendly ID

If you want to use Friendly ID together with Globalize3, please take a look at the activeadmin-seo gem.

Hints

To use the dashed locale keys as 'pt-BR' or 'pt-PT' you need to convert a string to symbol (in application.rb)

config.i18n.available_locales = [:en, :it, :de, :es, :"pt-BR"]