diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb
index 42232b9b29d..784af585ef8 100644
--- a/app/views/devise/sessions/new.html.erb
+++ b/app/views/devise/sessions/new.html.erb
@@ -7,7 +7,7 @@
<%= render TabNavigationComponent.new(
label: t('account.login.tab_navigation'),
routes: [
- { text: t('links.next'), path: new_user_session_url },
+ { text: t('links.sign_in'), path: new_user_session_url },
{ text: t('links.create_account'), path: sign_up_email_url },
],
class: 'margin-bottom-4',
@@ -47,7 +47,7 @@
},
},
) %>
- <%= f.submit t('links.next'), full_width: true, wide: false %>
+ <%= f.submit t('links.sign_in'), full_width: true, wide: false %>
<% end %>
<% if @ial && desktop_device? %>
diff --git a/app/views/sign_up/registrations/new.html.erb b/app/views/sign_up/registrations/new.html.erb
index be7a81383ed..f638911f189 100644
--- a/app/views/sign_up/registrations/new.html.erb
+++ b/app/views/sign_up/registrations/new.html.erb
@@ -9,7 +9,7 @@
<%= render TabNavigationComponent.new(
label: t('account.login.tab_navigation'),
routes: [
- { text: t('links.next'), path: new_user_session_url },
+ { text: t('links.sign_in'), path: new_user_session_url },
{ text: t('links.create_account'), path: sign_up_email_path },
],
class: 'margin-bottom-4',
diff --git a/config/locales/links/en.yml b/config/locales/links/en.yml
index 661799f3143..d0d19d56cfe 100644
--- a/config/locales/links/en.yml
+++ b/config/locales/links/en.yml
@@ -16,12 +16,12 @@ en:
go_back: Go back
help: Help
new_tab: '(opens new tab)'
- next: Sign in
passwords:
forgot: Forgot your password?
privacy_policy: Privacy & security
resend: Resend
reverify: Please verify your identity again.
+ sign_in: Sign in
sign_out: Sign out
two_factor_authentication:
send_another_code: Send another code
diff --git a/config/locales/links/es.yml b/config/locales/links/es.yml
index 0c863e61542..abfa3d0af66 100644
--- a/config/locales/links/es.yml
+++ b/config/locales/links/es.yml
@@ -16,12 +16,12 @@ es:
go_back: Regresa
help: Ayuda
new_tab: (abrir nueva pestaña)
- next: Siguiente
passwords:
forgot: '¿Olvidó su contraseña?'
privacy_policy: Privacidad y seguridad
resend: Reenviar
reverify: Verifique su identidad nuevamente.
+ sign_in: Iniciar sesión
sign_out: Cerrar sesión
two_factor_authentication:
send_another_code: Enviar otro código
diff --git a/config/locales/links/fr.yml b/config/locales/links/fr.yml
index f16f349884e..4311519a413 100644
--- a/config/locales/links/fr.yml
+++ b/config/locales/links/fr.yml
@@ -16,12 +16,12 @@ fr:
go_back: Retourner
help: Aide
new_tab: '(ouvre un nouvel onglet)'
- next: Suivant
passwords:
forgot: Vous avez oublié votre mot de passe?
privacy_policy: Confidentialité et sécurité
resend: Renvoyer
reverify: Veuillez vérifier votre identité de nouveau.
+ sign_in: Se connecter
sign_out: Déconnexion
two_factor_authentication:
send_another_code: Envoyer un autre code
diff --git a/spec/features/visitors/password_recovery_spec.rb b/spec/features/visitors/password_recovery_spec.rb
index 5bb404bfc59..ccda0376641 100644
--- a/spec/features/visitors/password_recovery_spec.rb
+++ b/spec/features/visitors/password_recovery_spec.rb
@@ -198,7 +198,7 @@
fill_in t('account.index.email'), with: @user.email
fill_in t('components.password_toggle.label'), with: 'NewVal!dPassw0rd'
- click_button t('links.next')
+ click_button t('links.sign_in')
fill_in_code_with_last_phone_otp
click_submit_default
click_agree_and_continue
diff --git a/spec/support/features/session_helper.rb b/spec/support/features/session_helper.rb
index cb903f583d8..c786310c475 100644
--- a/spec/support/features/session_helper.rb
+++ b/spec/support/features/session_helper.rb
@@ -111,7 +111,7 @@ def fill_in_bad_piv_cac_credentials_and_submit
def fill_in_credentials_and_submit(email, password)
fill_in t('account.index.email'), with: email
fill_in t('account.index.password'), with: password
- click_button t('links.next')
+ click_button t('links.sign_in')
end
def continue_as(email = nil, password = VALID_PASSWORD)
diff --git a/spec/views/sign_up/registrations/new.html.erb_spec.rb b/spec/views/sign_up/registrations/new.html.erb_spec.rb
index 08e4dc37cc2..30989420c94 100644
--- a/spec/views/sign_up/registrations/new.html.erb_spec.rb
+++ b/spec/views/sign_up/registrations/new.html.erb_spec.rb
@@ -48,7 +48,7 @@
render
expect(rendered).to have_link(
- t('links.next'),
+ t('links.sign_in'),
href: new_user_session_url(request_id: nil),
)
end