2014-04-04 00:51:42 +02:00
|
|
|
ActiveAdmin.register I18n::Backend::ActiveRecord::Translation do
|
2014-08-17 22:43:54 +02:00
|
|
|
permit_params :locale, :key, :value
|
2014-07-18 17:01:51 +02:00
|
|
|
|
|
|
|
form do |f|
|
|
|
|
f.inputs do
|
2014-08-17 22:43:54 +02:00
|
|
|
f.input :locale
|
2014-07-18 17:01:51 +02:00
|
|
|
f.input :key
|
|
|
|
f.input :value, as: :pagedown_text
|
|
|
|
f.actions
|
|
|
|
end
|
|
|
|
end
|
2014-08-10 00:26:18 +02:00
|
|
|
|
|
|
|
after_update do
|
|
|
|
I18n.reload!
|
|
|
|
end
|
2014-04-04 00:51:42 +02:00
|
|
|
end
|