Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CRIMAPP-1415] Partner details content updates #1254

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/steps/address/lookup/edit.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<h1 class="govuk-heading-xl"><%=t @form_object.heading %></h1>

<%= step_form @form_object, data: { module: 'multi-action-form' } do |f| %>
<%= f.govuk_text_field :postcode, autocomplete: 'off', width: 'one-third' %>
<%= f.govuk_text_field :postcode, label: { tag: 'h2', size: 'm' }, autocomplete: 'off', width: 'one-third' %>

<p class="govuk-body govuk-!-margin-bottom-6">
<%= link_to t('.manual_entry'), edit_steps_address_details_path %>
Expand Down
5 changes: 4 additions & 1 deletion config/locales/en/helpers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ en:
steps_client_relationship_status_form:
relationship_status: What is your client's relationship status?
steps_partner_relationship_form:
relationship_to_partner: What is the client’s relationship to their partner?
relationship_to_partner: What is your client’s relationship to their partner?
steps_partner_details_form:
date_of_birth: Date of birth
steps_partner_involvement_form:
Expand Down Expand Up @@ -397,6 +397,9 @@ en:
steps_client_details_form:
other_names: This includes aliases, nicknames or other names your client may be known as.
date_of_birth: For example, 27 3 2007
steps_partner_details_form:
other_names: This includes aliases, nicknames or other names they may be known as.
date_of_birth: For example, 27 3 2007
steps_client_appeal_details_form:
appeal_lodged_date: For example, 27 3 2007
appeal_original_app_submitted: This is the case with the outcome your client wants to appeal.
Expand Down
14 changes: 7 additions & 7 deletions config/locales/en/steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ en:
partner:
relationship:
edit:
page_title: What is the client’s relationship to their partner?
page_title: What is your client’s relationship to their partner?
details:
edit:
page_title: Enter the partner’s details
heading: Enter the partner’s details
page_title: The partner’s details
heading: The partner’s details
full_name_legend: Partner’s full name
nino:
edit:
Expand Down Expand Up @@ -158,10 +158,10 @@ en:
home_address: Partner’s home address
heading:
applicant:
home_address: Enter the address where your client usually lives
home_address: Enter the client's usual home address
correspondence_address: Enter your client’s correspondence address
partner:
home_address: Enter the address where the partner usually lives
home_address: Enter the partner's usual home address
manual_entry: Enter address manually
results:
edit:
Expand All @@ -173,10 +173,10 @@ en:
home_address: Partner’s home address selection
heading:
applicant:
home_address: Enter the address where your client usually lives
home_address: Enter the client's usual home address
correspondence_address: Enter your client’s correspondence address
partner:
home_address: Enter the address where the partner usually lives
home_address: Enter the partner's usual home address
current_postcode: Postcode
change_postcode_html: Change <span class="govuk-visually-hidden">postcode</span>
address_not_listed: I can’t find the address in the list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
save_and_continue

# steps/client/client_relationship_to_partner
choose_answer('What is the client’s relationship to their partner?', 'Living together')
choose_answer('What is your client’s relationship to their partner?', 'Living together')
save_and_continue

# steps/partner/partner_details
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
save_and_continue

# steps/client/client_relationship_to_partner
choose_answer('What is the client’s relationship to their partner?', 'Living together')
choose_answer('What is your client’s relationship to their partner?', 'Living together')
save_and_continue

# steps/partner/partner_details
Expand Down
Loading