diff --git a/cypress_shared/fixtures/applicationData.json b/cypress_shared/fixtures/applicationData.json index 433b595d5..e1951b243 100644 --- a/cypress_shared/fixtures/applicationData.json +++ b/cypress_shared/fixtures/applicationData.json @@ -215,7 +215,7 @@ "accommodationTypes": ["cas1", "cas3"], "cas1Detail": "Approved Premises detail", "cas2Detail": "", - "cas3Detail": "Temporary Accommodation detail" + "cas3Detail": "Transitional Accommodation detail" } }, "placement-location": { diff --git a/cypress_shared/fixtures/applicationTranslatedDocument.json b/cypress_shared/fixtures/applicationTranslatedDocument.json index 80ca67d77..109b7f86b 100644 --- a/cypress_shared/fixtures/applicationTranslatedDocument.json +++ b/cypress_shared/fixtures/applicationTranslatedDocument.json @@ -42,7 +42,7 @@ "id": "eligibility", "content": [ { - "How is the person eligible for Temporary Accommodation (TA)?": "Moving on as homeless from an Approved Premises" + "How is the person eligible for Transitional Accommodation (TA)?": "Moving on as homeless from an Approved Premises" }, { "Release date": "2 September 2123" }, { "Accommodation required from date": "16 September 2123" } @@ -51,7 +51,7 @@ { "title": "Consent", "id": "consent", - "content": [{ "Has consent for Temporary Accommodation been given?": "Yes" }] + "content": [{ "Has consent for Transitional Accommodation been given?": "Yes" }] } ] }, @@ -170,7 +170,7 @@ { "Has the person previously stayed in Community Accommodation Services (CAS)?": "Yes" }, { "Approved Premises (AP or CAS1)": "Approved Premises detail", - "Temporary Accommodation (CAS3)": "Temporary Accommodation detail" + "Transitional Accommodation (CAS3)": "Transitional Accommodation detail" } ] } diff --git a/cypress_shared/pages/apply/accommodation-need/consent/consentGiven.ts b/cypress_shared/pages/apply/accommodation-need/consent/consentGiven.ts index 82f7ac53e..02bd617ff 100644 --- a/cypress_shared/pages/apply/accommodation-need/consent/consentGiven.ts +++ b/cypress_shared/pages/apply/accommodation-need/consent/consentGiven.ts @@ -5,7 +5,7 @@ import ApplyPage from '../../applyPage' export default class ConsentGivenPage extends ApplyPage { constructor(application: TemporaryAccommodationApplication) { super( - 'Has consent for Temporary Accommodation been given?', + 'Has consent for Transitional Accommodation been given?', application, 'consent', 'consent-given', diff --git a/cypress_shared/pages/apply/accommodation-need/eligibility/eligibilityReason.ts b/cypress_shared/pages/apply/accommodation-need/eligibility/eligibilityReason.ts index bbfea622e..0282d208b 100644 --- a/cypress_shared/pages/apply/accommodation-need/eligibility/eligibilityReason.ts +++ b/cypress_shared/pages/apply/accommodation-need/eligibility/eligibilityReason.ts @@ -6,7 +6,7 @@ import { personName } from '../../../../../server/utils/personUtils' export default class EligibilityReasonPage extends ApplyPage { constructor(application: TemporaryAccommodationApplication) { super( - `How is ${personName(application.person)} eligible for Temporary Accommodation (TA)?`, + `How is ${personName(application.person)} eligible for Transitional Accommodation (TA)?`, application, 'eligibility', 'eligibility-reason', diff --git a/cypress_shared/pages/apply/list.ts b/cypress_shared/pages/apply/list.ts index 9d6379680..d30ee10cd 100644 --- a/cypress_shared/pages/apply/list.ts +++ b/cypress_shared/pages/apply/list.ts @@ -6,7 +6,7 @@ import Page from '../page' export default class ListPage extends Page { constructor(private readonly inProgressApplications: Array) { - super('Temporary Accommodation (TA) referrals') + super('Transitional Accommodation (TA) referrals') } static visit(inProgressApplications: Array): ListPage { diff --git a/cypress_shared/pages/apply/startPage.ts b/cypress_shared/pages/apply/startPage.ts index c81b4d375..3db82dc76 100644 --- a/cypress_shared/pages/apply/startPage.ts +++ b/cypress_shared/pages/apply/startPage.ts @@ -4,7 +4,7 @@ import paths from '../../../server/paths/apply' export default class StartPage extends Page { constructor() { - super('Make a referral for Temporary Accommodation') + super('Make a referral for Transitional Accommodation') } static visit(): StartPage { diff --git a/cypress_shared/pages/apply/taskListPage.ts b/cypress_shared/pages/apply/taskListPage.ts index c31989243..c4e2cd61a 100644 --- a/cypress_shared/pages/apply/taskListPage.ts +++ b/cypress_shared/pages/apply/taskListPage.ts @@ -4,7 +4,7 @@ import paths from '../../../server/paths/apply' export default class TaskListPage extends Page { constructor(private readonly inProgressApplication: Application) { - super('Make a referral for Temporary Accommodation') + super('Make a referral for Transitional Accommodation') } static visit(inProgressApplication: Application): TaskListPage { diff --git a/integration_tests/tests/temporary-accommodation/cookies.cy.ts b/integration_tests/tests/temporary-accommodation/cookies.cy.ts index e9391b7b8..9a164a276 100644 --- a/integration_tests/tests/temporary-accommodation/cookies.cy.ts +++ b/integration_tests/tests/temporary-accommodation/cookies.cy.ts @@ -9,7 +9,7 @@ context('Cookies', () => { it('should navigate to the cookie policy page', () => { cy.signIn() cy.contains('Cookies').click() - cy.title().should('eq', 'Cookies - Temporary Accommodation') + cy.title().should('eq', 'Cookies - Transitional Accommodation') cy.contains('Cookies are small files saved on your phone, tablet or computer when you visit a website.') }) }) diff --git a/server/form-pages/apply/accommodation-need/consent/consentGiven.test.ts b/server/form-pages/apply/accommodation-need/consent/consentGiven.test.ts index 654bb8ebc..d4fe394fe 100644 --- a/server/form-pages/apply/accommodation-need/consent/consentGiven.test.ts +++ b/server/form-pages/apply/accommodation-need/consent/consentGiven.test.ts @@ -27,7 +27,7 @@ describe('ConsentGiven', () => { it('returns an error if the consent given field is not populated', () => { const page = new ConsentGiven({ ...body, consentGiven: undefined }, application) expect(page.errors()).toEqual({ - consentGiven: 'You must specify if consent for Temporary Accommodation has been given', + consentGiven: 'You must specify if consent for Transitional Accommodation has been given', }) }) }) @@ -36,7 +36,7 @@ describe('ConsentGiven', () => { it('returns a translated version of the response', () => { const page = new ConsentGiven(body, application) expect(page.response()).toEqual({ - 'Has consent for Temporary Accommodation been given?': 'Yes', + 'Has consent for Transitional Accommodation been given?': 'Yes', }) }) }) diff --git a/server/form-pages/apply/accommodation-need/consent/consentGiven.ts b/server/form-pages/apply/accommodation-need/consent/consentGiven.ts index 0ca5005ba..52a8a16a7 100644 --- a/server/form-pages/apply/accommodation-need/consent/consentGiven.ts +++ b/server/form-pages/apply/accommodation-need/consent/consentGiven.ts @@ -11,7 +11,7 @@ type ConsentGivenBody = { @Page({ name: 'consent-given', bodyProperties: ['consentGiven'] }) export default class ConsentGiven implements TasklistPage { - title = 'Has consent for Temporary Accommodation been given?' + title = 'Has consent for Transitional Accommodation been given?' htmlDocumentTitle = this.title @@ -36,7 +36,7 @@ export default class ConsentGiven implements TasklistPage { const errors: TaskListErrors = {} if (!this.body.consentGiven) { - errors.consentGiven = 'You must specify if consent for Temporary Accommodation has been given' + errors.consentGiven = 'You must specify if consent for Transitional Accommodation has been given' } return errors diff --git a/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.test.ts b/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.test.ts index 586553b24..1ab374a05 100644 --- a/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.test.ts +++ b/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.test.ts @@ -54,7 +54,7 @@ describe('EligibilityReason', () => { const page = new EligibilityReason(body, application) expect(page.response()).toEqual({ - 'How is the person eligible for Temporary Accommodation (TA)?': + 'How is the person eligible for Transitional Accommodation (TA)?': 'Moving on as homeless from an Approved Premises', }) }) diff --git a/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.ts b/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.ts index 133c15624..e7c230e72 100644 --- a/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.ts +++ b/server/form-pages/apply/accommodation-need/eligibility/eligibilityReason.ts @@ -20,14 +20,14 @@ type EligibilityReasonBody = { reason: EligibilityReasonsT } export default class EligibilityReason implements TasklistPage { title: string - htmlDocumentTitle = 'How is the person eligible for Temporary Accommodation (TA)?' + htmlDocumentTitle = 'How is the person eligible for Transitional Accommodation (TA)?' constructor( readonly body: Partial, readonly application: Application, ) { const name = personName(application.person) - this.title = `How is ${name} eligible for Temporary Accommodation (TA)?` + this.title = `How is ${name} eligible for Transitional Accommodation (TA)?` } response() { diff --git a/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.test.ts b/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.test.ts index a25540231..3fa59b43f 100644 --- a/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.test.ts +++ b/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.test.ts @@ -5,7 +5,7 @@ import PreviousStaysDetails from './previousStaysDetails' const body = { accommodationTypes: ['cas1' as const, 'cas3' as const], cas1Detail: 'Approved Premises detail', - cas3Detail: 'Temporary Accommodation detail', + cas3Detail: 'Transitional Accommodation detail', } describe('PreviousStaysDetails', () => { @@ -61,7 +61,7 @@ describe('PreviousStaysDetails', () => { const page = new PreviousStaysDetails(body, application) expect(page.response()).toEqual({ 'Approved Premises (AP or CAS1)': 'Approved Premises detail', - 'Temporary Accommodation (CAS3)': 'Temporary Accommodation detail', + 'Transitional Accommodation (CAS3)': 'Transitional Accommodation detail', }) }) }) @@ -75,7 +75,7 @@ describe('PreviousStaysDetails', () => { text: 'Approved Premises (AP or CAS1)', }, { value: 'cas2', text: 'Bail Accommodation and Support Service (BASS or CAS2)' }, - { value: 'cas3', text: 'Temporary Accommodation (CAS3)' }, + { value: 'cas3', text: 'Transitional Accommodation (CAS3)' }, ]) }) }) diff --git a/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.ts b/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.ts index 3d6b578eb..130e076f0 100644 --- a/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.ts +++ b/server/form-pages/apply/assess-placement-risks-and-needs/behaviour-in-cas/previousStaysDetails.ts @@ -13,7 +13,7 @@ const accommodationTypes = { text: 'Bail Accommodation and Support Service (BASS or CAS2)', }, cas3: { - text: 'Temporary Accommodation (CAS3)', + text: 'Transitional Accommodation (CAS3)', }, } as const diff --git a/server/utils/nunjucksSetup.ts b/server/utils/nunjucksSetup.ts index 35ae06eca..fa9cd3896 100644 --- a/server/utils/nunjucksSetup.ts +++ b/server/utils/nunjucksSetup.ts @@ -49,7 +49,7 @@ export default function nunjucksSetup(app: express.Express, path: pathModule.Pla app.set('view engine', 'njk') app.locals.asset_path = '/assets/' - app.locals.applicationName = 'Temporary Accommodation' + app.locals.applicationName = 'Transitional Accommodation' // Cachebusting version string if (production) { diff --git a/server/views/applications/confirm.njk b/server/views/applications/confirm.njk index 38f9587f7..c67dcf85e 100644 --- a/server/views/applications/confirm.njk +++ b/server/views/applications/confirm.njk @@ -16,7 +16,7 @@ }) }}

What happens next?

-

We've sent your referral to your regional Homeless Prevention Team (HPT) for Temporary Accommodation.

+

We've sent your referral to your regional Homeless Prevention Team (HPT) for Transitional Accommodation.

The HPT will assess your referral within 3 to 5 working days. You’ll receive an email when a decision is made.

If you have any questions about your referral, contact your regional HPT.

What did you think of this service? (takes 30 seconds)

diff --git a/server/views/applications/index.njk b/server/views/applications/index.njk index 9ca3446ee..ad0fbdf8c 100644 --- a/server/views/applications/index.njk +++ b/server/views/applications/index.njk @@ -6,7 +6,7 @@ {% from "./_table.njk" import applicationsTable %} {% extends "../partials/layout.njk" %} -{% set pageTitle = "Temporary Accommodation (TA) referrals - " + applicationName %} +{% set pageTitle = "Transitional Accommodation (TA) referrals - " + applicationName %} {% set mainClasses = "app-container govuk-body" %} {% block content %} @@ -14,7 +14,7 @@
-

Temporary Accommodation (TA) referrals

+

Transitional Accommodation (TA) referrals

{{ govukTabs({ items: [ @@ -32,7 +32,7 @@

Start a new referral

-

Start a new referral for Temporary Accommodation below.

+

Start a new referral for Transitional Accommodation below.

{{ govukButton({ text: "Start now", diff --git a/server/views/applications/new.njk b/server/views/applications/new.njk index c29fc1836..925f59055 100644 --- a/server/views/applications/new.njk +++ b/server/views/applications/new.njk @@ -26,7 +26,7 @@ isPageHeading: true }, hint: { - text: "Enter the CRN for the person needing Temporary Accommodation" + text: "Enter the CRN for the person needing Transitional Accommodation" }, classes: "govuk-input--width-10", fieldName: "crn" diff --git a/server/views/applications/pages/accommodation-need/consent/consent-given.njk b/server/views/applications/pages/accommodation-need/consent/consent-given.njk index 61f00449f..dfe4a7eb3 100644 --- a/server/views/applications/pages/accommodation-need/consent/consent-given.njk +++ b/server/views/applications/pages/accommodation-need/consent/consent-given.njk @@ -10,7 +10,7 @@ {% set conditionalHtml %} {{ govukNotificationBanner({ - text: "Consent must be given before an application to Temporary Accommodation (TA) is made" + text: "Consent must be given before an application to Transitional Accommodation (TA) is made" }) }} {% endset %} diff --git a/server/views/applications/pages/assess-placement-risks-and-needs/behaviour-in-cas/previous-stays.njk b/server/views/applications/pages/assess-placement-risks-and-needs/behaviour-in-cas/previous-stays.njk index 6310cf30b..047620256 100644 --- a/server/views/applications/pages/assess-placement-risks-and-needs/behaviour-in-cas/previous-stays.njk +++ b/server/views/applications/pages/assess-placement-risks-and-needs/behaviour-in-cas/previous-stays.njk @@ -35,7 +35,7 @@
  • Approved Premises (AP or CAS1)
  • Bail Accommodation and Support Service (BASS or CAS2)
  • -
  • Temporary Accommodation (CAS3)
  • +
  • Transitional Accommodation (CAS3)

If you cannot find information about previous applications, select 'I don't know'.

diff --git a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/accommodation-sharing.njk b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/accommodation-sharing.njk index 1f71159d4..e375f5263 100644 --- a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/accommodation-sharing.njk +++ b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/accommodation-sharing.njk @@ -72,7 +72,7 @@ }, fetchContext()) }} {% set detailsHtml %} -

Temporary Accommodation (CAS3) placements may require a person to share accommodation with up to 4 other people on probation.

+

Transitional Accommodation (CAS3) placements may require a person to share accommodation with up to 4 other people on probation.

Consider whether:

  • the person had any cell sharing issues in custody
  • diff --git a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/cooperation.njk b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/cooperation.njk index c6bfe9c42..2e2257ebd 100644 --- a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/cooperation.njk +++ b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/cooperation.njk @@ -14,7 +14,7 @@
    -

    People placed into Temporary Accommodation are required to engage in weekly support sessions with the accommodation supplier support worker.

    +

    People placed into Transitional Accommodation are required to engage in weekly support sessions with the accommodation supplier support worker.

    Provide information relating to:

      diff --git a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/partials/_navigation.njk b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/partials/_navigation.njk index 454886982..3eae7bfcd 100644 --- a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/partials/_navigation.njk +++ b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/partials/_navigation.njk @@ -8,7 +8,7 @@ {{ task.title }} -

      Homelessness prevention teams (HPT) must be informed about identified risks and behaviours that may impact upon placement. This helps them to safely place prison leavers in Temporary Accommodation (CAS3).

      +

      Homelessness prevention teams (HPT) must be informed about identified risks and behaviours that may impact upon placement. This helps them to safely place prison leavers in Transitional Accommodation (CAS3).

      Use information from the sources listed below to answer the following questions:

      • OASys
      • diff --git a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/risk-management-plan.njk b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/risk-management-plan.njk index 95e4cbe0c..1ec65954f 100644 --- a/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/risk-management-plan.njk +++ b/server/views/applications/pages/assess-placement-risks-and-needs/placement-considerations/risk-management-plan.njk @@ -32,7 +32,7 @@

        Provide an outline of the risk management plan. - Summarise how risks relating to accommodation will be managed whilst the person is in Temporary Accommodation. + Summarise how risks relating to accommodation will be managed whilst the person is in Transitional Accommodation.

        {% endif %} diff --git a/server/views/applications/pages/required-referrals/accommodation-referral-details/crs-submitted.njk b/server/views/applications/pages/required-referrals/accommodation-referral-details/crs-submitted.njk index e5a6468f7..b61f369d9 100644 --- a/server/views/applications/pages/required-referrals/accommodation-referral-details/crs-submitted.njk +++ b/server/views/applications/pages/required-referrals/accommodation-referral-details/crs-submitted.njk @@ -10,7 +10,7 @@ {% set noHtml %} {% set html %} -

        CRS referral must be submitted before an application to Temporary Accommodation (TA) is made

        +

        CRS referral must be submitted before an application to Transitional Accommodation (TA) is made

        You can still submit your application

        {% endset %} diff --git a/server/views/applications/pages/required-referrals/accommodation-referral-details/dtr-submitted.njk b/server/views/applications/pages/required-referrals/accommodation-referral-details/dtr-submitted.njk index 9145ab2e1..0a87e3e62 100644 --- a/server/views/applications/pages/required-referrals/accommodation-referral-details/dtr-submitted.njk +++ b/server/views/applications/pages/required-referrals/accommodation-referral-details/dtr-submitted.njk @@ -10,7 +10,7 @@ {% set noHtml %} {% set html %} -

        Duty to Refer (DTR) / National Offender Pathway (NOP) must be submitted before application to Temporary Accommodation (TA) is made

        +

        Duty to Refer (DTR) / National Offender Pathway (NOP) must be submitted before application to Transitional Accommodation (TA) is made

        The person must also agree to sign an Accommodation Compact

        You can still submit your application

        {% endset %} diff --git a/server/views/applications/pages/required-referrals/accommodation-referral-details/other-accommodation-options.njk b/server/views/applications/pages/required-referrals/accommodation-referral-details/other-accommodation-options.njk index 4f519cb1f..f2873769b 100644 --- a/server/views/applications/pages/required-referrals/accommodation-referral-details/other-accommodation-options.njk +++ b/server/views/applications/pages/required-referrals/accommodation-referral-details/other-accommodation-options.njk @@ -17,7 +17,7 @@ {{ page.title }} -

        All accommodation services available through the person's local authority or HMPPS should be explored before an application to Temporary Accommodation (TA) is made.

        +

        All accommodation services available through the person's local authority or HMPPS should be explored before an application to Transitional Accommodation (TA) is made.

        {{ formPageRadios({ fieldName: "otherOptions", diff --git a/server/views/applications/pages/requirements-for-placement/food-allergies/food-allergies.njk b/server/views/applications/pages/requirements-for-placement/food-allergies/food-allergies.njk index f86b63c3b..1c5b2d89e 100644 --- a/server/views/applications/pages/requirements-for-placement/food-allergies/food-allergies.njk +++ b/server/views/applications/pages/requirements-for-placement/food-allergies/food-allergies.njk @@ -59,7 +59,7 @@ },fetchContext()) }} {% set detailsHtml %} -

        Temporary Accommodation placements provide a welcome pack that includes food.

        +

        Transitional Accommodation placements provide a welcome pack that includes food.

        The information provided will help make sure that any allergies or dietary requirements are catered for.

        {% endset %} diff --git a/server/views/applications/pages/requirements-for-placement/move-on-plan/move-on-plan.njk b/server/views/applications/pages/requirements-for-placement/move-on-plan/move-on-plan.njk index 5013e75d9..03fdfa0c9 100644 --- a/server/views/applications/pages/requirements-for-placement/move-on-plan/move-on-plan.njk +++ b/server/views/applications/pages/requirements-for-placement/move-on-plan/move-on-plan.njk @@ -17,7 +17,7 @@ }, fetchContext()) }} {% set detailsHtml %} -

        The move on plan should be discussed with the person before the Temporary Accommodation placement starts.

        +

        The move on plan should be discussed with the person before the Transitional Accommodation placement starts.

        Examples of move on planning could include:

        • any information about move on that is included as part of the person's sentence plan
        • diff --git a/server/views/applications/show.njk b/server/views/applications/show.njk index 89ee2b9be..72cd4cbcc 100644 --- a/server/views/applications/show.njk +++ b/server/views/applications/show.njk @@ -8,7 +8,7 @@ {% extends "../partials/layout.njk" %} -{% set pageTitle = "Make a referral for Temporary Accommodation - " + applicationName %} +{% set pageTitle = "Make a referral for Transitional Accommodation - " + applicationName %} {% block beforeContent %} {{ govukBackLink({ @@ -21,7 +21,7 @@

          - Make a referral for Temporary Accommodation + Make a referral for Transitional Accommodation

          {{ showErrorSummary(errorSummary) }} diff --git a/server/views/applications/start.njk b/server/views/applications/start.njk index 01d912e0a..5619b22c5 100644 --- a/server/views/applications/start.njk +++ b/server/views/applications/start.njk @@ -4,7 +4,7 @@ {% extends "../partials/layout.njk" %} -{% set pageTitle = "Make a referral for Temporary Accommodation - " + applicationName %} +{% set pageTitle = "Make a referral for Transitional Accommodation - " + applicationName %} {% set mainClasses = "app-container govuk-body" %} {% block beforeContent %} @@ -21,9 +21,9 @@
          -

          Make a referral for Temporary Accommodation

          +

          Make a referral for Transitional Accommodation

          -

          Temporary Accommodation (TA) is for people on probation who are at risk of homelessness on their first night of release.

          +

          Transitional Accommodation (TA) is for people on probation who are at risk of homelessness on their first night of release.

          This includes release from prison, an Approved Premises, or Bail Accommodation and Support Services.

          diff --git a/server/views/temporary-accommodation/bookings/selectAssessment.njk b/server/views/temporary-accommodation/bookings/selectAssessment.njk index 1aa6f4859..b36ea33ec 100644 --- a/server/views/temporary-accommodation/bookings/selectAssessment.njk +++ b/server/views/temporary-accommodation/bookings/selectAssessment.njk @@ -50,7 +50,7 @@ {% set bookingWithoutReferralGuidance %} {% set detailsHtml %}

          Choosing this option will impact the management information (MI) data for your region. Bookings will not be associated with a specific referral.

          -

          This option should only be used where a referral could not be submitted through the Temporary Accommodation service. For example, in Wales where the referral process is different.

          +

          This option should only be used where a referral could not be submitted through the Transitional Accommodation service. For example, in Wales where the referral process is different.

          {% endset %} {{ govukDetails({ @@ -60,10 +60,10 @@ {% endset %} {% if applyDisabled %} -

          Book this bedspace for a person who has been referred to Temporary Accommodation (formerly CAS3) through nDelius.

          +

          Book this bedspace for a person who has been referred to Transitional Accommodation (formerly CAS3) through nDelius.

          Digital referrals

          -

          We are working on creating a digital referral for the Temporary Accommodation service. Is it not currently available in your region.

          +

          We are working on creating a digital referral for the Transitional Accommodation service. Is it not currently available in your region.

          In the future you will be able to link this booking to a digital referral.

          @@ -72,7 +72,7 @@

          If this is expected you can continue to book this bedspace without linking a referral.

          No digital referrals found

          -

          If a referral has been submitted through the Temporary Accommodation service check the list of submitted referrals.

          +

          If a referral has been submitted through the Transitional Accommodation service check the list of submitted referrals.

          Referrals must be marked as ready to place before a placement is booked.

          diff --git a/server/views/temporary-accommodation/static/cookies.njk b/server/views/temporary-accommodation/static/cookies.njk index cd737ac53..787339fa5 100644 --- a/server/views/temporary-accommodation/static/cookies.njk +++ b/server/views/temporary-accommodation/static/cookies.njk @@ -9,11 +9,11 @@

          Cookies are small files saved on your phone, tablet or computer when you visit a website.

          -

          We use cookies to make the Temporary Accommodation service work and collect information about how you use our service.

          +

          We use cookies to make the Transitional Accommodation service work and collect information about how you use our service.

          Essential cookies

          - Essential cookies keep your information secure while you use the Temporary Accommodation service. We do not need to ask permission to use them. + Essential cookies keep your information secure while you use the Transitional Accommodation service. We do not need to ask permission to use them.

          diff --git a/server/views/temporary-accommodation/static/notAuthorised.njk b/server/views/temporary-accommodation/static/notAuthorised.njk index b99b9d5f8..9b68f4547 100644 --- a/server/views/temporary-accommodation/static/notAuthorised.njk +++ b/server/views/temporary-accommodation/static/notAuthorised.njk @@ -10,7 +10,7 @@ This may be because:
          • the CRN is not in your caseload
          • -
          • referrals through the Temporary Accommodation service are not currently available in your region
          • +
          • referrals through the Transitional Accommodation service are not currently available in your region

          diff --git a/server/views/temporary-accommodation/static/useNDelius.njk b/server/views/temporary-accommodation/static/useNDelius.njk index b33d80d0a..5b3aa516a 100644 --- a/server/views/temporary-accommodation/static/useNDelius.njk +++ b/server/views/temporary-accommodation/static/useNDelius.njk @@ -14,7 +14,7 @@

          - In the future you will be able to submit a digital referral for CAS3 through the Temporary Accommodation service. You will be notified when this service is available. + In the future you will be able to submit a digital referral for CAS3 through the Transitional Accommodation service. You will be notified when this service is available.

          Essential cookies