I'm localizing Rails app with Rails Admin using I18n. In some models (Good < ActiveRecord) Rails admin configured as follows:
rails_admin do
label = 'Good'
label_plural = 'Goods'
navigation_label = 'Settings'
navigation_icon = 'icon-settings'
end
I know that label localization can be stored in config/locales/en.yml (Translations for Active Record Models) as follows:
en:
activerecord:
models:
good:
one: Good
few: Goods
many: Goods
other: Goods
The question is: how can I store and use locale for navigation_label? (Can't find the answer on rails admin wiki page)