Compare commits

..

18 Commits

  1. 12
      .github/workflows/run_tests.yml
  2. 34
      app/helpers/details_table_helper.rb
  3. 6
      app/helpers/locations_helper.rb
  4. 14
      app/helpers/merge_requests_helper.rb
  5. 2
      app/helpers/organisations_helper.rb
  6. 19
      app/helpers/schemes_helper.rb
  7. 2
      app/helpers/user_helper.rb
  8. 2
      app/views/form/_check_answers_summary_list.html.erb
  9. 6
      app/views/locations/check_answers.html.erb
  10. 6
      app/views/locations/show.html.erb
  11. 16
      app/views/organisations/show.html.erb
  12. 2
      app/views/schemes/_scheme_summary_list_row.html.erb
  13. 2
      app/views/schemes/check_answers.html.erb
  14. 2
      app/views/schemes/show.html.erb
  15. 8
      app/views/users/show.html.erb
  16. 32
      config/locales/forms/2023/lettings/household_characteristics.en.yml
  17. 14
      config/locales/forms/2023/lettings/household_needs.en.yml
  18. 4
      config/locales/forms/2023/lettings/household_situation.en.yml
  19. 14
      config/locales/forms/2023/lettings/income_and_benefits.en.yml
  20. 6
      config/locales/forms/2023/lettings/property_information.en.yml
  21. 2
      config/locales/forms/2023/lettings/setup.en.yml
  22. 6
      config/locales/forms/2023/lettings/tenancy_information.en.yml
  23. 34
      config/locales/forms/2023/sales/household_characteristics.en.yml
  24. 2
      config/locales/forms/2023/sales/income_benefits_and_savings.en.yml
  25. 6
      config/locales/forms/2023/sales/other_household_information.en.yml
  26. 4
      config/locales/forms/2023/sales/property_information.en.yml
  27. 12
      config/locales/forms/2023/sales/sale_information.en.yml
  28. 16
      config/locales/forms/2023/sales/setup.en.yml
  29. 30
      config/locales/forms/2024/lettings/household_characteristics.en.yml
  30. 14
      config/locales/forms/2024/lettings/household_needs.en.yml
  31. 4
      config/locales/forms/2024/lettings/household_situation.en.yml
  32. 14
      config/locales/forms/2024/lettings/income_and_benefits.en.yml
  33. 6
      config/locales/forms/2024/lettings/property_information.en.yml
  34. 4
      config/locales/forms/2024/lettings/setup.en.yml
  35. 6
      config/locales/forms/2024/lettings/tenancy_information.en.yml
  36. 26
      config/locales/forms/2024/sales/household_characteristics.en.yml
  37. 4
      config/locales/forms/2024/sales/income_benefits_and_savings.en.yml
  38. 6
      config/locales/forms/2024/sales/other_household_information.en.yml
  39. 4
      config/locales/forms/2024/sales/property_information.en.yml
  40. 12
      config/locales/forms/2024/sales/sale_information.en.yml
  41. 16
      config/locales/forms/2024/sales/setup.en.yml
  42. 30
      config/locales/forms/2025/lettings/household_characteristics.en.yml
  43. 14
      config/locales/forms/2025/lettings/household_needs.en.yml
  44. 4
      config/locales/forms/2025/lettings/household_situation.en.yml
  45. 14
      config/locales/forms/2025/lettings/income_and_benefits.en.yml
  46. 6
      config/locales/forms/2025/lettings/property_information.en.yml
  47. 4
      config/locales/forms/2025/lettings/setup.en.yml
  48. 6
      config/locales/forms/2025/lettings/tenancy_information.en.yml
  49. 26
      config/locales/forms/2025/sales/household_characteristics.en.yml
  50. 2
      config/locales/forms/2025/sales/income_benefits_and_savings.en.yml
  51. 6
      config/locales/forms/2025/sales/other_household_information.en.yml
  52. 4
      config/locales/forms/2025/sales/property_information.en.yml
  53. 8
      config/locales/forms/2025/sales/sale_information.en.yml
  54. 16
      config/locales/forms/2025/sales/setup.en.yml
  55. 2
      docker-compose.yml
  56. 2
      spec/helpers/merge_requests_helper_spec.rb

12
.github/workflows/run_tests.yml

@ -20,7 +20,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
@ -79,7 +79,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
@ -137,7 +137,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
@ -195,7 +195,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
@ -254,7 +254,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
@ -313,7 +313,7 @@ jobs:
services:
postgres:
image: postgres:13.5
image: postgres:13.18
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres

34
app/helpers/details_table_helper.rb

@ -1,42 +1,42 @@
module DetailsTableHelper
def details_html(attribute, resource = nil)
resource_class = resource.class.name
if attribute[:format] == :bullet && attribute[:value].length > 1
list = attribute[:value].map { |value| "<li>#{value}</li>" }.join
simple_format(list, { class: "govuk-list govuk-list--bullet" }, wrapper_tag: "ul")
else
return simple_format(attribute[:value].first.to_s, { class: "govuk-body" }, wrapper_tag: "p") if attribute[:value].is_a?(Array) && attribute[:value].any?
value = determine_value(attribute, resource, resource_class)
value = determine_value(attribute, resource)
simple_format(value.to_s, { class: "govuk-body" }, wrapper_tag: "p")
end
end
private
def determine_value(attribute, resource, resource_class)
attribute[:value].presence || case resource_class
when "Location"
location_value(attribute, resource)
when "Organisation"
organisation_value(attribute, resource)
when "Scheme"
scheme_value(attribute, resource)
else
"<span class=\"app-!-colour-muted\">No answer provided</span>".html_safe
end
def determine_value(attribute, resource)
return attribute[:value] if attribute[:value].present?
method_name = "#{resource.class.name.downcase}_value"
return send(method_name, attribute, resource) if respond_to?(method_name, true)
"<span class=\"app-!-colour-muted\">No answer provided</span>".html_safe
end
def location_value(attribute, resource)
LocationPolicy.new(current_user, resource).update? ? govuk_link_to(location_details_link_message(attribute), location_edit_path(resource, attribute[:attribute]), class: "govuk-link govuk-link--no-visited-state") : "<span class=\"app-!-colour-muted\">No answer provided</span>".html_safe
return nil unless LocationPolicy.new(current_user, resource).update?
govuk_link_to(location_details_link_message(attribute), location_edit_path(resource, attribute[:attribute]), class: "govuk-link govuk-link--no-visited-state")
end
def organisation_value(attribute, resource)
can_edit_org?(current_user) && attribute[:editable] ? govuk_link_to(organisation_details_link_message(attribute), edit_organisation_path(resource), class: "govuk-link govuk-link--no-visited-state") : "<span class=\"app-!-colour-muted\">No answer provided</span>".html_safe
return nil unless can_edit_org?(current_user) && attribute[:editable]
govuk_link_to(organisation_details_link_message(attribute), edit_organisation_path(resource), class: "govuk-link govuk-link--no-visited-state")
end
def scheme_value(attribute, resource)
can_change_scheme_answer?(attribute[:name], resource) ? govuk_link_to(scheme_details_link_message(attribute), scheme_edit_path(resource, attribute), class: "govuk-link govuk-link--no-visited-state") : "<span class=\"app-!-colour-muted\">No answer provided</span>".html_safe
return nil unless can_change_scheme_answer?(attribute[:name], resource)
govuk_link_to(scheme_details_link_message(attribute), scheme_edit_path(resource, attribute[:id]), class: "govuk-link govuk-link--no-visited-state")
end
end

6
app/helpers/locations_helper.rb

@ -8,6 +8,10 @@ module LocationsHelper
selection_options(%w[Yes No])
end
def location_editable_attributes
%w[postcode name units type_of_unit mobility_standards]
end
def type_of_units_selection
selection_options(Location.type_of_units)
end
@ -64,7 +68,7 @@ module LocationsHelper
send("scheme_location_#{attribute}_path", location.scheme, location, referrer: "check_answers", route: params[:route])
end
def location_action_text_helper(attr, location)
def location_action_text(attr, location)
return "" if attr[:value].blank? || (attr[:attribute] == "availability" && location.startdate.blank?)
"Change"

14
app/helpers/merge_requests_helper.rb

