class ActiveAdmin::Resource::Name

def eql?(other)

def eql?(other)
  to_str.eql?(other.to_str)
end

def initialize(klass, name = nil)

def initialize(klass, name = nil)
  super(klass, nil, name)
end

def route_key

def route_key
  plural
end

def translate(options = {})

def translate(options = {})
  I18n.t i18n_key, **{ scope: [:activerecord, :models] }.merge(options)
end