Rails: How to change the text on the submit button in a Rails Form
If you want to change all create and update form submit tags, this change is easy to make. Modify config/locales/en.yml
like so:
en:
helpers:
submit:
create: "Crear un %{model}"
update: "Confirmar cambios al %{model} creado"
instead of
<%= f.submit %>
put
<%= f.submit "My Submit Text" %>