diff --git a/app/components/check_answers_summary_list_card_component.rb b/app/components/check_answers_summary_list_card_component.rb
index 7fb7f10e4..031bf25b1 100644
--- a/app/components/check_answers_summary_list_card_component.rb
+++ b/app/components/check_answers_summary_list_card_component.rb
@@ -50,7 +50,7 @@ private
if log.creation_method_bulk_upload? && log.bulk_upload.present? && !log.optional_fields.include?(question.id)
"You still need to answer this question".html_safe
else
- govuk_link_to question.summary_error_message, correct_validation_action_href(question, log, nil, @correcting_hard_validation), class: "govuk-link govuk-link--no-visited-state"
+ govuk_link_to question.check_answer_prompt_message, correct_validation_action_href(question, log, nil, @correcting_hard_validation), class: "govuk-link govuk-link--no-visited-state"
end
end
diff --git a/app/helpers/check_answers_helper.rb b/app/helpers/check_answers_helper.rb
index b1c3c0b02..a49fdd1d0 100644
--- a/app/helpers/check_answers_helper.rb
+++ b/app/helpers/check_answers_helper.rb
@@ -64,7 +64,7 @@ private
if log.creation_method_bulk_upload? && log.bulk_upload.present? && !log.optional_fields.include?(question.id)
"You still need to answer this question".html_safe
else
- govuk_link_to question.summary_error_message, unanswered_action_href(question, log), class: "govuk-link govuk-link--no-visited-state"
+ govuk_link_to question.check_answer_prompt_message, unanswered_action_href(question, log), class: "govuk-link govuk-link--no-visited-state"
end
end
end
diff --git a/app/models/form/question.rb b/app/models/form/question.rb
index e2ab1ec30..8fc647d61 100644
--- a/app/models/form/question.rb
+++ b/app/models/form/question.rb
@@ -241,19 +241,21 @@ class Form::Question
I18n.t("validations.not_answered", question: question_text.downcase)
end
- def summary_error_message
- question_text = lowercase_first_letter(error_label.presence || check_answer_label.presence || header.presence || id.humanize) || "this question."
- case type
- when "checkbox"
+ def check_answer_prompt_message
+ question_text = lowercase_first_letter(check_answer_label.presence) || "this question."
+ if type == "checkbox" || question_text.end_with?("?")
"Answer #{question_text}"
- when "radio"
- "Select #{question_text}"
- when "select"
- "Select #{question_text}"
- when "date"
- "Set #{question_text}"
else
- "Enter #{question_text}"
+ case type
+ when "radio"
+ "Select #{question_text}"
+ when "select"
+ "Select #{question_text}"
+ when "date"
+ "Set #{question_text}"
+ else
+ "Enter #{question_text}"
+ end
end
end
diff --git a/config/locales/forms/2023/lettings/household_characteristics.en.yml b/config/locales/forms/2023/lettings/household_characteristics.en.yml
index 1f175adbc..efc946669 100644
--- a/config/locales/forms/2023/lettings/household_characteristics.en.yml
+++ b/config/locales/forms/2023/lettings/household_characteristics.en.yml
@@ -5,7 +5,7 @@ en:
household_characteristics:
declaration:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
- check_answer_label: "Tenant has seen the privacy notice"
+ check_answer_label: "Tenant has seen the privacy notice?"
hint_text: ""
question_text: "Declaration"
@@ -25,17 +25,17 @@ en:
check_answer_label: "Lead tenant’s age"
hint_text: ""
question_text: "Age"
-
+
sex1:
page_header: ""
check_answer_label: "Lead tenant’s gender identity"
hint_text: "The lead tenant is the person in the household who does the most paid work. If several people do the same paid work, the lead tenant is whoever is the oldest."
question_text: "Which of these best describes the lead tenant’s gender identity?"
-
+
ethnic_group:
page_header: ""
check_answer_label: "Lead tenant’s ethnic group"
- hint_text: "The lead tenant is the person in the household who does the most paid work. If several people do the same paid work, the lead tenant is whoever is the oldest."
+ hint_text: "The lead tenant is the person in the household who does the most paid work. If several people do the same paid work, the lead tenant is whoever is the oldest."
question_text: "What is the lead tenant’s ethnic group?"
ethnic:
@@ -79,7 +79,7 @@ en:
details_known_2:
page_header: "You’ve given us the details for 1 person in the household"
- check_answer_label: "Details known for person 2"
+ check_answer_label: "Details known for person 2?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@@ -97,13 +97,13 @@ en:
question_text: "Do you know person 2’s age?"
age2:
check_answer_label: "Person 2’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex2:
page_header: ""
check_answer_label: "Person 2’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 2’s gender identity?"
ecstat2:
@@ -114,7 +114,7 @@ en:
details_known_3:
page_header: "You’ve given us the details for 2 people in the household"
- check_answer_label: "Details known for person 3"
+ check_answer_label: "Details known for person 3?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 3?"
@@ -132,13 +132,13 @@ en:
question_text: "Do you know person 3’s age?"
age3:
check_answer_label: "Person 3’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex3:
page_header: ""
check_answer_label: "Person 3’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 3’s gender identity?"
ecstat3:
@@ -149,7 +149,7 @@ en:
details_known_4:
page_header: "You’ve given us the details for 3 people in the household"
- check_answer_label: "Details known for person 4"
+ check_answer_label: "Details known for person 4?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@@ -167,13 +167,13 @@ en:
question_text: "Do you know person 4’s age?"
age4:
check_answer_label: "Person 4’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex4:
page_header: ""
check_answer_label: "Person 4’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 4’s gender identity?"
ecstat4:
@@ -184,7 +184,7 @@ en:
details_known_5:
page_header: "You’ve given us the details for 4 people in the household"
- check_answer_label: "Details known for person 5"
+ check_answer_label: "Details known for person 5?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@@ -202,13 +202,13 @@ en:
question_text: "Do you know person 5’s age?"
age5:
check_answer_label: "Person 5’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex5:
page_header: ""
check_answer_label: "Person 5’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 5’s gender identity?"
ecstat5:
@@ -219,7 +219,7 @@ en:
details_known_6:
page_header: "You’ve given us the details for 5 people in the household"
- check_answer_label: "Details known for person 6"
+ check_answer_label: "Details known for person 6?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@@ -237,13 +237,13 @@ en:
question_text: "Do you know person 6’s age?"
age6:
check_answer_label: "Person 6’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex6:
page_header: ""
check_answer_label: "Person 6’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 6’s gender identity?"
ecstat6:
@@ -254,7 +254,7 @@ en:
details_known_7:
page_header: "You’ve given us the details for 6 people in the household"
- check_answer_label: "Details known for person 7"
+ check_answer_label: "Details known for person 7?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@@ -272,13 +272,13 @@ en:
question_text: "Do you know person 7’s age?"
age7:
check_answer_label: "Person 7’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex7:
page_header: ""
check_answer_label: "Person 7’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 7’s gender identity?"
ecstat7:
@@ -289,7 +289,7 @@ en:
details_known_8:
page_header: "You’ve given us the details for 7 people in the household"
- check_answer_label: "Details known for person 8"
+ check_answer_label: "Details known for person 8?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
@@ -307,17 +307,17 @@ en:
question_text: "Do you know person 8’s age?"
age8:
check_answer_label: "Person 8’s age"
- hint_text: ""
+ hint_text: ""
question_text: "Age"
sex8:
page_header: ""
check_answer_label: "Person 8’s gender identity"
- hint_text: ""
+ hint_text: ""
question_text: "Which of these best describes person 8’s gender identity?"
ecstat8:
page_header: ""
check_answer_label: "Person 8’s working situation"
hint_text: ""
- question_text: "Which of these best describes person 8’s working situation?"
\ No newline at end of file
+ question_text: "Which of these best describes person 8’s working situation?"
diff --git a/config/locales/forms/2023/lettings/household_needs.en.yml b/config/locales/forms/2023/lettings/household_needs.en.yml
index 1e1a2823e..13e84b7ec 100644
--- a/config/locales/forms/2023/lettings/household_needs.en.yml
+++ b/config/locales/forms/2023/lettings/household_needs.en.yml
@@ -5,31 +5,31 @@ en:
household_needs:
armedforces:
page_header: ""
- check_answer_label: "Household links to UK armed forces"
+ check_answer_label: "Household links to UK armed forces?"
hint_text: "This excludes national service.
If there are several people in the household with links to the UK armed forces, you should answer for the regular. If there’s no regular, answer for the reserve. If there’s no reserve, answer for the spouse or civil partner."
question_text: "Does anybody in the household have any links to the UK armed forces?"
leftreg:
page_header: ""
- check_answer_label: "Person still serving in UK armed forces"
+ check_answer_label: "Person still serving in UK armed forces?"
hint_text: ""
question_text: "Is the person still serving in the UK armed forces?"
reservist:
page_header: ""
- check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces"
+ check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces?"
hint_text: ""
question_text: "Was the person seriously injured or ill as a result of serving in the UK armed forces?"
preg_occ:
page_header: ""
- check_answer_label: "Anybody in household pregnant"
+ check_answer_label: "Anybody in household pregnant?"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
- check_answer_label: "Anybody with disabled access needs"
+ check_answer_label: "Anybody with disabled access needs?"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@@ -40,19 +40,18 @@ en:
hint_text: ""
question_text: "What type of access needs do they have?"
housingneeds_other:
- check_answer_label: "Other disabled access needs"
+ check_answer_label: "Other disabled access needs?"
hint_text: ""
question_text: "Do they have any other disabled access needs?"
illness:
page_header: ""
- check_answer_label: "Anybody in household with physical or mental health condition"
+ check_answer_label: "Anybody in household with physical or mental health condition?"
hint_text: ""
question_text: "Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?"
-
+
condition_effects:
page_header: ""
check_answer_label: "How is person affected by condition or illness"
hint_text: "Select all that apply."
question_text: "How is the person affected by their condition or illness?"
-
\ No newline at end of file
diff --git a/config/locales/forms/2023/lettings/household_situation.en.yml b/config/locales/forms/2023/lettings/household_situation.en.yml
index 9e5e50918..c95c05e5e 100644
--- a/config/locales/forms/2023/lettings/household_situation.en.yml
+++ b/config/locales/forms/2023/lettings/household_situation.en.yml
@@ -51,7 +51,7 @@ en:
homeless:
page_header: ""
- check_answer_label: "Household homeless immediately before letting"
+ check_answer_label: "Household homeless immediately before letting?"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@@ -79,7 +79,7 @@ en:
reasonpref:
page_header: ""
- check_answer_label: "Household given reasonable preference"
+ check_answer_label: "Household given reasonable preference?"
hint_text: "Households may be given ‘reasonable preference’ for social housing, also known as ‘priority need’, by the local authority."
question_text: "Was the household given ‘reasonable preference’ by the local authority?"
@@ -117,4 +117,4 @@ en:
page_header: ""
check_answer_label: "Source of referral for letting"
hint_text: "You told us that you are a local authority and that the needs type is general needs. We have removed some options because of this."
- question_text: "What was the source of referral for this letting?"
\ No newline at end of file
+ question_text: "What was the source of referral for this letting?"
diff --git a/config/locales/forms/2023/lettings/income_and_benefits.en.yml b/config/locales/forms/2023/lettings/income_and_benefits.en.yml
index bc19c7954..6f28d5e96 100644
--- a/config/locales/forms/2023/lettings/income_and_benefits.en.yml
+++ b/config/locales/forms/2023/lettings/income_and_benefits.en.yml
@@ -92,7 +92,7 @@ en:
hbrentshortfall:
page_header: ""
- check_answer_label: "Any outstanding amount for basic rent and charges"
+ check_answer_label: "Any outstanding amount for basic rent and charges?"
hint_text: "Also known as the ‘outstanding amount’."
question_text: "After the household has received any housing-related benefits, will they still need to pay for rent and charges?"
diff --git a/config/locales/forms/2023/lettings/property_information.en.yml b/config/locales/forms/2023/lettings/property_information.en.yml
index f1b652935..5876cbc38 100644
--- a/config/locales/forms/2023/lettings/property_information.en.yml
+++ b/config/locales/forms/2023/lettings/property_information.en.yml
@@ -87,7 +87,7 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: ""
question_text: "Is the property built or adapted to wheelchair-user standards?"
diff --git a/config/locales/forms/2023/sales/property_information.en.yml b/config/locales/forms/2023/sales/property_information.en.yml
index c4dd84130..d495c6676 100644
--- a/config/locales/forms/2023/sales/property_information.en.yml
+++ b/config/locales/forms/2023/sales/property_information.en.yml
@@ -69,6 +69,6 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: ""
question_text: "Is the property built or adapted to wheelchair-user standards?"
diff --git a/config/locales/forms/2024/lettings/household_characteristics.en.yml b/config/locales/forms/2024/lettings/household_characteristics.en.yml
index 04a311f06..580c5770e 100644
--- a/config/locales/forms/2024/lettings/household_characteristics.en.yml
+++ b/config/locales/forms/2024/lettings/household_characteristics.en.yml
@@ -19,13 +19,13 @@ en:
check_answer_label: "Lead tenant’s age"
hint_text: ""
question_text: "Age"
-
+
sex1:
page_header: ""
check_answer_label: "Lead tenant’s gender identity"
hint_text: "This should be however they personally choose to identify from the options below. This may or may not be the same as their biological sex or the sex they were assigned at birth."
question_text: "Which of these best describes the lead tenant’s gender identity?"
-
+
ethnic_group:
page_header: ""
check_answer_label: "Lead tenant’s ethnic group"
@@ -78,7 +78,7 @@ en:
details_known_2:
page_header: "You’ve given us the details for 1 person in the household"
- check_answer_label: "Details known for person 2"
+ check_answer_label: "Details known for person 2?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@@ -113,7 +113,7 @@ en:
details_known_3:
page_header: "You’ve given us the details for 2 people in the household"
- check_answer_label: "Details known for person 3"
+ check_answer_label: "Details known for person 3?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 3?"
@@ -148,7 +148,7 @@ en:
details_known_4:
page_header: "You’ve given us the details for 3 people in the household"
- check_answer_label: "Details known for person 4"
+ check_answer_label: "Details known for person 4?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@@ -183,7 +183,7 @@ en:
details_known_5:
page_header: "You’ve given us the details for 4 people in the household"
- check_answer_label: "Details known for person 5"
+ check_answer_label: "Details known for person 5?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@@ -218,7 +218,7 @@ en:
details_known_6:
page_header: "You’ve given us the details for 5 people in the household"
- check_answer_label: "Details known for person 6"
+ check_answer_label: "Details known for person 6?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@@ -253,7 +253,7 @@ en:
details_known_7:
page_header: "You’ve given us the details for 6 people in the household"
- check_answer_label: "Details known for person 7"
+ check_answer_label: "Details known for person 7?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@@ -288,7 +288,7 @@ en:
details_known_8:
page_header: "You’ve given us the details for 7 people in the household"
- check_answer_label: "Details known for person 8"
+ check_answer_label: "Details known for person 8?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
@@ -319,4 +319,4 @@ en:
page_header: ""
check_answer_label: "Person 8’s working situation"
hint_text: ""
- question_text: "Which of these best describes person 8’s working situation?"
\ No newline at end of file
+ question_text: "Which of these best describes person 8’s working situation?"
diff --git a/config/locales/forms/2024/lettings/household_needs.en.yml b/config/locales/forms/2024/lettings/household_needs.en.yml
index d934be355..21d24cf11 100644
--- a/config/locales/forms/2024/lettings/household_needs.en.yml
+++ b/config/locales/forms/2024/lettings/household_needs.en.yml
@@ -5,31 +5,31 @@ en:
household_needs:
armedforces:
page_header: ""
- check_answer_label: "Household links to UK armed forces"
+ check_answer_label: "Household links to UK armed forces?"
hint_text: "This excludes national service.
If there are several people in the household with links to the UK armed forces, you should answer for the regular. If there’s no regular, answer for the reserve. If there’s no reserve, answer for the spouse or civil partner."
question_text: "Does anybody in the household have any links to the UK armed forces?"
leftreg:
page_header: ""
- check_answer_label: "Person still serving in UK armed forces"
+ check_answer_label: "Person still serving in UK armed forces?"
hint_text: ""
question_text: "Is the person still serving in the UK armed forces?"
reservist:
page_header: ""
- check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces"
+ check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces?"
hint_text: ""
question_text: "Was the person seriously injured or ill as a result of serving in the UK armed forces?"
preg_occ:
page_header: ""
- check_answer_label: "Anybody in household pregnant"
+ check_answer_label: "Anybody in household pregnant?"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
- check_answer_label: "Anybody with disabled access needs"
+ check_answer_label: "Anybody with disabled access needs?"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@@ -40,19 +40,18 @@ en:
hint_text: ""
question_text: "What type of access needs do they have?"
housingneeds_other:
- check_answer_label: "Other disabled access needs"
+ check_answer_label: "Other disabled access needs?"
hint_text: ""
question_text: "Do they have any other disabled access needs?"
illness:
page_header: ""
- check_answer_label: "Anybody in household with physical or mental health condition"
+ check_answer_label: "Anybody in household with physical or mental health condition?"
hint_text: ""
question_text: "Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?"
-
+
condition_effects:
page_header: ""
check_answer_label: "How is person affected by condition or illness"
hint_text: "Select all that apply."
question_text: "How is the person affected by their condition or illness?"
-
\ No newline at end of file
diff --git a/config/locales/forms/2024/lettings/household_situation.en.yml b/config/locales/forms/2024/lettings/household_situation.en.yml
index e1bf4c0ce..e55ed81b3 100644
--- a/config/locales/forms/2024/lettings/household_situation.en.yml
+++ b/config/locales/forms/2024/lettings/household_situation.en.yml
@@ -51,7 +51,7 @@ en:
homeless:
page_header: ""
- check_answer_label: "Household homeless immediately before letting"
+ check_answer_label: "Household homeless immediately before letting?"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@@ -79,7 +79,7 @@ en:
reasonpref:
page_header: ""
- check_answer_label: "Household given reasonable preference"
+ check_answer_label: "Household given reasonable preference?"
hint_text: "Households may be given ‘reasonable preference’ for social housing under one or more specific categories by the local authority. This is also known as ‘priority need’."
question_text: "Was the household given ‘reasonable preference’ by the local authority?"
@@ -117,4 +117,4 @@ en:
page_header: ""
check_answer_label: "Source of referral for letting"
hint_text: "You told us that you are a local authority and that the needs type is general needs. We have removed some options because of this."
- question_text: "What was the source of referral for this letting?"
\ No newline at end of file
+ question_text: "What was the source of referral for this letting?"
diff --git a/config/locales/forms/2024/lettings/income_and_benefits.en.yml b/config/locales/forms/2024/lettings/income_and_benefits.en.yml
index bb3cc320e..5f10a0924 100644
--- a/config/locales/forms/2024/lettings/income_and_benefits.en.yml
+++ b/config/locales/forms/2024/lettings/income_and_benefits.en.yml
@@ -92,7 +92,7 @@ en:
hbrentshortfall:
page_header: ""
- check_answer_label: "Any outstanding amount for basic rent and charges"
+ check_answer_label: "Any outstanding amount for basic rent and charges?"
hint_text: "Also known as the ‘outstanding amount’."
question_text: "After the household has received any housing-related benefits, will they still need to pay for rent and charges?"
diff --git a/config/locales/forms/2024/lettings/property_information.en.yml b/config/locales/forms/2024/lettings/property_information.en.yml
index 012ff0e0d..22234b1c3 100644
--- a/config/locales/forms/2024/lettings/property_information.en.yml
+++ b/config/locales/forms/2024/lettings/property_information.en.yml
@@ -99,7 +99,7 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: "This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property."
question_text: "Is the property built or adapted to wheelchair-user standards?"
@@ -118,7 +118,7 @@ en:
property_major_repairs:
page_header: ""
majorrepairs:
- check_answer_label: "Major repairs carried out during void period"
+ check_answer_label: "Major repairs carried out during void period?"
hint_text: "Major repairs are works that could not be reasonably carried out with a tenant living at the property. For example, structural repairs."
question_text: "Were any major repairs carried out during the void period?"
mrcdate:
diff --git a/config/locales/forms/2024/lettings/setup.en.yml b/config/locales/forms/2024/lettings/setup.en.yml
index 68bc95364..33012ee45 100644
--- a/config/locales/forms/2024/lettings/setup.en.yml
+++ b/config/locales/forms/2024/lettings/setup.en.yml
@@ -82,6 +82,6 @@ en:
declaration:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
- check_answer_label: "Tenant has seen the privacy notice"
+ check_answer_label: "Tenant has seen the privacy notice?"
hint_text: ""
question_text: "Declaration"
diff --git a/config/locales/forms/2024/sales/property_information.en.yml b/config/locales/forms/2024/sales/property_information.en.yml
index 269f4fdca..ee5052952 100644
--- a/config/locales/forms/2024/sales/property_information.en.yml
+++ b/config/locales/forms/2024/sales/property_information.en.yml
@@ -86,6 +86,6 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: "This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property."
question_text: "Is the property built or adapted to wheelchair-user standards?"
diff --git a/config/locales/forms/2025/lettings/household_characteristics.en.yml b/config/locales/forms/2025/lettings/household_characteristics.en.yml
index 1aef9297a..a21038d61 100644
--- a/config/locales/forms/2025/lettings/household_characteristics.en.yml
+++ b/config/locales/forms/2025/lettings/household_characteristics.en.yml
@@ -78,7 +78,7 @@ en:
details_known_2:
page_header: "You’ve given us the details for 1 person in the household"
- check_answer_label: "Details known for person 2"
+ check_answer_label: "Details known for person 2?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@@ -113,7 +113,7 @@ en:
details_known_3:
page_header: "You’ve given us the details for 2 people in the household"
- check_answer_label: "Details known for person 3"
+ check_answer_label: "Details known for person 3?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 3?"
@@ -148,7 +148,7 @@ en:
details_known_4:
page_header: "You’ve given us the details for 3 people in the household"
- check_answer_label: "Details known for person 4"
+ check_answer_label: "Details known for person 4?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@@ -183,7 +183,7 @@ en:
details_known_5:
page_header: "You’ve given us the details for 4 people in the household"
- check_answer_label: "Details known for person 5"
+ check_answer_label: "Details known for person 5?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@@ -218,7 +218,7 @@ en:
details_known_6:
page_header: "You’ve given us the details for 5 people in the household"
- check_answer_label: "Details known for person 6"
+ check_answer_label: "Details known for person 6?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@@ -253,7 +253,7 @@ en:
details_known_7:
page_header: "You’ve given us the details for 6 people in the household"
- check_answer_label: "Details known for person 7"
+ check_answer_label: "Details known for person 7?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@@ -288,7 +288,7 @@ en:
details_known_8:
page_header: "You’ve given us the details for 7 people in the household"
- check_answer_label: "Details known for person 8"
+ check_answer_label: "Details known for person 8?"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
diff --git a/config/locales/forms/2025/lettings/household_needs.en.yml b/config/locales/forms/2025/lettings/household_needs.en.yml
index ba63f2031..5ec79fcf7 100644
--- a/config/locales/forms/2025/lettings/household_needs.en.yml
+++ b/config/locales/forms/2025/lettings/household_needs.en.yml
@@ -5,31 +5,31 @@ en:
household_needs:
armedforces:
page_header: ""
- check_answer_label: "Household links to UK armed forces"
+ check_answer_label: "Household links to UK armed forces?"
hint_text: "This excludes national service.
If there are several people in the household with links to the UK armed forces, you should answer for the regular. If there’s no regular, answer for the reserve. If there’s no reserve, answer for the spouse or civil partner."
question_text: "Does anybody in the household have any links to the UK armed forces?"
leftreg:
page_header: ""
- check_answer_label: "Person still serving in UK armed forces"
+ check_answer_label: "Person still serving in UK armed forces?"
hint_text: ""
question_text: "Is the person still serving in the UK armed forces?"
reservist:
page_header: ""
- check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces"
+ check_answer_label: "Person seriously injured or ill as result of serving in UK armed forces?"
hint_text: ""
question_text: "Was the person seriously injured or ill as a result of serving in the UK armed forces?"
preg_occ:
page_header: ""
- check_answer_label: "Anybody in household pregnant"
+ check_answer_label: "Anybody in household pregnant?"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
- check_answer_label: "Anybody with disabled access needs"
+ check_answer_label: "Anybody with disabled access needs?"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@@ -40,13 +40,13 @@ en:
hint_text: ""
question_text: "What type of access needs do they have?"
housingneeds_other:
- check_answer_label: "Other disabled access needs"
+ check_answer_label: "Other disabled access needs?"
hint_text: ""
question_text: "Do they have any other disabled access needs?"
illness:
page_header: ""
- check_answer_label: "Anybody in household with physical or mental health condition"
+ check_answer_label: "Anybody in household with physical or mental health condition?"
hint_text: ""
question_text: "Does anybody in the household have a physical or mental health condition (or other illness) expected to last 12 months or more?"
diff --git a/config/locales/forms/2025/lettings/household_situation.en.yml b/config/locales/forms/2025/lettings/household_situation.en.yml
index 2b72c45d0..a5fbd224f 100644
--- a/config/locales/forms/2025/lettings/household_situation.en.yml
+++ b/config/locales/forms/2025/lettings/household_situation.en.yml
@@ -51,7 +51,7 @@ en:
homeless:
page_header: ""
- check_answer_label: "Household homeless immediately before letting"
+ check_answer_label: "Household homeless immediately before letting?"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@@ -79,7 +79,7 @@ en:
reasonpref:
page_header: ""
- check_answer_label: "Household given reasonable preference"
+ check_answer_label: "Household given reasonable preference?"
hint_text: "Households may be given ‘reasonable preference’ for social housing under one or more specific categories by the local authority. This is also known as ‘priority need’."
question_text: "Was the household given ‘reasonable preference’ by the local authority?"
diff --git a/config/locales/forms/2025/lettings/income_and_benefits.en.yml b/config/locales/forms/2025/lettings/income_and_benefits.en.yml
index 55e193ff7..abe4adf16 100644
--- a/config/locales/forms/2025/lettings/income_and_benefits.en.yml
+++ b/config/locales/forms/2025/lettings/income_and_benefits.en.yml
@@ -92,7 +92,7 @@ en:
hbrentshortfall:
page_header: ""
- check_answer_label: "Any outstanding amount for basic rent and charges"
+ check_answer_label: "Any outstanding amount for basic rent and charges?"
hint_text: "Also known as the ‘outstanding amount’."
question_text: "After the household has received any housing-related benefits, will they still need to pay for rent and charges?"
diff --git a/config/locales/forms/2025/lettings/property_information.en.yml b/config/locales/forms/2025/lettings/property_information.en.yml
index bf3f3532c..c3bffcafe 100644
--- a/config/locales/forms/2025/lettings/property_information.en.yml
+++ b/config/locales/forms/2025/lettings/property_information.en.yml
@@ -99,7 +99,7 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: "This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property."
question_text: "Is the property built or adapted to wheelchair-user standards?"
@@ -118,7 +118,7 @@ en:
property_major_repairs:
page_header: ""
majorrepairs:
- check_answer_label: "Major repairs carried out during void period"
+ check_answer_label: "Major repairs carried out during void period?"
hint_text: "Major repairs are works that could not be reasonably carried out with a tenant living at the property. For example, structural repairs."
question_text: "Were any major repairs carried out during the void period?"
mrcdate:
diff --git a/config/locales/forms/2025/lettings/setup.en.yml b/config/locales/forms/2025/lettings/setup.en.yml
index 029b5e91e..85bd40c2f 100644
--- a/config/locales/forms/2025/lettings/setup.en.yml
+++ b/config/locales/forms/2025/lettings/setup.en.yml
@@ -82,6 +82,6 @@ en:
declaration:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
- check_answer_label: "Tenant has seen the privacy notice"
+ check_answer_label: "Tenant has seen the privacy notice?"
hint_text: ""
question_text: "Declaration"
diff --git a/config/locales/forms/2025/sales/property_information.en.yml b/config/locales/forms/2025/sales/property_information.en.yml
index d658362ea..2f3b0224c 100644
--- a/config/locales/forms/2025/sales/property_information.en.yml
+++ b/config/locales/forms/2025/sales/property_information.en.yml
@@ -86,6 +86,6 @@ en:
wchair:
page_header: ""
- check_answer_label: "Property built or adapted to wheelchair-user standards"
+ check_answer_label: "Property built or adapted to wheelchair-user standards?"
hint_text: "This is whether someone who uses a wheelchair is able to make full use of all of the property’s rooms and facilities, including use of both inside and outside space, and entering and exiting the property."
question_text: "Is the property built or adapted to wheelchair-user standards?"