Skip to content

Commit 325e41a

Browse files
Use ‘home-educated’ instead of ‘home-schooled’
1 parent 4ca208b commit 325e41a

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

app/datasets/schools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default {
1919
'999999': {
2020
id: '999999',
2121
urn: '999999',
22-
name: 'Home-schooled',
22+
name: 'Home-educated',
2323
yearGroups: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13],
2424
team_id: '001',
2525
presetNames

app/generators/child.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function generateChild() {
122122
school_id = faker.helpers.arrayElement(secondarySchools).id
123123
}
124124

125-
// Add examples of children who are home-schooled or at an unknown school
125+
// Add examples of children who are home-educated or at an unknown school
126126
if (faker.datatype.boolean(0.01)) {
127127
school_id = faker.helpers.arrayElement(['888888', '999999'])
128128
}

app/locales/en.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ export const en = {
425425
yes: 'Yes, they go to this school',
426426
no: 'No, they go to a different school'
427427
},
428-
'home-schooled': {
429-
title: 'Is your child home-schooled?',
428+
'home-educated': {
429+
title: 'Is your child home-educated?',
430430
yes: 'Yes',
431431
no: 'No, they go to a school'
432432
},

app/models/download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export class Download {
120120
case this.type === DownloadType.Session && this.session_id:
121121
return `Offline spreadsheet for ${this.session.name}`
122122
case this.type === DownloadType.Session:
123-
return `Offline spreadsheet for no known school (including home-schooled children)`
123+
return `Offline spreadsheet for no known school (including home-educated children)`
124124
default:
125125
return 'Download'
126126
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "_layouts/form.njk" %}
22

3-
{% set title = __("consent.child.home-schooled.title") %}
3+
{% set title = __("consent.child.home-educated.title") %}
44

55
{% block form %}
66
{{ radios({
@@ -13,12 +13,12 @@
1313
}
1414
},
1515
items: [{
16-
text: __("consent.child.home-schooled.yes"),
16+
text: __("consent.child.home-educated.yes"),
1717
value: "yes"
1818
}, {
19-
text: __("consent.child.home-schooled.no"),
19+
text: __("consent.child.home-educated.no"),
2020
value: "no"
2121
}],
22-
decorate: "consent.child.homeSchooled"
22+
decorate: "consent.child.homeEducated"
2323
}) }}
2424
{% endblock %}

app/views/upload/_template-format-cohort.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Make sure the CSV you upload uses the following columns:
88
| `CHILD_LAST_NAME` | **Required** |
99
| `CHILD_DATE_OF_BIRTH` | **Required** |
1010
| `CHILD_GENDER` | **Required**, must be <i>Male</i>, <i>Female</i>, <i>Not known</i> or <i>Not specified</i> |
11-
| `CHILD_SCHOOL_URN` | **Required**, must be 6 digits and numeric. Use <i>888888</i> for school unknown and <i>999999</i> for homeschooled. |
11+
| `CHILD_SCHOOL_URN` | **Required**, must be 6 digits and numeric. Use <i>888888</i> for school unknown and <i>999999</i> for home-educated. |
1212
| `CHILD_NHS_NUMBER` | Optional, must be 10 digits and numeric |
1313
| `CHILD_ADDRESS_LINE_1` | Optional |
1414
| `CHILD_ADDRESS_LINE_2` | Optional |

app/views/upload/_template-format-report.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Make sure the CSV you upload uses the following columns:
55
| Column name | Notes |
66
| ----------- | ----- |
77
| `ORGANISATION_CODE` | **Required**, must be a valid [ODS code](https://odsportal.digital.nhs.uk/) |
8-
| `school_id` | **Required**, must be 6 digits and numeric. Use <i>888888</i> for school unknown and <i>999999</i> for homeschooled. |
8+
| `school_id` | **Required**, must be 6 digits and numeric. Use <i>888888</i> for school unknown and <i>999999</i> for home-educated. |
99
| `SCHOOL_NAME` | Required if `school_id` is <i>888888</i> |
1010
| `NHS_NUMBER` | Optional, must be 10 digits and numeric |
1111
| `PERSON_FORENAME` | **Required** |

lib/create-data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ for (let session of Object.values(context.sessions)) {
266266
// Add patient to session
267267
patient.addToSession(patientSession.session)
268268

269-
// 2️⃣🅱️ INVITE home-schooled/school unknown patient to clinic
269+
// 2️⃣🅱️ INVITE home-educated/school unknown patient to clinic
270270
patient.requestConsent(patientSession)
271271

272272
context.patientSessions[patientSession.uuid] = patientSession

0 commit comments

Comments
 (0)