Only the item to enter the user name on the new registration screen is "name" in English, so I want to change it to "user name" in Japanese.
ruby:app/views/devise/registrations/new.html.haml
# before
.field-label
= f.label :name
↓
# after
.field-label
= f.label :name, "username"
before
after
Recommended Posts