this is a bit of a beginner's question, but I've searched everywhere and can't seem to solve it.
I'm using Rails and ActiveAdmin, and I've set up internationalization to use my es.yml locale.
So far so good. The admin interface shows up nicely in Spanish, as do error messages, dates, etc. Even the forms pick up the names of the models and the attributes (so formtastic is getting the translations OK). I have only one locale - Spanish:
config/initializers/i18n.rb
#encoding: utf-8
I18n.default_locale = :es
LANGUAGES = [
[ 'EspaƱol', 'es' ]
]
I have a problem with getting the resource names translated in the ActiveAdmin interface, though. At the top of the page, for example, it says "Users", "Estimates", etc. instead of "Usuarios", "Cotizaciones".
I can solve this by registering the classes like this:
ActiveAdmin.register User, :as => "usuario" do ... end
but then I get admin_usuarios_path, admin_usuarios_url, /admin/usuarios etc. which I find very very ugly. I would rather use English internally. The ActiveAdmin source for active_admin/resource/naming says it should be picking up the model's human_name, which is correctly being read from the localization file:
(in the console)
User.model_name.human.titleize
=> "Usuario"
So why does "Usuario" not show up on the menu bar, but "User"? I'm a bit mystified here. I must be missing something really simple.
Thanks in advance!
Kyle