You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
agenda-libre-ruby/app/admin/translation.rb

17 lines
272 B

ActiveAdmin.register I18n::Backend::ActiveRecord::Translation do
permit_params :locale, :key, :value
form do |f|
f.inputs do
f.input :locale
f.input :key
f.input :value
f.actions
end
end
after_update do
I18n.reload!
end
end