-
diff --git a/config/locales/en.yml b/config/locales/en.yml
index ff349a1..eba0b4c 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -127,6 +127,12 @@ en:
language_preference_spoken_label: What language do you prefer to speak?
language_preference_written_label: What language do you prefer to read or write?
title: Language Preference
+ new_response:
+ edit:
+ check_work_rules_for_someone_else: Check work rules for someone else
+ close: Close
+ title: You’re all done.
+ title_help_text: Do you want to check if the SNAP work rules apply to someone else in your household?
overview:
edit:
help_text_html: We’ll help prepare a document that you can submit to your SNAP agency. That way, your agency will know if the SNAP work rules apply to you.
diff --git a/config/locales/es.yml b/config/locales/es.yml
index 8d85f3f..6b2b44a 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -127,6 +127,12 @@ es:
language_preference_spoken_label: "¿En qué idioma prefiere hablar?"
language_preference_written_label: "¿En qué idioma prefiere leer o escribir?"
title: Preferencia de idioma
+ new_response:
+ edit:
+ check_work_rules_for_someone_else: Verificar las reglas de trabajo para otra persona
+ close: Cerrar
+ title: Ha finalizado.
+ title_help_text: "¿Desea verificar si las reglas de trabajo de SNAP aplican a otra persona de su hogar?"
overview:
edit:
help_text_html: Le ayudaremos a preparar un documento que podrá enviar a su agencia de SNAP. Así, su agencia sabrá si usted y los demás adultos de su hogar deben cumplir con las reglas de trabajo de SNAP.
diff --git a/spec/features/flow_spec.rb b/spec/features/flow_spec.rb
index 3eb95b5..90fa247 100644
--- a/spec/features/flow_spec.rb
+++ b/spec/features/flow_spec.rb
@@ -74,6 +74,6 @@
fill_in I18n.t("views.email.edit.email_confirmation"), with: "hi@example.com"
click_on I18n.t("general.continue")
- expect(page).to have_selector("h2", text: "End of example")
+ expect(page).to have_selector("h1", text: I18n.t("views.new_response.edit.title"))
end
end