Browse Source

Add question marks to yes no questions - test

CLDC-3740-Replace-you-didnt-answer-with-link
Manny Dinssa 4 weeks ago
parent
commit
40bee289d8
  1. 2
      app/components/check_answers_summary_list_card_component.rb
  2. 2
      app/helpers/check_answers_helper.rb
  3. 24
      app/models/form/question.rb
  4. 52
      config/locales/forms/2023/lettings/household_characteristics.en.yml
  5. 17
      config/locales/forms/2023/lettings/household_needs.en.yml
  6. 6
      config/locales/forms/2023/lettings/household_situation.en.yml
  7. 2
      config/locales/forms/2023/lettings/income_and_benefits.en.yml
  8. 2
      config/locales/forms/2023/lettings/property_information.en.yml
  9. 2
      config/locales/forms/2023/sales/property_information.en.yml
  10. 20
      config/locales/forms/2024/lettings/household_characteristics.en.yml
  11. 17
      config/locales/forms/2024/lettings/household_needs.en.yml
  12. 6
      config/locales/forms/2024/lettings/household_situation.en.yml
  13. 2
      config/locales/forms/2024/lettings/income_and_benefits.en.yml
  14. 4
      config/locales/forms/2024/lettings/property_information.en.yml
  15. 2
      config/locales/forms/2024/lettings/setup.en.yml
  16. 2
      config/locales/forms/2024/sales/property_information.en.yml
  17. 14
      config/locales/forms/2025/lettings/household_characteristics.en.yml
  18. 14
      config/locales/forms/2025/lettings/household_needs.en.yml
  19. 4
      config/locales/forms/2025/lettings/household_situation.en.yml
  20. 2
      config/locales/forms/2025/lettings/income_and_benefits.en.yml
  21. 4
      config/locales/forms/2025/lettings/property_information.en.yml
  22. 2
      config/locales/forms/2025/lettings/setup.en.yml
  23. 2
      config/locales/forms/2025/sales/property_information.en.yml

2
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)
"<span class=\"app-!-colour-red\">You still need to answer this question</span>".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

2
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)
"<span class=\"app-!-colour-red\">You still need to answer this question</span>".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

24
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

52
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?"
question_text: "Which of these best describes person 8’s working situation?"

17
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.<br><br>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?"

6
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?"
question_text: "What was the source of referral for this letting?"

2
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?"

2
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?"

2
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?"

20
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?"
question_text: "Which of these best describes person 8’s working situation?"

17
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.<br><br>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?"

6
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?"
question_text: "What was the source of referral for this letting?"

2
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?"

4
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:

2
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"

2
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?"

14
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?"

14
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.<br><br>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?"

4
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?"

2
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?"

4
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:

2
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"

2
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?"

Loading…
Cancel
Save