@ -6,13 +6,17 @@ module MergeRequestsHelper
value.presence || content_tag(:span, placeholder, class: "app-!-colour-muted")
end
def value_exists?(merge_request, attribute)
merge_request.send(attribute).present? || (attribute == "helpdesk_ticket" && merge_request.has_helpdesk_ticket == false)
end
def details_prompt_link(page, merge_request)
govuk_link_to(merge_request_details_prompt(page), send("#{page}_merge_request_path", merge_request, referrer: "check_answers"), class: "govuk-link govuk-link--no-visited-state")
end
def merge_request_details_prompt(page)
messages = {
"existing_absorbing_organisation" => "Answer if absorbing organisation is already active",
"existing_absorbing_organisation" => "Tell us if absorbing organisation is already active",
"helpdesk_ticket" => "Enter helpdesk ticket number",
"merging_organisations" => "Add merging organisations",
"merge_date" => "Set merge date",
@ -20,8 +24,8 @@ module MergeRequestsHelper
messages[page] || "Enter #{lowercase_first_letter(page.humanize)}"
end
def merge_request_action_text_helper(attribute, merge_request)
merge_request.send(attribute).present? || (attribute == "helpdesk_ticket" && merge_request.has_helpdesk_ticket == false) ? "Change" : ""
def merge_request_action_text(merge_request, attribute)
value_exists?(merge_request, attribute) ? "Change" : ""
end
def request_details(merge_request)
@ -95,8 +99,10 @@ module MergeRequestsHelper
def merge_request_action(merge_request, page, attribute = nil)
attribute = page if attribute.nil?
return nil unless value_exists?(merge_request, attribute)
unless merge_request.status == "request_merged" || merge_request.status == "processing"
{ text: merge_request_action_text_helper(attribute, merge_request), href: send("#{page}_merge_request_path", merge_request, referrer: "check_answers"), visually_hidden_text: page.humanize }
{ text: merge_request_action_text(merge_request, attribute), href: send("#{page}_merge_request_path", merge_request, referrer: "check_answers"), visually_hidden_text: page.humanize }
end
end

2
app/helpers/organisations_helper.rb

@ -55,7 +55,7 @@ module OrganisationsHelper
govuk_button_link_to "Delete this organisation", delete_confirmation_organisation_path(organisation), warning: true
end
def organisation_action_text_helper(attr, organisation)
def organisation_action_text(attr, organisation)
return "" if attr[:value].blank? || (attr[:attribute] == "phone" && organisation.phone.blank?)
"Change"

19
app/helpers/schemes_helper.rb

@ -64,10 +64,10 @@ module SchemesHelper
schemes_csv_download_organisation_path(organisation, search:, download_type:)
end
def change_answer_link(scheme, question_id, user)
def scheme_edit_path(scheme, question_id, user = nil)
case question_id
when "service_name", "sensitive", "scheme_type", "registered_under_care_act", "owning_organisation_id", "arrangement_type"
user.support? || !scheme.confirmed? ? scheme_details_path(scheme, referrer: "check-answers") : scheme_edit_name_path(scheme)
user&.support? || !scheme.confirmed? ? scheme_details_path(scheme, referrer: "check-answers") : scheme_edit_name_path(scheme)
when "primary_client_group"
scheme_primary_client_group_path(scheme, referrer: "check-answers")
when "has_other_client_group"
@ -107,23 +107,10 @@ module SchemesHelper
organisation.owned_schemes.duplicate_sets.any? || organisation.owned_schemes.any? { |scheme| scheme.locations.duplicate_sets.any? }
end
def scheme_edit_path(scheme, attribute)
case attribute[:id]
when "primary_client_group"
scheme_primary_client_group_path(scheme, referrer: "check-answers")
when "has_other_client_group"
scheme_confirm_secondary_client_group_path(scheme, referrer: "check-answers")
when "secondary_client_group"
scheme_secondary_client_group_path(scheme, referrer: "check-answers")
when "support_type", "intended_stay"
scheme_support_path(scheme, referrer: "check-answers")
end
end
def scheme_details_link_message(attribute)
text = lowercase_first_letter(attribute[:name])
return "Select #{text}" if %w[primary_client_group secondary_client_group support_type intended_stay].include?(attribute[:id])
return "Answer if it #{text}" if attribute[:id] == "has_other_client_group"
return "Tell us if it #{text}" if attribute[:id] == "has_other_client_group"
"Enter #{text}"
end

2
app/helpers/user_helper.rb

@ -90,7 +90,7 @@ module UserHelper
end
end
def user_action_text_helper(user, attribute)
def user_action_text(user, attribute)
return "Change" if %w[role phone].include?(attribute) && user.send(attribute).present?
""

2
app/views/form/_check_answers_summary_list.html.erb

@ -25,7 +25,7 @@
<% end %>
<% end %>
<% if @log.collection_period_open_for_editing? %>
<% if @log.collection_period_open_for_editing? && question.answer_label(@log, current_user).present? %>
<% row.with_action(
text: question.action_text(@log),
href: action_href(

6
app/views/locations/check_answers.html.erb

@ -29,8 +29,10 @@
<% else %>
<% row.with_value { details_html(attr, @location) if user_can_edit_scheme?(current_user, @scheme) } %>
<% end %>
<% if LocationPolicy.new(current_user, @location).update? %>
<% row.with_action(text: location_action_text_helper(attr, @location), href: location_edit_path(@location, attr[:attribute])) %>
<% if LocationPolicy.new(current_user, @location).update? && attr[:value] %>
<% row.with_action(text: location_action_text(attr, @location), href: location_edit_path(@location, attr[:attribute])) %>
<% else %>
<% row.with_action %>
<% end %>
<% end %>
<% end %>

6
app/views/locations/show.html.erb

@ -34,11 +34,7 @@
<%= row.with_value { details_html(attr, @location) } %>
<% end %>
<% if LocationPolicy.new(current_user, @location).update? %>
<% %w[postcode name units type_of_unit mobility_standards].each do |attribute| %>
<% if attr[:attribute] == attribute %>
<%= row.with_action(text: "Change", href: location_action_link(attr, @scheme, @location, current_user)) %>
<% end %>
<% end %>
<%= row.with_action(text: "Change", href: location_action_link(attr, @scheme, @location, current_user)) if location_editable_attributes.include?(attr[:attribute]) %>
<% end %>
<% end %>
<% end %>

16
app/views/organisations/show.html.erb

@ -23,12 +23,16 @@
<%= summary_list.with_row do |row| %>
<% row.with_key { attr[:name] } %>
<% row.with_value { details_html(attr, @organisation) } %>
<% row.with_action(
text: organisation_action_text_helper(attr, @organisation),
visually_hidden_text: attr[:name].to_s.humanize.downcase,
href: edit_organisation_path(@organisation),
html_attributes: { "data-qa": "change-#{attr[:name].downcase}" },
) %>
<% if attr[:value] %>
<% row.with_action(
text: organisation_action_text(attr, @organisation),
visually_hidden_text: attr[:name].to_s.humanize.downcase,
href: edit_organisation_path(@organisation),
html_attributes: { "data-qa": "change-#{attr[:name].downcase}" },
) %>
<% else %>
<% row.with_action %>
<% end %>
<% end %>
<% else %>
<%= summary_list.with_row do |row| %>

2
app/views/schemes/_scheme_summary_list_row.html.erb

@ -15,7 +15,7 @@
</dd>
<% end %>
<% if can_change_scheme_answer?(attribute[:name], scheme) && attribute[:edit] %>
<% if can_change_scheme_answer?(attribute[:name], scheme) && attribute[:edit] && attribute[:value] %>
<dd class="govuk-summary-list__actions">
<a class="govuk-link" href="<%= change_link %>"><%= change_link_text(attribute[:id], @scheme) %></a>
</dd>

2
app/views/schemes/check_answers.html.erb

@ -10,7 +10,7 @@
<dl class="govuk-summary-list">
<% @scheme.check_details_attributes.each do |attr| %>
<% if attr[:name] != "Status" && (attr[:id] != "secondary_client_group" || @scheme.has_other_client_group == "Yes") %>
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: change_answer_link(@scheme, attr[:id], current_user) } %>
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_edit_path(@scheme, attr[:id], current_user) } %>
<% end %>
<% end %>
</dl>

2
app/views/schemes/show.html.erb

@ -38,7 +38,7 @@
</dd>
</div>
<% elsif attr[:id] != "secondary_client_group" || @scheme.has_other_client_group == "Yes" %>
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: change_answer_link(@scheme, attr[:id], current_user) } %>
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_edit_path(@scheme, attr[:id], current_user) } %>
<% end %>
<% end %>

8
app/views/users/show.html.erb

