Is there a way to change the Resource Name without overriding the application helper?
So if we had a table named "users" and we wanted to label it "managers" for example.
how about i18n?
You can specify model name in activerecord.models.
http://guides.rubyonrails.org/i18n.html#translations-for-active-record-models
I have confirmed this technique can work, however, it does not rename the button labels i.e. new user instead of new dude.
You can try something like this for button labels:
en:
helpers:
submit:
user:
create: 'Create manager'
update: 'Update manager'
Thank you @jcieslar
@jcieslar thanks! It works!
Most helpful comment
You can try something like this for button labels: