diff --git a/app/views/users/passwords/edit.html.slim b/app/views/users/passwords/edit.html.slim index 504fd5bf..998ca2aa 100644 --- a/app/views/users/passwords/edit.html.slim +++ b/app/views/users/passwords/edit.html.slim @@ -17,7 +17,7 @@ = f.input :password_confirmation, required: true .form-actions - = f.button :submit + = f.button :submit, 'Update password' .medium-6.columns.end = render 'users/shared/links' diff --git a/app/views/users/registrations/edit.html.slim b/app/views/users/registrations/edit.html.slim index e6ea221d..6ce4d0c2 100644 --- a/app/views/users/registrations/edit.html.slim +++ b/app/views/users/registrations/edit.html.slim @@ -21,7 +21,7 @@ required: true .form-actions - = f.button :submit + = f.button :submit, 'Update' .medium-6.columns.end h6 diff --git a/app/views/users/registrations/new.html.slim b/app/views/users/registrations/new.html.slim index 911e0cf4..5b49bed2 100644 --- a/app/views/users/registrations/new.html.slim +++ b/app/views/users/registrations/new.html.slim @@ -22,7 +22,7 @@ = f.input :password_confirmation, required: true .form-actions - = f.button :submit + = f.button :submit, 'Sign up' .medium-6.columns.end = render 'users/shared/links' diff --git a/config/locales/helpers.en.yml b/config/locales/helpers.en.yml deleted file mode 100644 index 00cad84d..00000000 --- a/config/locales/helpers.en.yml +++ /dev/null @@ -1,6 +0,0 @@ -en: - helpers: - submit: - user: - create: 'Sign up' - update: 'Update'