@ -53,9 +53,9 @@
<%= summary_list.with_row do |row|
row.with_key { "Telephone number" }
row.with_value { user_details_html(@user, current_user, "phone") }
if UserPolicy.new(current_user, @user).edit_telephone_numbers?
if UserPolicy.new(current_user, @user).edit_telephone_numbers? && @user.phone.present?
row.with_action(
text: user_action_text_helper(@user, "phone"),
text: user_action_text(@user, "phone"),
visually_hidden_text: "telephone number",
href: aliased_user_edit(@user, current_user),
html_attributes: { "data-qa": "change-telephone-number" },
@ -96,9 +96,9 @@
<%= summary_list.with_row do |row|
row.with_key { "Role" }
row.with_value { user_details_html(@user, current_user, "role") }
if UserPolicy.new(current_user, @user).edit_roles?
if UserPolicy.new(current_user, @user).edit_roles? && @user.role
row.with_action(
text: user_action_text_helper(@user, "role"),
text: user_action_text(@user, "role"),
visually_hidden_text: "role",
href: aliased_user_edit(@user, current_user),
html_attributes: { "data-qa": "change-role" },

32
config/locales/forms/2023/lettings/household_characteristics.en.yml

@ -6,7 +6,7 @@ en:
declaration:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
check_answer_label: "Tenant has seen the privacy notice"
check_answer_prompt: "Answer if tenant has seen the privacy notice"
check_answer_prompt: "Tell us if tenant has seen the privacy notice"
hint_text: ""
question_text: "Declaration"
@ -21,7 +21,7 @@ en:
page_header: ""
age1_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know the lead tenant's age"
check_answer_prompt: "Tell us if you know the lead tenant's age"
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: "Do you know the lead tenant’s age?"
age1:
@ -93,7 +93,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_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@ -108,7 +108,7 @@ en:
page_header: ""
age2_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age2:
@ -134,7 +134,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_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 3?"
@ -149,7 +149,7 @@ en:
page_header: ""
age3_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -175,7 +175,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_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@ -190,7 +190,7 @@ en:
page_header: ""
age4_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -216,7 +216,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_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@ -231,7 +231,7 @@ en:
page_header: ""
age5_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -257,7 +257,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_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@ -272,7 +272,7 @@ en:
page_header: ""
age6_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:
@ -298,7 +298,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_prompt: "Answer if you know person 7's details"
check_answer_prompt: "Tell us if you know person 7's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@ -313,7 +313,7 @@ en:
page_header: ""
age7_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 7's age"
check_answer_prompt: "Tell us if you know person 7's age"
hint_text: ""
question_text: "Do you know person 7’s age?"
age7:
@ -339,7 +339,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_prompt: "Answer if you know person 8's details"
check_answer_prompt: "Tell us if you know person 8's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
@ -354,7 +354,7 @@ en:
page_header: ""
age8_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 8's age"
check_answer_prompt: "Tell us if you know person 8's age"
hint_text: ""
question_text: "Do you know person 8’s age?"
age8:

14
config/locales/forms/2023/lettings/household_needs.en.yml

@ -6,35 +6,35 @@ en:
armedforces:
page_header: ""
check_answer_label: "Household links to UK armed forces"
check_answer_prompt: "Answer if there are any household links to UK armed forces"
check_answer_prompt: "Tell us if there are any 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_prompt: "Answer if the person is still serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if the person is seriously injured or ill as result of serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if anybody in the household is pregnant"
check_answer_prompt: "Tell us if anybody in the household is pregnant"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
check_answer_label: "Anybody with disabled access needs"
check_answer_prompt: "Answer if there is anybody with disabled access needs"
check_answer_prompt: "Tell us if there is anybody with disabled access needs"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@ -47,14 +47,14 @@ en:
question_text: "What type of access needs do they have?"
housingneeds_other:
check_answer_label: "Other disabled access needs"
check_answer_prompt: "Answer if they have any other disabled access needs"
check_answer_prompt: "Tell us if they have any 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_prompt: "Answer if anybody in the household has a physical or mental health condition"
check_answer_prompt: "Tell us if anybody in the household has a 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/2023/lettings/household_situation.en.yml

@ -60,7 +60,7 @@ en:
homeless:
page_header: ""
check_answer_label: "Household homeless immediately before letting"
check_answer_prompt: "Answer if household homeless immediately before letting"
check_answer_prompt: "Tell us if household homeless immediately before letting"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@ -93,7 +93,7 @@ en:
reasonpref:
page_header: ""
check_answer_label: "Household given reasonable preference"
check_answer_prompt: "Answer if household given reasonable preference"
check_answer_prompt: "Tell us if 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?"

14
config/locales/forms/2023/lettings/income_and_benefits.en.yml

@ -6,7 +6,7 @@ en:
net_income_known:
page_header: "Household’s combined income after tax"
check_answer_label: "Household’s combined total income after tax"
check_answer_prompt: "Answer if you know the household’s combined total income after tax"
check_answer_prompt: "Tell us if you know the household’s combined total income after tax"
hint_text: ""
question_text: "Do you know the household’s combined income after tax?"
@ -26,21 +26,21 @@ en:
hb:
page_header: ""
check_answer_label: "Housing-related benefits received"
check_answer_prompt: "Answer if household receives housing-related benefits"
check_answer_prompt: "Tell us if household receives housing-related benefits"
hint_text: ""
question_text: "Is the household likely to be receiving any of these housing-related benefits?"
benefits:
page_header: ""
check_answer_label: "Household income from Universal Credit, state pension or benefit"
check_answer_prompt: "Answer if household income is from Universal Credit, state pension or benefit"
check_answer_prompt: "Tell us if household income is from Universal Credit, state pension or benefit"
hint_text: "This excludes child and housing benefit, council tax support and tax credits."
question_text: "How much of the household’s income is from Universal Credit, state pensions or benefits?"
household_charge:
page_header: ""
check_answer_label: "Does the household pay rent or charges"
check_answer_prompt: "Answer if the household pay rent or charges"
check_answer_prompt: "Tell us if the household pay rent or charges"
hint_text: "If rent is charged on the property then answer Yes to this question, even if the tenants do not pay it themselves."
question_text: "Does the household pay rent or other charges for the accommodation?"
@ -55,7 +55,7 @@ en:
page_header: ""
is_carehome:
check_answer_label: "Care home accommodation"
check_answer_prompt: "Answer if care home accommodation"
check_answer_prompt: "Tell us if care home accommodation"
hint_text: ""
question_text: "Is this accommodation a care home?"
chcharge_weekly:
@ -110,7 +110,7 @@ en:
hbrentshortfall:
page_header: ""
check_answer_label: "Any outstanding amount for basic rent and charges"
check_answer_prompt: "Answer if any outstanding amount for basic rent and charges"
check_answer_prompt: "Tell us if 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?"
@ -118,7 +118,7 @@ en:
page_header: ""
tshortfall_known:
check_answer_label: "Outstanding amount known"
check_answer_prompt: "Answer if you know the outstanding amount"
check_answer_prompt: "Tell us if you know the outstanding amount"
hint_text: "You only need to give an approximate figure."
question_text: "Can you estimate the outstanding amount?"
tshortfall:

6
config/locales/forms/2023/lettings/property_information.en.yml

@ -19,7 +19,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -61,7 +61,7 @@ en:
first_time_property_let_as_social_housing:
page_header: ""
check_answer_label: "First time being let as social-housing"
check_answer_prompt: "Answer if it's the first time being let as social-housing"
check_answer_prompt: "Tell us if it's the first time being let as social-housing"
hint_text: ""
question_text: "Is this the first time the property has been let as social housing?"
@ -103,7 +103,7 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is 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/lettings/setup.en.yml

@ -55,7 +55,7 @@ en:
renewal:
page_header: ""
check_answer_label: "Property renewal"
check_answer_prompt: "Answer if it's a property renewal"
check_answer_prompt: "Tell us if it's a property renewal"
hint_text: "A renewal is a letting to the same tenant in the same property. If the property was previously being used as temporary accommodation, then answer 'no'."
question_text: "Is this letting a renewal?"

6
config/locales/forms/2023/lettings/tenancy_information.en.yml

@ -6,14 +6,14 @@ en:
joint:
page_header: ""
check_answer_label: "Joint tenancy"
check_answer_prompt: "Answer if joint tenancy"
check_answer_prompt: "Tell us if joint tenancy"
hint_text: ""
question_text: "Is this a joint tenancy?"
startertenancy:
page_header: ""
check_answer_label: "Starter or introductory tenancy"
check_answer_prompt: "Answer if starter or introductory tenancy"
check_answer_prompt: "Tell us if starter or introductory tenancy"
hint_text: "This is also known as an ‘introductory period’."
question_text: "Is this a starter tenancy?"
@ -72,6 +72,6 @@ en:
sheltered:
page_header: ""
check_answer_label: "Letting in sheltered accommodation"
check_answer_prompt: "Answer if letting is in sheltered accommodation"
check_answer_prompt: "Tell us if letting is in sheltered accommodation"
hint_text: "Sheltered housing and special retirement housing are for tenants with low-level care and support needs. This typically provides some limited support to enable independent living, such as alarm-based assistance or a scheme manager.</br></br>Extra care housing is for tenants with medium to high care and support needs, often with 24 hour access to support staff provided by an agency registered with the Care Quality Commission."
question_text: "Is this letting in sheltered accommodation?"

34
config/locales/forms/2023/sales/household_characteristics.en.yml

@ -7,13 +7,13 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers interviewed in person"
check_answer_prompt: "Answer if buyers interviewed in person"
check_answer_prompt: "Tell us if buyers interviewed in person"
hint_text: "You should still try to answer all questions even if the buyers weren’t interviewed in person"
question_text: "Were the buyers interviewed for any of the answers you will provide on this log?"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer interviewed in person"
check_answer_prompt: "Answer if buyer interviewed in person"
check_answer_prompt: "Tell us if buyer interviewed in person"
hint_text: "You should still try to answer all questions even if the buyer wasn’t interviewed in person"
question_text: "Was the buyer interviewed for any of the answers you will provide on this log?"
@ -21,13 +21,13 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers have seen the privacy notice"
check_answer_prompt: "Answer if buyers have seen the privacy notice"
check_answer_prompt: "Tell us if buyers have seen the privacy notice"
hint_text: ""
question_text: "Declaration"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer has seen the privacy notice"
check_answer_prompt: "Answer if buyer has seen the privacy notice"
check_answer_prompt: "Tell us if buyer has seen the privacy notice"
hint_text: ""
question_text: "Declaration"
@ -107,7 +107,7 @@ en:
buy1livein:
page_header: ""
check_answer_label: "Buyer 1 lives in the property"
check_answer_prompt: "Answer if buyer 1 lives in the property"
check_answer_prompt: "Tell us if buyer 1 lives in the property"
hint_text: "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest."
question_text: "Will buyer 1 live in the property?"
@ -130,7 +130,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Buyer 2’s age"
check_answer_prompt: "Answer if you know buyer 2's age"
check_answer_prompt: "Tell us if you know buyer 2's age"
hint_text: ""
question_text: "Do you know buyer 2’s age?"
age2:
@ -142,7 +142,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Person 2’s age known?"
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age:
@ -228,7 +228,7 @@ en:
buy2livein:
page_header: ""
check_answer_label: "Buyer 2 lives in the property"
check_answer_prompt: "Answer if buyer 2 lives in the property"
check_answer_prompt: "Tell us if buyer 2 lives in the property"
hint_text: ""
question_text: "Will buyer 2 live in the property?"
@ -249,14 +249,14 @@ en:
details_known_2:
page_header: ""
check_answer_label: "Details known for person 2?"
check_answer_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: ""
question_text: "Do you know the details for person 2?"
details_known_3:
page_header: ""
check_answer_label: "Details known for person 3?"
check_answer_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
hint_text: ""
question_text: "Do you know the details for person 3?"
@ -271,7 +271,7 @@ en:
page_header: ""
age3_known:
check_answer_label: "Person 3’s age known?"
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -297,7 +297,7 @@ en:
details_known_4:
page_header: ""
check_answer_label: "Details known for person 4?"
check_answer_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: ""
question_text: "Do you know the details for person 4?"
@ -312,7 +312,7 @@ en:
page_header: ""
age4_known:
check_answer_label: "Person 4’s age known?"
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -338,7 +338,7 @@ en:
details_known_5:
page_header: ""
check_answer_label: "Details known for person 5?"
check_answer_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: ""
question_text: "Do you know the details for person 5?"
@ -353,7 +353,7 @@ en:
page_header: ""
age5_known:
check_answer_label: "Person 5’s age known?"
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -379,7 +379,7 @@ en:
details_known_6:
page_header: ""
check_answer_label: "Details known for person 6?"
check_answer_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: ""
question_text: "Do you know the details for person 6?"
@ -394,7 +394,7 @@ en:
page_header: ""
age6_known:
check_answer_label: "Person 6’s age known?"
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:

2
config/locales/forms/2023/sales/income_benefits_and_savings.en.yml

@ -19,7 +19,7 @@ en:
inc1mort:
page_header: ""
check_answer_label: "Buyer 1’s income used for mortgage application"
check_answer_prompt: "Answer if buyer 1’s income used for mortgage application"
check_answer_prompt: "Tell us if buyer 1’s income used for mortgage application"
hint_text: ""
question_text: "Was buyer 1’s income used for a mortgage application?"

6
config/locales/forms/2023/sales/other_household_information.en.yml

@ -6,7 +6,7 @@ en:
hhregres:
page_header: ""
check_answer_label: "Any buyer has served as regulars in the UK armed forces"
check_answer_prompt: "Answer if any buyer has ever served as a regular in the UK armed forces"
check_answer_prompt: "Tell us if any buyer has ever served as a regular in the UK armed forces"
hint_text: "A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Airforce or Army full time and does not include reserve forces"
question_text: "Have any of the buyers ever served as a regular in the UK armed forces?"
@ -20,14 +20,14 @@ en:
armedforcesspouse:
page_header: ""
check_answer_label: "Any buyer is a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years"
check_answer_prompt: "Answer if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
check_answer_prompt: "Tell us if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
hint_text: ""
question_text: "Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?"
disabled:
page_header: ""
check_answer_label: "Household member has a disability"
check_answer_prompt: "Answer if someone has a disability"
check_answer_prompt: "Tell us if someone has a disability"
hint_text: "This includes any long-term health condition that has an impact on the person's day-to-day life"
question_text: "Does anyone in the household consider themselves to have a disability?"

4
config/locales/forms/2023/sales/property_information.en.yml

@ -19,7 +19,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -82,6 +82,6 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is built or adapted to wheelchair-user standards"
hint_text: ""
question_text: "Is the property built or adapted to wheelchair-user standards?"

12
config/locales/forms/2023/sales/sale_information.en.yml

@ -13,7 +13,7 @@ en:
question_text: "How long did they live there?"
proplen_asked:
check_answer_label: "Buyers lived in the property before purchasing"
check_answer_prompt: "Answer if buyer lived in the property before purchase"
check_answer_prompt: "Tell us if buyer lived in the property before purchase"
hint_text: ""
question_text: "Did the buyers live in the property before purchasing it?"
not_joint_purchase:
@ -32,7 +32,7 @@ en:
staircasing:
page_header: ""
check_answer_label: "Staircasing transaction"
check_answer_prompt: "Answer if staircasing transaction"
check_answer_prompt: "Tell us if staircasing transaction"
hint_text: "A staircasing transaction is when the household purchases more shares in their property, increasing the proportion they own and decreasing the proportion the housing association owns. Once the household purchases 100% of the shares, they own the property."
question_text: "Is this a staircasing transaction?"
about_staircasing:
@ -78,7 +78,7 @@ en:
la_nominations:
page_header: ""
check_answer_label: "Household rehoused under a local authority nominations agreement"
check_answer_prompt: "Answer if household rehoused under a local authority nominations agreement"
check_answer_prompt: "Tell us if household rehoused under a local authority nominations agreement"
hint_text: "A local authority nominations agreement is a written agreement between a local authority and private registered provider (PRP) that some or all of its sales vacancies are offered to local authorities for rehousing"
question_text: "Was the household rehoused under a 'local authority nominations agreement'?"
@ -133,7 +133,7 @@ en:
mortgageused:
page_header: ""
check_answer_label: "Mortgage used"
check_answer_prompt: "Answer if mortgage was used"
check_answer_prompt: "Tell us if mortgage was used"
hint_text: ""
question_text: "Was a mortgage used for the purchase of this property?"
@ -168,7 +168,7 @@ en:
extrabor:
page_header: ""
check_answer_label: "Any other borrowing"
check_answer_prompt: "Answer if there is any other borrowing"
check_answer_prompt: "Tell us if there is any other borrowing"
hint_text: ""
question_text: "Does this include any extra borrowing?"
@ -197,7 +197,7 @@ en:
page_header: ""
has_mscharge:
check_answer_label: "Property has monthly leasehold charges"
check_answer_prompt: "Answer if the property has any monthly leasehold charges"
check_answer_prompt: "Tell us if the property has any monthly leasehold charges"
hint_text: "For example, service and management charges"
question_text: "Does the property have any monthly leasehold charges?"
mscharge:

16
config/locales/forms/2023/sales/setup.en.yml

@ -41,7 +41,7 @@ en:
ownershipsch:
page_header: ""
check_answer_label: "Purchase made under ownership scheme"
check_answer_prompt: "Answer if purchase made under ownership scheme"
check_answer_prompt: "Tell us if purchase made under ownership scheme"
hint_text: ""
question_text: "Was this purchase made through an ownership scheme?"
@ -81,21 +81,21 @@ en:
buylivein:
page_header: ""
check_answer_label: "Buyers living in property"
check_answer_prompt: "Answer if buyers live in the property"
check_answer_prompt: "Tell us if buyers live in the property"
hint_text: ""
question_text: "Will the buyers live in the property?"
jointpur:
page_header: ""
check_answer_label: "Joint purchase"
check_answer_prompt: "Answer if joint purchase"
check_answer_prompt: "Tell us if joint purchase"
hint_text: ""
question_text: "Is this a joint purchase?"
jointmore:
page_header: ""
check_answer_label: "More than 2 joint buyers"
check_answer_prompt: "Answer if there are more than 2 joint buyers"
check_answer_prompt: "Tell us if there are more than 2 joint buyers"
hint_text: "You should still try to answer all questions even if the buyers weren’t interviewed in person"
question_text: "Are there more than 2 joint buyers of this property?"
@ -103,13 +103,13 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers interviewed in person"
check_answer_prompt: "Answer if buyers interviewed in person"
check_answer_prompt: "Tell us if buyers interviewed in person"
hint_text: "You should still try to answer all questions even if the buyers weren’t interviewed in person"
question_text: "Were the buyers interviewed for any of the answers you will provide on this log?"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer interviewed in person"
check_answer_prompt: "Answer if buyer interviewed in person"
check_answer_prompt: "Tell us if buyer interviewed in person"
hint_text: "You should still try to answer all questions even if the buyer wasn’t interviewed in person"
question_text: "Was the buyer interviewed for any of the answers you will provide on this log?"
@ -117,12 +117,12 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers have seen the privacy notice"
check_answer_prompt: "Answer if buyers have seen the privacy notice"
check_answer_prompt: "Tell us if buyers have seen the privacy notice"
hint_text: ""
question_text: "Declaration"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer has seen the privacy notice"
check_answer_prompt: "Answer if buyer has seen the privacy notice"
check_answer_prompt: "Tell us if buyer has seen the privacy notice"
hint_text: ""
question_text: "Declaration"

30
config/locales/forms/2024/lettings/household_characteristics.en.yml

@ -14,7 +14,7 @@ en:
page_header: ""
age1_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know the lead tenant's age"
check_answer_prompt: "Tell us if you know the lead tenant's age"
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: "Do you know the lead tenant’s age?"
age1:
@ -92,7 +92,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_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@ -107,7 +107,7 @@ en:
page_header: ""
age2_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age2:
@ -133,7 +133,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_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
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:
page_header: ""
age3_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -174,7 +174,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_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@ -189,7 +189,7 @@ en:
page_header: ""
age4_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -215,7 +215,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_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@ -230,7 +230,7 @@ en:
page_header: ""
age5_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -256,7 +256,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_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@ -271,7 +271,7 @@ en:
page_header: ""
age6_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:
@ -297,7 +297,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_prompt: "Answer if you know person 7's details"
check_answer_prompt: "Tell us if you know person 7's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@ -312,7 +312,7 @@ en:
page_header: ""
age7_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 7's age"
check_answer_prompt: "Tell us if you know person 7's age"
hint_text: ""
question_text: "Do you know person 7’s age?"
age7:
@ -338,7 +338,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_prompt: "Answer if you know person 8's details"
check_answer_prompt: "Tell us if you know person 8's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
@ -353,7 +353,7 @@ en:
page_header: ""
age8_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 8's age"
check_answer_prompt: "Tell us if you know person 8's age"
hint_text: ""
question_text: "Do you know person 8’s age?"
age8:

14
config/locales/forms/2024/lettings/household_needs.en.yml

@ -6,35 +6,35 @@ en:
armedforces:
page_header: ""
check_answer_label: "Household links to UK armed forces"
check_answer_prompt: "Answer if there are any household links to UK armed forces"
check_answer_prompt: "Tell us if there are any 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_prompt: "Answer if the person is still serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if the person is seriously injured or ill as result of serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if anybody in the household is pregnant"
check_answer_prompt: "Tell us if anybody in the household is pregnant"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
check_answer_label: "Anybody with disabled access needs"
check_answer_prompt: "Answer if there is anybody with disabled access needs"
check_answer_prompt: "Tell us if there is anybody with disabled access needs"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@ -47,14 +47,14 @@ en:
question_text: "What type of access needs do they have?"
housingneeds_other:
check_answer_label: "Other disabled access needs"
check_answer_prompt: "Answer if they have any other disabled access needs"
check_answer_prompt: "Tell us if they have any 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_prompt: "Answer if anybody in the household has a physical or mental health condition"
check_answer_prompt: "Tell us if anybody in the household has a 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/2024/lettings/household_situation.en.yml

@ -60,7 +60,7 @@ en:
homeless:
page_header: ""
check_answer_label: "Household homeless immediately before letting"
check_answer_prompt: "Answer if household homeless immediately before letting"
check_answer_prompt: "Tell us if household homeless immediately before letting"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@ -93,7 +93,7 @@ en:
reasonpref:
page_header: ""
check_answer_label: "Household given reasonable preference"
check_answer_prompt: "Answer if household given reasonable preference"
check_answer_prompt: "Tell us if 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?"

14
config/locales/forms/2024/lettings/income_and_benefits.en.yml

@ -6,7 +6,7 @@ en:
net_income_known:
page_header: "Household’s combined income after tax"
check_answer_label: "Household’s combined total income after tax"
check_answer_prompt: "Answer if you know the household’s combined total income after tax"
check_answer_prompt: "Tell us if you know the household’s combined total income after tax"
hint_text: ""
question_text: "Do you know the household’s combined income after tax?"
@ -26,21 +26,21 @@ en:
hb:
page_header: ""
check_answer_label: "Housing-related benefits received"
check_answer_prompt: "Answer if household receives housing-related benefits"
check_answer_prompt: "Tell us if household receives housing-related benefits"
hint_text: "This is about when the tenant is in their new let. If they are unsure about the situation for their new let and their financial and working situation hasn’t changed significantly, answer based on what housing-related benefits they currently receive."
question_text: "Is the household likely to be receiving any of these housing-related benefits?"
benefits:
page_header: ""
check_answer_label: "Household income from Universal Credit, state pension or benefit"
check_answer_prompt: "Answer if household income is from Universal Credit, state pension or benefit"
check_answer_prompt: "Tell us if household income is from Universal Credit, state pension or benefit"
hint_text: "This excludes child and housing benefit, council tax support and tax credits."
question_text: "How much of the household’s income is from Universal Credit, state pensions or benefits?"
household_charge:
page_header: ""
check_answer_label: "Does the household pay rent or charges"
check_answer_prompt: "Answer if the household pay rent or charges"
check_answer_prompt: "Tell us if the household pay rent or charges"
hint_text: "If rent is charged on the property then answer Yes to this question, even if the tenants do not pay it themselves."
question_text: "Does the household pay rent or other charges for the accommodation?"
@ -55,7 +55,7 @@ en:
page_header: ""
is_carehome:
check_answer_label: "Care home accommodation"
check_answer_prompt: "Answer if care home accommodation"
check_answer_prompt: "Tell us if care home accommodation"
hint_text: ""
question_text: "Is this accommodation a care home?"
chcharge_weekly:
@ -110,7 +110,7 @@ en:
hbrentshortfall:
page_header: ""
check_answer_label: "Any outstanding amount for basic rent and charges"
check_answer_prompt: "Answer if any outstanding amount for basic rent and charges"
check_answer_prompt: "Tell us if 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?"
@ -118,7 +118,7 @@ en:
page_header: ""
tshortfall_known:
check_answer_label: "Outstanding amount known"
check_answer_prompt: "Answer if you know the outstanding amount"
check_answer_prompt: "Tell us if you know the outstanding amount"
hint_text: "You only need to give an approximate figure."
question_text: "Can you estimate the outstanding amount?"
tshortfall:

6
config/locales/forms/2024/lettings/property_information.en.yml

@ -6,7 +6,7 @@ en:
first_time_property_let_as_social_housing:
page_header: ""
check_answer_label: "First time being let as social-housing"
check_answer_prompt: "Answer if it's the first time being let as social-housing"
check_answer_prompt: "Tell us if it's the first time being let as social-housing"
hint_text: ""
question_text: "Is this the first time the property has been let as social housing?"
@ -26,7 +26,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -116,7 +116,7 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is 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?"

4
config/locales/forms/2024/lettings/setup.en.yml

@ -55,7 +55,7 @@ en:
renewal:
page_header: ""
check_answer_label: "Property renewal"
check_answer_prompt: "Answer if it's a property renewal"
check_answer_prompt: "Tell us if it's a property renewal"
hint_text: "If the property was previously being used as temporary accommodation, then answer 'no'."
question_text: "Is this letting a renewal of social housing to the same tenant in the same property?"
@ -96,6 +96,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_prompt: "Answer if tenant has seen the privacy notice"
check_answer_prompt: "Tell us if tenant has seen the privacy notice"
hint_text: ""
question_text: "Declaration"

6
config/locales/forms/2024/lettings/tenancy_information.en.yml

@ -6,14 +6,14 @@ en:
joint:
page_header: ""
check_answer_label: "Joint tenancy"
check_answer_prompt: "Answer if joint tenancy"
check_answer_prompt: "Tell us if joint tenancy"
hint_text: "This is where two or more people are named on the tenancy agreement"
question_text: "Is this a joint tenancy?"
startertenancy:
page_header: ""
check_answer_label: "Starter or introductory tenancy"
check_answer_prompt: "Answer if starter or introductory tenancy"
check_answer_prompt: "Tell us if starter or introductory tenancy"
hint_text: "If the tenancy has an ‘introductory period’ answer ‘yes’.<br><br>You should submit a CORE log at the beginning of the starter tenancy or introductory period, with the best information you have at the time. You do not need to submit a log when a tenant later rolls onto the main tenancy."
question_text: "Is this a starter tenancy?"
@ -72,6 +72,6 @@ en:
sheltered:
page_header: ""
check_answer_label: "Letting in sheltered accommodation"
check_answer_prompt: "Answer if letting is in sheltered accommodation"
check_answer_prompt: "Tell us if letting is in sheltered accommodation"
hint_text: "Sheltered housing and special retirement housing are for tenants with low-level care and support needs. This typically provides some limited support to enable independent living, such as alarm-based assistance or a scheme manager.</br></br>Extra care housing is for tenants with medium to high care and support needs, often with 24 hour access to support staff provided by an agency registered with the Care Quality Commission."
question_text: "Is this letting in sheltered accommodation?"

26
config/locales/forms/2024/sales/household_characteristics.en.yml

@ -86,7 +86,7 @@ en:
buy1livein:
page_header: ""
check_answer_label: "Buyer 1 lives in the property"
check_answer_prompt: "Answer if buyer 1 lives in the property"
check_answer_prompt: "Tell us if buyer 1 lives in the property"
hint_text: ""
question_text: "Will buyer 1 live in the property?"
@ -109,7 +109,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Buyer 2’s age"
check_answer_prompt: "Answer if you know buyer 2's age"
check_answer_prompt: "Tell us if you know buyer 2's age"
hint_text: ""
question_text: "Do you know buyer 2’s age?"
age2:
@ -121,7 +121,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Person 2’s age known?"
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age2:
@ -214,7 +214,7 @@ en:
buy2livein:
page_header: ""
check_answer_label: "Buyer 2 lives in the property"
check_answer_prompt: "Answer if buyer 2 lives in the property"
check_answer_prompt: "Tell us if buyer 2 lives in the property"
hint_text: ""
question_text: "Will buyer 2 live in the property?"
@ -235,14 +235,14 @@ en:
details_known_2:
page_header: ""
check_answer_label: "Details known for person 2?"
check_answer_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: ""
question_text: "Do you know the details for person 2?"
details_known_3:
page_header: ""
check_answer_label: "Details known for person 3?"
check_answer_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
hint_text: ""
question_text: "Do you know the details for person 3?"
@ -257,7 +257,7 @@ en:
page_header: ""
age3_known:
check_answer_label: "Person 3’s age known?"
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -283,7 +283,7 @@ en:
details_known_4:
page_header: ""
check_answer_label: "Details known for person 4?"
check_answer_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: ""
question_text: "Do you know the details for person 4?"
@ -298,7 +298,7 @@ en:
page_header: ""
age4_known:
check_answer_label: "Person 4’s age known?"
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -324,7 +324,7 @@ en:
details_known_5:
page_header: ""
check_answer_label: "Details known for person 5?"
check_answer_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: ""
question_text: "Do you know the details for person 5?"
@ -339,7 +339,7 @@ en:
page_header: ""
age5_known:
check_answer_label: "Person 5’s age known?"
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -365,7 +365,7 @@ en:
details_known_6:
page_header: ""
check_answer_label: "Details known for person 6?"
check_answer_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: ""
question_text: "Do you know the details for person 6?"
@ -380,7 +380,7 @@ en:
page_header: ""
age6_known:
check_answer_label: "Person 6’s age known?"
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:

4
config/locales/forms/2024/sales/income_benefits_and_savings.en.yml

@ -19,7 +19,7 @@ en:
inc1mort:
page_header: ""
check_answer_label: "Buyer 1’s income used for mortgage application"
check_answer_prompt: "Answer if buyer 1’s income used for mortgage application"
check_answer_prompt: "Tell us if buyer 1’s income used for mortgage application"
hint_text: ""
question_text: "Was buyer 1’s income used for a mortgage application?"
@ -32,7 +32,7 @@ en:
question_text: "Do you know buyer 2’s annual income?"
income2:
check_answer_label: "Buyer 2’s gross annual income"
check_answer_prompt: "Answer if buyer 2’s income used for mortgage application"
check_answer_prompt: "Tell us if buyer 2’s income used for mortgage application"
hint_text: "Provide the gross annual income (i.e. salary before tax) plus the annual amount of benefits, Universal Credit or pensions, and income from investments."
question_text: "Buyer 2’s gross annual income"

6
config/locales/forms/2024/sales/other_household_information.en.yml

@ -6,7 +6,7 @@ en:
hhregres:
page_header: ""
check_answer_label: "Any buyer has served as regulars in the UK armed forces"
check_answer_prompt: "Answer if any buyer has ever served as a regular in the UK armed forces"
check_answer_prompt: "Tell us if any buyer has ever served as a regular in the UK armed forces"
hint_text: "A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Airforce or Army full time and does not include reserve forces"
question_text: "Have any of the buyers ever served as a regular in the UK armed forces?"
@ -20,14 +20,14 @@ en:
armedforcesspouse:
page_header: ""
check_answer_label: "Any buyer is a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years"
check_answer_prompt: "Answer if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
check_answer_prompt: "Tell us if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
hint_text: ""
question_text: "Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?"
disabled:
page_header: ""
check_answer_label: "Household member has a disability"
check_answer_prompt: "Answer if someone has a disability"
check_answer_prompt: "Tell us if someone has a disability"
hint_text: "This includes any long-term health condition that has an impact on the person's day-to-day life"
question_text: "Does anyone in the household consider themselves to have a disability?"

4
config/locales/forms/2024/sales/property_information.en.yml

@ -19,7 +19,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -102,6 +102,6 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is 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?"

12
config/locales/forms/2024/sales/sale_information.en.yml

@ -13,7 +13,7 @@ en:
question_text: "How long did they live there?"
proplen_asked:
check_answer_label: "Buyers lived in the property before purchasing"
check_answer_prompt: "Answer if buyer lived in the property before purchase"
check_answer_prompt: "Tell us if buyer lived in the property before purchase"
hint_text: ""
question_text: "Did the buyers live in the property before purchasing it?"
not_joint_purchase:
@ -32,7 +32,7 @@ en:
staircasing:
page_header: ""
check_answer_label: "Staircasing transaction"
check_answer_prompt: "Answer if staircasing transaction"
check_answer_prompt: "Tell us if staircasing transaction"
hint_text: "A staircasing transaction is when the household purchases more shares in their property, increasing the proportion they own and decreasing the proportion the housing association owns. Once the household purchases 100% of the shares, they own the property."
question_text: "Is this a staircasing transaction?"
about_staircasing:
@ -83,7 +83,7 @@ en:
la_nominations:
page_header: ""
check_answer_label: "Household rehoused under a local authority nominations agreement"
check_answer_prompt: "Answer if household rehoused under a local authority nominations agreement"
check_answer_prompt: "Tell us if household rehoused under a local authority nominations agreement"
hint_text: "A local authority nominations agreement is a written agreement between a local authority and private registered provider (PRP) that some or all of its sales vacancies are offered to local authorities for rehousing"
question_text: "Was the household rehoused under a 'local authority nominations agreement'?"
@ -139,7 +139,7 @@ en:
mortgageused:
page_header: ""
check_answer_label: "Mortgage used"
check_answer_prompt: "Answer if mortgage was used"
check_answer_prompt: "Tell us if mortgage was used"
hint_text: ""
question_text: "Was a mortgage used for the purchase of this property?"
@ -174,7 +174,7 @@ en:
extrabor:
page_header: ""
check_answer_label: "Any other borrowing"
check_answer_prompt: "Answer if there is any other borrowing"
check_answer_prompt: "Tell us if there is any other borrowing"
hint_text: ""
question_text: "Does this include any extra borrowing?"
@ -203,7 +203,7 @@ en:
page_header: ""
has_mscharge:
check_answer_label: "Property has monthly leasehold charges"
check_answer_prompt: "Answer if the property has any monthly leasehold charges"
check_answer_prompt: "Tell us if the property has any monthly leasehold charges"
hint_text: "For example, service and management charges"
question_text: "Does the property have any monthly leasehold charges?"
mscharge:

16
config/locales/forms/2024/sales/setup.en.yml

@ -41,7 +41,7 @@ en:
ownershipsch:
page_header: ""
check_answer_label: "Purchase made under ownership scheme"
check_answer_prompt: "Answer if purchase made under ownership scheme"
check_answer_prompt: "Tell us if purchase made under ownership scheme"
hint_text: ""
question_text: "Was this purchase made through an ownership scheme?"
@ -81,21 +81,21 @@ en:
buylivein:
page_header: ""
check_answer_label: "Buyers living in property"
check_answer_prompt: "Answer if buyers live in the property"
check_answer_prompt: "Tell us if buyers live in the property"
hint_text: ""
question_text: "Will any buyers live in the property?"
jointpur:
page_header: ""
check_answer_label: "Joint purchase"
check_answer_prompt: "Answer if joint purchase"
check_answer_prompt: "Tell us if joint purchase"
hint_text: "This is where two or more people are named as legal owners of the property after the purchase"
question_text: "Is this a joint purchase?"
jointmore:
page_header: ""
check_answer_label: "More than 2 joint buyers"
check_answer_prompt: "Answer if there are more than 2 joint buyers"
check_answer_prompt: "Tell us if there are more than 2 joint buyers"
hint_text: ""
question_text: "Are there more than 2 joint buyers of this property?"
@ -103,13 +103,13 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers interviewed in person"
check_answer_prompt: "Answer if buyers interviewed in person"
check_answer_prompt: "Tell us if buyers interviewed in person"
hint_text: "You should still try to answer all questions even if the buyers weren’t interviewed in person"
question_text: "Were the buyers interviewed for any of the answers you will provide on this log?"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer interviewed in person"
check_answer_prompt: "Answer if buyer interviewed in person"
check_answer_prompt: "Tell us if buyer interviewed in person"
hint_text: "You should still try to answer all questions even if the buyer wasn’t interviewed in person"
question_text: "Was the buyer interviewed for any of the answers you will provide on this log?"
@ -117,12 +117,12 @@ en:
joint_purchase:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
check_answer_label: "Buyers have seen the privacy notice"
check_answer_prompt: "Answer if buyers have seen the privacy notice"
check_answer_prompt: "Tell us if buyers have seen the privacy notice"
hint_text: ""
question_text: "Declaration"
not_joint_purchase:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
check_answer_label: "Buyer has seen the privacy notice"
check_answer_prompt: "Answer if buyer has seen the privacy notice"
check_answer_prompt: "Tell us if buyer has seen the privacy notice"
hint_text: ""
question_text: "Declaration"

30
config/locales/forms/2025/lettings/household_characteristics.en.yml

@ -14,7 +14,7 @@ en:
page_header: ""
age1_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know the lead tenant's age"
check_answer_prompt: "Tell us if you know the lead tenant's age"
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: "Do you know the lead tenant’s age?"
age1:
@ -92,7 +92,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_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 2?"
@ -107,7 +107,7 @@ en:
page_header: ""
age2_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age2:
@ -133,7 +133,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_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
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:
page_header: ""
age3_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -174,7 +174,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_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 4?"
@ -189,7 +189,7 @@ en:
page_header: ""
age4_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -215,7 +215,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_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 5?"
@ -230,7 +230,7 @@ en:
page_header: ""
age5_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -256,7 +256,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_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 6?"
@ -271,7 +271,7 @@ en:
page_header: ""
age6_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:
@ -297,7 +297,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_prompt: "Answer if you know person 7's details"
check_answer_prompt: "Tell us if you know person 7's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 7?"
@ -312,7 +312,7 @@ en:
page_header: ""
age7_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 7's age"
check_answer_prompt: "Tell us if you know person 7's age"
hint_text: ""
question_text: "Do you know person 7’s age?"
age7:
@ -338,7 +338,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_prompt: "Answer if you know person 8's details"
check_answer_prompt: "Tell us if you know person 8's details"
hint_text: "You must provide details for everyone in the household if you know them."
question_text: "Do you know details for person 8?"
@ -353,7 +353,7 @@ en:
page_header: ""
age8_known:
check_answer_label: ""
check_answer_prompt: "Answer if you know person 8's age"
check_answer_prompt: "Tell us if you know person 8's age"
hint_text: ""
question_text: "Do you know person 8’s age?"
age8:

14
config/locales/forms/2025/lettings/household_needs.en.yml

@ -6,35 +6,35 @@ en:
armedforces:
page_header: ""
check_answer_label: "Household links to UK armed forces"
check_answer_prompt: "Answer if there are any household links to UK armed forces"
check_answer_prompt: "Tell us if there are any 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_prompt: "Answer if the person is still serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if the person is seriously injured or ill as result of serving in UK armed forces"
check_answer_prompt: "Tell us if the person is 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_prompt: "Answer if anybody in the household is pregnant"
check_answer_prompt: "Tell us if anybody in the household is pregnant"
hint_text: ""
question_text: "Is anybody in the household pregnant?"
housingneeds:
page_header: ""
check_answer_label: "Anybody with disabled access needs"
check_answer_prompt: "Answer if there is anybody with disabled access needs"
check_answer_prompt: "Tell us if there is anybody with disabled access needs"
hint_text: ""
question_text: "Does anybody in the household have any disabled access needs?"
@ -47,14 +47,14 @@ en:
question_text: "What type of access needs do they have?"
housingneeds_other:
check_answer_label: "Other disabled access needs"
check_answer_prompt: "Answer if they have any other disabled access needs"
check_answer_prompt: "Tell us if they have any 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_prompt: "Answer if anybody in the household has a physical or mental health condition"
check_answer_prompt: "Tell us if anybody in the household has a 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

@ -60,7 +60,7 @@ en:
homeless:
page_header: ""
check_answer_label: "Household homeless immediately before letting"
check_answer_prompt: "Answer if household homeless immediately before letting"
check_answer_prompt: "Tell us if household homeless immediately before letting"
hint_text: ""
question_text: "Did the household experience homelessness immediately before this letting?"
@ -93,7 +93,7 @@ en:
reasonpref:
page_header: ""
check_answer_label: "Household given reasonable preference"
check_answer_prompt: "Answer if household given reasonable preference"
check_answer_prompt: "Tell us if 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?"

14
config/locales/forms/2025/lettings/income_and_benefits.en.yml

@ -6,7 +6,7 @@ en:
net_income_known:
page_header: "Household’s combined income after tax"
check_answer_label: "Household’s combined total income after tax"
check_answer_prompt: "Answer if you know the household’s combined total income after tax"
check_answer_prompt: "Tell us if you know the household’s combined total income after tax"
hint_text: ""
question_text: "Do you know the household’s combined income after tax?"
@ -26,21 +26,21 @@ en:
hb:
page_header: ""
check_answer_label: "Housing-related benefits received"
check_answer_prompt: "Answer if household receives housing-related benefits"
check_answer_prompt: "Tell us if household receives housing-related benefits"
hint_text: "This is about when the tenant is in their new let. If they are unsure about the situation for their new let and their financial and working situation hasn’t changed significantly, answer based on what housing-related benefits they currently receive."
question_text: "Is the household likely to be receiving any of these housing-related benefits?"
benefits:
page_header: ""
check_answer_label: "Household income from Universal Credit, state pension or benefit"
check_answer_prompt: "Answer if household income is from Universal Credit, state pension or benefit"
check_answer_prompt: "Tell us if household income is from Universal Credit, state pension or benefit"
hint_text: "This excludes child and housing benefit, council tax support and tax credits."
question_text: "How much of the household’s income is from Universal Credit, state pensions or benefits?"
household_charge:
page_header: ""
check_answer_label: "Does the household pay rent or charges"
check_answer_prompt: "Answer if the household pay rent or charges"
check_answer_prompt: "Tell us if the household pay rent or charges"
hint_text: "If rent is charged on the property then answer Yes to this question, even if the tenants do not pay it themselves."
question_text: "Does the household pay rent or other charges for the accommodation?"
@ -55,7 +55,7 @@ en:
page_header: ""
is_carehome:
check_answer_label: "Care home accommodation"
check_answer_prompt: "Answer if care home accommodation"
check_answer_prompt: "Tell us if care home accommodation"
hint_text: ""
question_text: "Is this accommodation a care home?"
chcharge_weekly:
@ -110,7 +110,7 @@ en:
hbrentshortfall:
page_header: ""
check_answer_label: "Any outstanding amount for basic rent and charges"
check_answer_prompt: "Answer if any outstanding amount for basic rent and charges"
check_answer_prompt: "Tell us if 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?"
@ -118,7 +118,7 @@ en:
page_header: ""
tshortfall_known:
check_answer_label: "Outstanding amount known"
check_answer_prompt: "Answer if you know the outstanding amount"
check_answer_prompt: "Tell us if you know the outstanding amount"
hint_text: "You only need to give an approximate figure."
question_text: "Can you estimate the outstanding amount?"
tshortfall:

6
config/locales/forms/2025/lettings/property_information.en.yml

@ -6,7 +6,7 @@ en:
first_time_property_let_as_social_housing:
page_header: ""
check_answer_label: "First time being let as social-housing"
check_answer_prompt: "Answer if it's the first time being let as social-housing"
check_answer_prompt: "Tell us if it's the first time being let as social-housing"
hint_text: ""
question_text: "Is this the first time the property has been let as social housing?"
@ -26,7 +26,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -116,7 +116,7 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is 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?"

4
config/locales/forms/2025/lettings/setup.en.yml

@ -55,7 +55,7 @@ en:
renewal:
page_header: ""
check_answer_label: "Property renewal"
check_answer_prompt: "Answer if it's a property renewal"
check_answer_prompt: "Tell us if it's a property renewal"
hint_text: "If the property was previously being used as temporary accommodation, then answer 'no'."
question_text: "Is this letting a renewal of social housing to the same tenant in the same property?"
@ -96,6 +96,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_prompt: "Answer if tenant has seen the privacy notice"
check_answer_prompt: "Tell us if tenant has seen the privacy notice"
hint_text: ""
question_text: "Declaration"

6
config/locales/forms/2025/lettings/tenancy_information.en.yml

@ -6,14 +6,14 @@ en:
joint:
page_header: ""
check_answer_label: "Joint tenancy"
check_answer_prompt: "Answer if joint tenancy"
check_answer_prompt: "Tell us if joint tenancy"
hint_text: "This is where two or more people are named on the tenancy agreement"
question_text: "Is this a joint tenancy?"
startertenancy:
page_header: ""
check_answer_label: "Starter or introductory tenancy"
check_answer_prompt: "Answer if starter or introductory tenancy"
check_answer_prompt: "Tell us if starter or introductory tenancy"
hint_text: "If the tenancy has an ‘introductory period’ answer ‘yes’.<br><br>You should submit a CORE log at the beginning of the starter tenancy or introductory period, with the best information you have at the time. You do not need to submit a log when a tenant later rolls onto the main tenancy."
question_text: "Is this a starter tenancy?"
@ -72,6 +72,6 @@ en:
sheltered:
page_header: ""
check_answer_label: "Letting in sheltered accommodation"
check_answer_prompt: "Answer if letting is in sheltered accommodation"
check_answer_prompt: "Tell us if letting is in sheltered accommodation"
hint_text: "Sheltered housing and special retirement housing are for tenants with low-level care and support needs. This typically provides some limited support to enable independent living, such as alarm-based assistance or a scheme manager.</br></br>Extra care housing is for tenants with medium to high care and support needs, often with 24 hour access to support staff provided by an agency registered with the Care Quality Commission."
question_text: "Is this letting in sheltered accommodation?"

26
config/locales/forms/2025/sales/household_characteristics.en.yml

@ -86,7 +86,7 @@ en:
buy1livein:
page_header: ""
check_answer_label: "Buyer 1 lives in the property"
check_answer_prompt: "Answer if buyer 1 lives in the property"
check_answer_prompt: "Tell us if buyer 1 lives in the property"
hint_text: ""
question_text: "Will buyer 1 live in the property?"
@ -109,7 +109,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Buyer 2’s age"
check_answer_prompt: "Answer if you know buyer 2's age"
check_answer_prompt: "Tell us if you know buyer 2's age"
hint_text: ""
question_text: "Do you know buyer 2’s age?"
age2:
@ -121,7 +121,7 @@ en:
page_header: ""
age2_known:
check_answer_label: "Person 2’s age known?"
check_answer_prompt: "Answer if you know person 2's age"
check_answer_prompt: "Tell us if you know person 2's age"
hint_text: ""
question_text: "Do you know person 2’s age?"
age2:
@ -214,7 +214,7 @@ en:
buy2livein:
page_header: ""
check_answer_label: "Buyer 2 lives in the property"
check_answer_prompt: "Answer if buyer 2 lives in the property"
check_answer_prompt: "Tell us if buyer 2 lives in the property"
hint_text: ""
question_text: "Will buyer 2 live in the property?"
@ -235,14 +235,14 @@ en:
details_known_2:
page_header: ""
check_answer_label: "Details known for person 2?"
check_answer_prompt: "Answer if you know person 2's details"
check_answer_prompt: "Tell us if you know person 2's details"
hint_text: ""
question_text: "Do you know the details for person 2?"
details_known_3:
page_header: ""
check_answer_label: "Details known for person 3?"
check_answer_prompt: "Answer if you know person 3's details"
check_answer_prompt: "Tell us if you know person 3's details"
hint_text: ""
question_text: "Do you know the details for person 3?"
@ -257,7 +257,7 @@ en:
page_header: ""
age3_known:
check_answer_label: "Person 3’s age known?"
check_answer_prompt: "Answer if you know person 3's age"
check_answer_prompt: "Tell us if you know person 3's age"
hint_text: ""
question_text: "Do you know person 3’s age?"
age3:
@ -283,7 +283,7 @@ en:
details_known_4:
page_header: ""
check_answer_label: "Details known for person 4?"
check_answer_prompt: "Answer if you know person 4's details"
check_answer_prompt: "Tell us if you know person 4's details"
hint_text: ""
question_text: "Do you know the details for person 4?"
@ -298,7 +298,7 @@ en:
page_header: ""
age4_known:
check_answer_label: "Person 4’s age known?"
check_answer_prompt: "Answer if you know person 4's age"
check_answer_prompt: "Tell us if you know person 4's age"
hint_text: ""
question_text: "Do you know person 4’s age?"
age4:
@ -324,7 +324,7 @@ en:
details_known_5:
page_header: ""
check_answer_label: "Details known for person 5?"
check_answer_prompt: "Answer if you know person 5's details"
check_answer_prompt: "Tell us if you know person 5's details"
hint_text: ""
question_text: "Do you know the details for person 5?"
@ -339,7 +339,7 @@ en:
page_header: ""
age5_known:
check_answer_label: "Person 5’s age known?"
check_answer_prompt: "Answer if you know person 5's age"
check_answer_prompt: "Tell us if you know person 5's age"
hint_text: ""
question_text: "Do you know person 5’s age?"
age5:
@ -365,7 +365,7 @@ en:
details_known_6:
page_header: ""
check_answer_label: "Details known for person 6?"
check_answer_prompt: "Answer if you know person 6's details"
check_answer_prompt: "Tell us if you know person 6's details"
hint_text: ""
question_text: "Do you know the details for person 6?"
@ -380,7 +380,7 @@ en:
page_header: ""
age6_known:
check_answer_label: "Person 6’s age known?"
check_answer_prompt: "Answer if you know person 6's age"
check_answer_prompt: "Tell us if you know person 6's age"
hint_text: ""
question_text: "Do you know person 6’s age?"
age6:

2
config/locales/forms/2025/sales/income_benefits_and_savings.en.yml

@ -19,7 +19,7 @@ en:
inc1mort:
page_header: ""
check_answer_label: "Buyer 1’s income used for mortgage application"
check_answer_prompt: "Answer if buyer 1’s income used for mortgage application"
check_answer_prompt: "Tell us if buyer 1’s income used for mortgage application"
hint_text: ""
question_text: "Was buyer 1’s income used for a mortgage application?"

6
config/locales/forms/2025/sales/other_household_information.en.yml

@ -6,7 +6,7 @@ en:
hhregres:
page_header: ""
check_answer_label: "Any buyer has served as regulars in the UK armed forces"
check_answer_prompt: "Answer if any buyer has ever served as a regular in the UK armed forces"
check_answer_prompt: "Tell us if any buyer has ever served as a regular in the UK armed forces"
hint_text: "A regular is somebody who has served in the Royal Navy, the Royal Marines, the Royal Airforce or Army full time and does not include reserve forces"
question_text: "Have any of the buyers ever served as a regular in the UK armed forces?"
@ -20,14 +20,14 @@ en:
armedforcesspouse:
page_header: ""
check_answer_label: "Any buyer is a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years"
check_answer_prompt: "Answer if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
check_answer_prompt: "Tell us if any buyers are a spouse or civil partner of a UK armed forces regular who dies in service within the last 2 years"
hint_text: ""
question_text: "Are any of the buyers a spouse or civil partner of a UK armed forces regular who died in service within the last 2 years?"
disabled:
page_header: ""
check_answer_label: "Household member has a disability"
check_answer_prompt: "Answer if someone has a disability"
check_answer_prompt: "Tell us if someone has a disability"
hint_text: "This includes any long-term health condition that has an impact on the person's day-to-day life"
question_text: "Does anyone in the household consider themselves to have a disability?"

4
config/locales/forms/2025/sales/property_information.en.yml

@ -19,7 +19,7 @@ en:
uprn_confirmed:
page_header: "We found an address that might be this property"
check_answer_label: "Is this the right address?"
check_answer_prompt: "Answer if this is the right address"
check_answer_prompt: "Tell us if this is the right address"
hint_text: ""
question_text: "Is this the property address?"
@ -102,6 +102,6 @@ en:
wchair:
page_header: ""
check_answer_label: "Property built or adapted to wheelchair-user standards"
check_answer_prompt: "Answer if property is built or adapted to wheelchair-user standards"
check_answer_prompt: "Tell us if property is 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?"

8
config/locales/forms/2025/sales/sale_information.en.yml

@ -13,7 +13,7 @@ en:
question_text: "How long did they live there?"
proplen_asked:
check_answer_label: "Buyers lived in the property before purchasing"
check_answer_prompt: "Answer if buyer lived in the property before purchase"
check_answer_prompt: "Tell us if buyer lived in the property before purchase"
hint_text: ""
question_text: "Did the buyers live in the property before purchasing it?"
not_joint_purchase:
@ -104,7 +104,7 @@ en:
la_nominations:
page_header: ""
check_answer_label: "Household rehoused under a local authority nominations agreement"
check_answer_prompt: "Answer if household rehoused under a local authority nominations agreement"
check_answer_prompt: "Tell us if household rehoused under a local authority nominations agreement"
hint_text: "A local authority nominations agreement is a written agreement between a local authority and private registered provider (PRP) that some or all of its sales vacancies are offered to local authorities for rehousing"
question_text: "Was the household rehoused under a 'local authority nominations agreement'?"
@ -172,7 +172,7 @@ en:
mortgageused:
page_header: ""
check_answer_label: "Mortgage used"
check_answer_prompt: "Answer if mortgage was used"
check_answer_prompt: "Tell us if mortgage was used"
hint_text: ""
question_text: "Was a mortgage used for the purchase of this property?"
@ -207,7 +207,7 @@ en:
extrabor:
page_header: ""
check_answer_label: "Any other borrowing"
check_answer_prompt: "Answer if there is any other borrowing"
check_answer_prompt: "Tell us if there is any other borrowing"
hint_text: ""
question_text: "Does this include any extra borrowing?"

16
config/locales/forms/2025/sales/setup.en.yml

@ -41,14 +41,14 @@ en:
ownershipsch:
page_header: ""
check_answer_label: "Purchase made under ownership scheme"
check_answer_prompt: "Answer if purchase made under ownership scheme"
check_answer_prompt: "Tell us if purchase made under ownership scheme"
hint_text: ""
question_text: "Was this purchase made through an ownership scheme?"
staircasing:
page_header: ""
check_answer_label: "Staircasing transaction"
check_answer_prompt: "Answer if staircasing transaction"
check_answer_prompt: "Tell us if staircasing transaction"
hint_text: "A staircasing transaction is when the household purchases more shares in their property, increasing the proportion they own and decreasing the proportion the housing association owns. Once the household purchases 100% of the shares, they own the property."
question_text: "Is this a staircasing transaction?"
@ -69,14 +69,14 @@ en:
jointpur:
page_header: ""
check_answer_label: "Joint purchase"
check_answer_prompt: "Answer if joint purchase"
check_answer_prompt: "Tell us if joint purchase"
hint_text: "This is where two or more people are named as legal owners of the property after the purchase"
question_text: "Is this a joint purchase?"
jointmore:
page_header: ""
check_answer_label: "More than 2 joint buyers"
check_answer_prompt: "Answer if there are more than 2 joint buyers"
check_answer_prompt: "Tell us if there are more than 2 joint buyers"
hint_text: ""
question_text: "Are there more than 2 joint buyers of this property?"
@ -84,13 +84,13 @@ en:
joint_purchase:
page_header: ""
check_answer_label: "Buyers interviewed in person?"
check_answer_prompt: "Answer if buyers interviewed in person"
check_answer_prompt: "Tell us if buyers interviewed in person"
hint_text: "You should still try to answer all questions even if the buyers weren’t interviewed in person"
question_text: "Were the buyers interviewed for any of the answers you will provide on this log?"
not_joint_purchase:
page_header: ""
check_answer_label: "Buyer interviewed in person"
check_answer_prompt: "Answer if buyer interviewed in person"
check_answer_prompt: "Tell us if buyer interviewed in person"
hint_text: "You should still try to answer all questions even if the buyer wasn’t interviewed in person"
question_text: "Was the buyer interviewed for any of the answers you will provide on this log?"
@ -98,12 +98,12 @@ en:
joint_purchase:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
check_answer_label: "Buyers have seen the privacy notice"
check_answer_prompt: "Answer if buyers have seen the privacy notice"
check_answer_prompt: "Tell us if buyers have seen the privacy notice"
hint_text: ""
question_text: "Declaration"
not_joint_purchase:
page_header: "Ministry of Housing, Communities and Local Government privacy notice"
check_answer_label: "Buyer has seen the privacy notice"
check_answer_prompt: "Answer if buyer has seen the privacy notice"
check_answer_prompt: "Tell us if buyer has seen the privacy notice"
hint_text: ""
question_text: "Declaration"

2
docker-compose.yml

@ -5,7 +5,7 @@ volumes:
services:
db:
image: postgres:13.5-alpine
image: postgres:13.18-alpine
restart: always
# To preserve data between runs of docker-compose, we mount a folder from the host machine.
volumes:

2
spec/helpers/merge_requests_helper_spec.rb

@ -272,7 +272,7 @@ RSpec.describe MergeRequestsHelper do
describe "#merge_request_details_prompt" do
it "returns the correct message for existing_absorbing_organisation" do
expect(helper.merge_request_details_prompt("existing_absorbing_organisation")).to eq("Answer if absorbing organisation is already active")
expect(helper.merge_request_details_prompt("existing_absorbing_organisation")).to eq("Tell us if absorbing organisation is already active")
end
it "returns the correct message for helpdesk_ticket" do

Loading…
Cancel
Save