Skip to content
hernanvicente edited this page Dec 31, 2011 · 4 revisions

You just need to set I18n.locale in a before_filter.

Add the following line to @config/initializers/active_admin.rb@:

bc. #config/initializers/active_admin.rb

config.before_filter :set_admin_locale

and define the folllowing method:

def set_admin_locale
  I18n.locale = :en
end
Clone this wiki locally