Skip to content

Commit

Permalink
CIV-10119 Wording update (#3177)
Browse files Browse the repository at this point in the history
* CIV-10119 Wording update

Co-authored-by: kdaHMCTS <[email protected]>
Co-authored-by: krishnanuthalapati <[email protected]>
Co-authored-by: asthamalviya <[email protected]>
Co-authored-by: mfallonhmcts <[email protected]>
  • Loading branch information
5 people authored Dec 8, 2023
1 parent c69791a commit 546c892
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,17 @@ public Optional<String> generateTextFor(CaseData caseData) {
}
sb.append(" legal representative if you need details on how to pay")
.append("<br><br>")
.append("If you do not pay immediately, ").append(applicantName)
.append(" can request a county court judgment against you.")

.append("If you do not pay immediately, ").append(applicantName);
if (caseData.getRespondent2() != null || caseData.getApplicant2() != null) {
sb.append(" can either:")
.append("<ul>")
.append("<li>ask you to sign a settlement agreement to formalise the repayment plan</li>");
} else {
sb.append(" can:")
.append("<ul>");
}
sb.append("<li>request a county court judgment against you</li>")
.append("</ul>")
.append("<h3 class=\"govuk-heading-m\">If ")
.append(applicantName);
if (caseData.getApplicant2() != null) {
Expand Down

0 comments on commit 546c892

Please sign in to comment.