-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathen.js
More file actions
3245 lines (3244 loc) · 102 KB
/
Copy pathen.js
File metadata and controls
3245 lines (3244 loc) · 102 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { healthQuestions } from '../datasets/health-questions.js'
import {
RegistrationOutcome,
ReplyDecision,
ReplyRefusal,
ScreenOutcome,
SessionPresetName,
UploadStatus
} from '../enums.js'
/**
* @returns {import("i18n").LocaleCatalog}
*/
export const en = {
actions: {
label: 'Actions',
change: 'Change',
remove: 'Remove',
review: 'Review',
update: 'Update',
archive: 'Archive'
},
count: {
updates:
'{count, plural, =0 {No fields updated} one {1 field updated} other {# fields updated}}'
},
location: {
name: {
label: 'Name',
hint: 'The site name must be unique. It is shown to parents on the consent form and related emails. Existing sites for this school are: %s.'
},
addressLine1: {
label: 'Address line 1'
},
addressLine2: {
label: 'Address line 2'
},
addressLevel1: {
label: 'Town or city'
},
postalCode: {
label: 'Postcode'
}
},
defaultBatch: {
label: 'Default batch',
visuallyHiddenText:
'Change<span class="nhsuk-u-visually-hidden"> default batch for %s</span> ',
title: '{count, plural, one{Default batch} other{Default batches}}',
edit: {
title: 'Select a default batch for this session',
success: 'Default batch updated'
},
id: {
label: 'Default batch number',
title: 'Default to this batch for this session'
}
},
form: {
confirm: 'Save changes',
continue: 'Continue'
},
error: {
title: 'There is a problem'
},
account: {
'change-role': {
title: 'Select a role',
label: 'Change role'
},
'sign-in': {
title: 'Log in',
confirm: 'Log in'
},
'sign-out': {
title: 'Log out'
},
cis2: {
unlock: 'I need to unlock my smartcard',
method: {
label: 'Select your login method',
smartcard: 'Smartcard',
hello: 'Windows Hello',
key: 'Security key',
ipad: 'iPad app',
authenticator: 'Authenticator app',
nhsMail: 'NHS.net Connect (formerly NHSmail)',
passkey: 'Passkey (including Windows Hello and Security key)'
},
terms: {
heading: 'Agree to our terms of use',
description:
'By continuing, you agree to our [terms and conditions](https://digital.nhs.uk/services/care-identity-service/registration-authority-users/registration-authority-help/privacy-notice#terms-and-conditions)'
},
remember: {
label: 'Remember my selection',
hint: 'Do not check this box if you are on a shared computer'
}
},
permissions: {
org: {
title: 'Your team is not using this service yet',
description: '{{ra}} is not currently set up to use Mavis.'
},
user: {
title: 'You do not have permission to use this service'
}
}
},
batch: {
new: {
label: 'Add a new batch',
ariaLabel: 'Add a new %s batch',
title: 'Add batch',
confirm: 'Add batch',
success: 'Batch {{batch.id}} added'
},
edit: {
title: 'Edit batch {{batch.id}}',
confirm: 'Save changes',
success: 'Batch {{batch.id}} updated'
},
action: {
title: 'Are you sure you want to %s this batch?',
description: 'This cannot be undone.',
cancel: 'No, return to vaccines',
confirm: 'Yes, %s this batch'
},
archive: {
success: 'Batch {{batch.id}} archived'
},
createdAt: {
label: 'Entered date'
},
updatedAt: {
label: 'Updated date'
},
expiry: {
label: 'Expiry date',
hint: 'For example, 27 10 2025'
},
id: {
label: 'Batch number'
}
},
clinic: {
new: {
title: 'Add a new clinic',
confirm: 'Add clinic',
success: '{{clinic.name}} created'
},
edit: {
label: 'Edit',
title: 'Edit clinic',
confirm: 'Save changes',
success: '{{clinic.name}} updated'
},
action: {
title: 'Are you sure you want to %s this clinic?',
description: 'This cannot be undone.',
confirm: 'Yes, %s this clinic',
cancel: 'No, return to clinics'
},
delete: {
label: 'Delete',
success: 'Clinic deleted'
},
name: {
label: 'Name'
},
address: {
label: 'Address'
},
count: '{count, plural, =0 {No clinics} one {1 clinic} other {# clinics}}'
},
child: {
label: 'Child',
nhsn: {
label: 'NHS number'
},
fullName: {
label: 'Full name'
},
preferredFirstName: {
label: 'Preferred first name'
},
preferredLastName: {
label: 'Preferred last name'
},
preferredName: {
label: 'Preferred name'
},
fullAndPreferredNames: {
label: 'Name'
},
dob: {
label: 'Date of birth'
},
dobWithAge: {
label: 'Date of birth'
},
gender: {
label: 'Gender'
},
ethnicity: {
label: 'Ethnicity'
},
adjustments: {
label: 'Reasonable adjustments'
},
impairments: {
label: 'Impairments'
},
address: {
label: 'Home address'
},
postalCode: {
label: 'Postcode'
},
school: {
label: 'School'
},
gpSurgery: {
label: 'GP surgery'
},
parent: {
label: 'Parent'
}
},
clinicAppointment: {
label: 'Appointment details',
show: {
title: 'Clinic appointment for %s'
},
nameAndAge: {
label: 'Child'
},
location: {
label: 'Clinic location'
},
date: {
label: 'Date'
},
dateAndTime: {
label: 'Date and time'
},
timeSlot: {
label: 'Time'
},
vaccinations: {
label: 'Vaccinations'
}
},
clinicBooking: {
start: {
title: {
[SessionPresetName.Flu]:
'Book an appointment for your child’s flu vaccination',
[SessionPresetName.Doubles]:
'Book an appointment for the MenACWY and Td/IPV vaccinations',
[SessionPresetName.HPV]: 'Book an appointment for the HPV vaccination',
[SessionPresetName.MMR]:
'Book an appointment for an MMR or MMR(V) catch-up vaccination'
},
primaryProgrammeInSentence: {
[SessionPresetName.Flu]: 'flu',
[SessionPresetName.Doubles]: 'MenACWY and Td/IPV',
[SessionPresetName.HPV]: 'HPV',
[SessionPresetName.MMR]: 'MMR or MMR(V)'
},
confirm: {
title: 'Book an appointment',
buttonText: 'Start now'
},
otherMethods: {
title: 'Other ways to book an appointment',
description:
'The quickest way to book an appointment is online, using this service. This will take less than 5 minutes per child.\n\nIf you cannot use the service, you can book an appointment by phoning %s.'
}
},
childCount: {
title: 'How many children do you need to book appointments for?',
description:
'If you have more than one child invited to a clinic, you can book appointments for all of them.',
children: {
label: 'Number of children',
hint: 'For example, if you have twins needing vaccination, enter 2'
}
},
nextChildButtonText: 'Continue to next child',
appointment: {
caption: 'Appointment for %s'
},
child: {
title: {
first: 'What is your child’s name?',
next: 'What is your next child’s name?'
},
caption: 'Appointment for your %s child',
summary: 'About your child',
description:
'Give the name on your child’s birth certificate. If it’s changed, give the name held by your child’s GP.',
firstName: {
label: 'First name',
hint: 'Or given name'
},
lastName: {
label: 'Last name',
hint: 'Or family name'
}
},
dob: {
title: 'What is %s’s date of birth?',
hint: 'For example, 27 3 2012'
},
address: {
title: 'What is %s’s home address?',
hint: 'Give the child’s primary address. We use this to confirm their identity.'
},
addressSelection: {
title: 'What is %s’s home address?',
hint: 'Select the child’s primary address. We use this to confirm their identity.'
},
parentalRelationship: {
title: 'What is your relationship to %s?',
hasParentalResponsibility: {
label: 'Do you have parental responsibility?',
hint: 'This means you have legal rights and duties relating to the child'
},
relationshipOther: {
label: 'Relationship to the child'
},
relationship: {
label: 'Relationship to child'
}
},
parentalResponsibility: {
title: 'You will be unable to give consent',
description:
'To give or refuse consent for a child’s vaccination, you need to have parental responsibility.\n\nIf you have any questions, please contact the local health organisation by calling {{team.tel}}, or email {{team.email}}.'
},
vaccinationChoice: {
title: 'Do you agree to %s having the following vaccinations?',
vaccinations: {
label: 'Select the vaccinations that you agree to %s having',
hint: 'Each vaccine is given separately'
}
},
extraTime: {
title: 'Does %s need extra time for their vaccination?',
hint: 'For example, they need longer than usual because they’re anxious about injections',
reason: {
label: 'Reason for needing extra time'
}
},
preferredLocation: {
title: 'Find a clinic near where you’d like %s’s appointment',
location: {
label: 'Preferred clinic location',
hint: 'Enter a town, city, or postcode'
}
},
preferredLocationMatches: {
title: 'We found 3 places that match “Newcastle”',
hits: {
label: 'Choose one of the following:'
},
tryAgain: 'None of these — try another town, city, or postcode'
},
clinicLocation: {
title: 'Choose a clinic location for %s',
hint: 'The following clinics are ordered by distance from NE12 7ET'
},
clinicDate: {
title: 'Choose a clinic date for %s',
location:
'Location: Killingworth Library, White Swan Centre, Killingworth, NE12 6SS',
date: {
label: 'Clinic date'
}
},
timeRange: {
title: 'Choose a time range for %s’s appointment',
clinicSummary: {
title: 'Clinic'
},
ranges: {
label: 'Available time ranges'
},
range: {
slotsAvailable:
'{count, plural, =0 {No slots remaining} one {1 slot remaining} other {{count} slots remaining}}'
}
},
time: {
title: 'Choose an appointment time for %s',
clinicSummary: {
title: 'Clinic'
},
times: {
label: 'Available appointment times'
}
},
parent: {
title: 'About you',
fullName: {
label: 'Full name'
},
notify: {
label: 'Send notifications'
},
email: {
label: 'Email address',
hint: 'We will use this to send you confirmation messages'
},
tel: {
label: 'Phone number',
hint: 'Someone from the vaccinations team might call you if they have questions'
},
sms: {
label: 'Tick this box if you’d like to get updates by text message'
},
contactPreference: {
title: 'If we need to contact you',
label: 'Do you have any communication needs?',
yes: 'Yes',
no: 'No',
description:
'Let us know if you have any communication needs you’d like us to be aware of — for example, a hearing or visual impairment.'
},
contactPreferenceDetails: {
label: 'Give details'
},
relationshipOther: {
label: 'Relationship to the child'
},
hasParentalResponsibility: {
label: 'Do you have parental responsibility?',
hint: 'This means you have legal rights and duties relating to the child'
}
},
offerHealthQuestions: {
title: 'We’ve got your vaccination booking request',
bookingReference: 'Your booking reference number is: %s',
beforeYouGo:
'Before you finish using the service, we’d like to ask some questions about your child’s health.\n\nThese questions help us make sure it’s safe to vaccinate. You can answer these questions at the clinic, but responding now will save time on the day.',
label: 'Answer the health questions?',
yes: 'Yes, answer the health questions now',
no: 'No, I’ll do it later'
},
healthAnswers: {
label: 'Answers to health questions',
caption: 'Health questions for %s',
yes: 'Yes',
no: 'No',
details: 'Give details'
},
'check-answers': {
confirm: 'Confirm',
title: 'Check and confirm'
},
confirmation: {
title: 'Booking complete',
subtitle: '<p>Your reference number:<br><strong>%s</strong></p>'
},
show: {
title: 'Manage your booking',
introduction:
'Check your appointment details and make changes where needed.',
appointment: {
title: 'Appointment %s',
change: {
label: 'Change appointment'
},
cancel: {
label: 'Cancel appointment'
}
},
parent: {
title: 'Your details',
change: {
label: 'Change my details'
}
},
referenceNumber: 'Your booking reference number is: %s'
}
},
consent: {
label: 'Consent response',
title: 'Review consent responses',
count:
'{count, plural, =0 {No unmatched consent responses} one {1 unmatched consent response} other {# unmatched consent responses}}',
results:
'{count, plural, =0 {No responses matching your search criteria were found} one {Showing <b>{from}</b> to <b>{to}</b> of <b>{count}</b> response} other {Showing <b>{from}</b> to <b>{to}</b> of <b>{count}</b> responses}}',
list: {
label: 'Unmatched responses',
title: 'Unmatched consent responses',
description:
'Review incoming consent responses that can’t be automatically matched'
},
show: {
title: 'Consent response from %s'
},
match: {
label: 'Match',
title: 'Search for a child record to match with {{child.fullName}}',
caption: 'Consent response from {{parent.formatted.fullName}}'
},
link: {
title: 'Link consent response with child record?',
caption: 'Consent response from {{parent.fullName}}',
summary: 'Compare child details',
confirm: 'Link response with record',
success:
'Consent response from {{consent.parent.fullName}} linked to [{{patient.fullName}}]({{patient.uri}})’s record'
},
add: {
label: 'Create new record',
title: 'Create a new child record from this consent response?',
caption: 'Consent response from {{parent.fullName}}',
confirm: 'Create a new record from response',
success:
'[{{patient.fullName}}]({{patient.uri}})’s record created from a consent response from {{consent.parent.fullName}}'
},
invalidate: {
label: 'Archive',
caption: 'Consent response from {{consent.fullName}}',
title: 'Archive response',
description:
'The unmatched response will be hidden. This cannot be undone.',
confirm: 'Archive response',
success: 'Consent response from {{consent.fullName}} archived'
},
start: {
title: {
[SessionPresetName.Flu]:
'Give or refuse consent for your child’s flu vaccination',
[SessionPresetName.Doubles]:
'Give or refuse consent for the MenACWY and Td/IPV vaccinations',
[SessionPresetName.HPV]:
'Give or refuse consent for the HPV vaccination',
[SessionPresetName.MMR]:
'Give or refuse consent for an MMR catch-up vaccination'
},
more: `Find out more about the {{programme.vaccineName.sentenceCase}}`,
confirm: {
title: 'Give or refuse consent',
buttonText: 'Start now'
},
otherMethods: {
title: 'Other ways to give consent',
description:
'The quickest way to give or refuse consent is online, using this service. This will take less than 5 minutes.\n\nIf you cannot use the service, you can respond over the phone using the number given in the consent request you got by email.'
}
},
closed: {
title: 'You can no longer submit a consent response',
description:
'The deadline for responding has passed.\n\n## You can still book a clinic appointment\n\nContact {{team.email}} to book a clinic appointment.'
},
'parental-responsibility': {
title: 'You cannot give or refuse consent through this service',
description:
'To give or refuse consent for a child’s vaccination, you need to have parental responsibility.\n\nIf you have any questions, please contact the local health organisation by calling {{team.tel}}, or email {{team.email}}.'
},
new: {
'check-answers': {
confirm: 'Confirm',
title: 'Check and confirm'
}
},
createdAt: {
label: 'Response date'
},
child: {
title: 'What is your child’s name?',
label: 'Child',
summary: 'About your child',
description:
'Give the name on your child’s birth certificate. If it’s changed, give the name held by your child’s GP.',
firstName: {
label: 'First name',
hint: 'Or given name'
},
lastName: {
label: 'Last name',
hint: 'Or family name'
},
hasPreferredName: {
label: 'Do they use a different name in school?',
yes: 'Yes',
no: 'No'
},
preferredFirstName: {
label: 'Preferred first name'
},
preferredLastName: {
label: 'Preferred last name'
},
fullAndPreferredNames: {
label: 'Child’s name'
},
gpSurgery: {
label: 'Name of GP surgery'
},
dob: {
title: 'What is your child’s date of birth?',
label: 'Child’s date of birth',
hint: 'For example, 27 3 2012'
},
ethnicGroup: {
label: 'Ethnic group',
title: 'What is your child’s ethnic group?'
},
ethnicBackground: {
label: 'Ethnic group',
title:
'Which of the following best describes your child’s %s background?',
other: 'Any other %s background',
preferNotToSay: 'Prefer not to say'
},
ethnicBackgroundOther: {
label: 'How would you describe your child’s background? (optional)'
},
adjustments: {
label: 'Reasonable adjustments',
title:
'Will your child need any of the following adjustments during their vaccination?',
guideDog: {
label: 'A guide dog'
},
distraction: {
label: 'A distraction while having the vaccination'
},
extendedAppointment: {
label: 'An extended appointment'
},
firstAppointment: {
label: 'The first appointment'
},
lastAppointment: {
label: 'The last appointment'
},
privacy: {
label: 'A private space',
hint: 'Most vaccinations are held in large, open spaces'
},
homeVisit: {
label: 'A home visit'
},
other: {
label: 'Other'
}
},
adjustmentsOther: {
label: 'Other reasonable adjustment',
title: 'Give details'
},
impairments: {
label: 'Impairments',
title: 'Does your child have any of the following impairments?',
vision: {
hint: 'For example, blindness or partial sight'
},
hearing: {
hint: 'For example, deafness or partial hearing'
},
mobility: {
hint: 'For example, difficulty walking or climbing stairs'
},
memory: {
hint: 'For example, difficulty remembering or understanding information'
},
mentalHealth: {
hint: 'For example, anxiety'
},
communicative: {
hint: 'For example, related to autism or ADHD (attention deficit hyperactivity disorder)'
}
},
impairmentsOther: {
label: 'Other impairment',
title: 'Give details'
},
'confirm-school': {
title: 'Confirm your child’s school',
label: 'Is this their school?',
yes: 'Yes, they go to this school',
no: 'No, they go to a different school'
},
'home-educated': {
title: 'Is your child home-educated?',
yes: 'Yes',
no: 'No, they go to a school'
},
school: {
title: 'What school does your child go to?',
label: 'Select a school',
description:
'You can only use this service if your child’s school is listed here. If it’s not, contact {{team.email}}. If you’ve moved recently, it’s important to mention this.'
},
address: {
title: 'Home address',
label: 'Child’s home address',
hint: 'Give the child’s primary address. We use this to confirm their identity.'
}
},
ethnicity: {
label: 'Do you want to answer the ethnicity questions?',
hint: 'These questions are optional. Your answers will not affect your consent response.',
title: 'We have received your consent response',
description:
'Before you finish using the service, we’d like to ask some questions about your child’s ethnicity.\n\nWe ask about ethnicity so that when we look at the number of vaccinations received, we can better understand the challenges faced by specific groups. We can then target the support we offer.',
yes: {
label: 'Yes, answer the ethnicity questions (takes less than a minute)'
},
no: {
label: 'No, skip the ethnicity questions'
}
},
parent: {
summary: 'About you',
title: 'About you',
label: 'Parent',
fullName: {
label: 'Full name'
},
relationship: {
label: 'Relationship to child'
},
notify: {
label: 'Send notifications'
},
email: {
label: 'Email address',
hint: 'We will use this to send you confirmation messages'
},
tel: {
label: 'Phone number',
hint: 'Someone from the vaccinations team might call you if they have questions'
},
sms: {
label: "Tick this box if you'd like to get updates by text message"
},
contactPreference: {
title: 'If we need to contact you',
label: 'Do you have any communication needs?',
yes: 'Yes',
no: 'No',
description:
'Let us know if you have any communication needs you’d like us to be aware of – for example, a hearing or visual impairment.'
},
contactPreferenceDetails: {
label: 'Give details'
},
relationshipOther: {
label: 'Relationship to the child'
},
hasParentalResponsibility: {
label: 'Do you have parental responsibility?',
hint: 'This means you have legal rights and duties relating to the child'
}
},
programme: {
label: 'Programme'
},
decision: {
summary: 'Consent for the {{session.vaccinationNames.sentenceCase}}',
title:
'Do you agree to your child having the {{session.vaccinationNames.sentenceCase}} in school?',
label: 'Decision',
yes: {
label: 'Yes, I agree'
},
both: {
label: 'Yes, I agree to them having both vaccinations'
},
one: {
label: 'I agree to them having one of the vaccinations'
},
nasal: {
label: 'Yes, I agree to them having the nasal spray vaccine',
hint: 'This is the recommended option and gives the best protection against flu'
},
injection: {
label: 'Yes, I agree to the alternative flu injection',
hint: 'This is suitable for children who do not use gelatine products, or if they cannot have the nasal spray vaccine for medical reasons'
},
alreadyVaccinated: {
label: 'My child has already had both doses of the MMR vaccine',
hint: 'Children need 2 doses of the MMR vaccine to be fully protected'
},
no: {
label: 'No',
hint: 'If you do not agree to the vaccination, you’ll get a chance to tell us why'
}
},
decisionStatus: {
label: 'Response'
},
alternative: {
flu: {
label: 'Consent also given for injected vaccine?',
title:
'If your child cannot have the nasal spray, do you agree to them having the injected vaccine instead?',
hint: 'We may decide the nasal spray vaccine is not suitable. In this case, we may offer the injected vaccine instead.',
yes: {
label: 'Yes'
},
no: {
label: 'No'
}
},
mmr: {
label: 'Consent given for gelatine-free vaccine only?',
title: 'Do you want your child to have a vaccine without gelatine?',
hint: 'One type of MMR vaccine contains gelatine from pigs. An alternative MMR vaccine is available that does not contain gelatine.',
yes: {
label:
'I want my child to have the vaccine that does not contain gelatine'
},
no: {
label: 'My child can have either type of vaccine'
}
}
},
consultation: {
title:
'Would you like a member of the team to contact you to discuss alternative options?',
hint: 'For example, it may be possible to vaccinate your child in a community clinic.',
label: 'Discuss options',
yes: 'Yes, I would like someone to contact me',
no: 'No'
},
refusalReason: {
title:
'Please tell us why you do not agree to your child having the {{session.vaccinationNames.sentenceCase}} in school',
label: 'Refusal reason',
alreadyVaccinated: {
one: ReplyRefusal.AlreadyVaccinated,
other: ReplyRefusal.AlreadyVaccinated.replace('Vaccine', 'Vaccines')
},
alreadyVaccinatedMMR:
'My child has already had both doses of the MMR vaccine',
gettingElsewhere: {
one: ReplyRefusal.GettingElsewhere,
other: ReplyRefusal.GettingElsewhere.replace('Vaccine', 'Vaccines')
}
},
refusalReasonDetails: {
label: 'Refusal details',
title: {
[ReplyRefusal.AlreadyVaccinated]:
'When and where did your child get their vaccination?',
[ReplyRefusal.GettingElsewhere]:
'When and where will your child get their vaccination?',
[ReplyRefusal.Medical]:
'What medical reasons prevent your child from being vaccinated?'
}
},
firstDose: {
label: 'Details of 1st MMR dose',
title: 'When and where did your child get their 1st MMR dose?',
description: 'The 1st dose is usually offered at 12 months',
country: {
title: 'Which country was the 1st dose of the MMR vaccine given in?',
label: 'Country'
},
createdAt: {
title: 'When was the 1st dose given?',
label: 'Date of vaccination'
},
scheduled: {
title: 'Was the 1st dose given when your child was 12 months old?',
hint: 'This is usually the child’s age when the 1st dose is offered'
}
},
secondDose: {
label: 'Details of 2nd MMR dose',
title: 'When and where did your child get their 2nd MMR dose?',
description:
'The 2nd dose is usually offered when children are 3 years and 4 months old',
country: {
title: 'Which country was the 2nd dose of the MMR vaccine given in?',
label: 'Country'
},
createdAt: {
title: 'When was the 2nd dose given?',
label: 'Date of vaccination'
},
scheduled: {
title:
'Was the 2nd dose given when your child was 3 years and 4 months old?',
hint: 'This is usually the child’s age when the 2nd dose is offered'
}
},
previousDose: {
country: {
label: 'Country',
england: 'England',
scotland: 'Scotland',
wales: 'Wales',
ni: 'Northern Ireland',
other: 'Another country outside the UK'
},
countryOther: {
title: 'Which country was the vaccination given in?'
},
createdAt: {
label: 'Date',
hint: 'If you do not know the exact date of the vaccination, leave the day field empty and enter your best guess for the month'
},
scheduled: {
yes: 'Yes',
no: 'No'
}
},
healthAnswers: {
label: 'Answers to health questions',
yes: 'Yes',
no: 'No',
details: 'Give details'
},
note: {
label: 'Notes'
},
summary: {
label: 'Response'
},
confirmation: {
title: {
[ReplyDecision.AlreadyVaccinated]: 'Thank you',
[ReplyDecision.Given]: 'Consent confirmed',
[ReplyDecision.OnlyAlternativeInjection]:
'Consent for the flu injection vaccination confirmed',
[ReplyDecision.OnlyMenACWY]:
'Consent for the MenACWY vaccination confirmed',
[ReplyDecision.OnlyTdIPV]:
'Consent for the Td/IPV vaccination confirmed',
[ReplyDecision.Declined]: 'Follow up requested',
[ReplyDecision.Refused]: 'Refusal confirmed'
},
text: {
[ReplyDecision.AlreadyVaccinated]:
'You’ve told us that {{consent.child.fullName}} has had both doses of the MMR vaccine.\n\nWe’ll update our records so you no longer get consent requests for MMR catch-up vaccinations.',
[ReplyDecision.Given]:
'{{consent.child.fullName}} is due to get the {{session.vaccinationNames.sentenceCase}} at school on {{session.formatted.nextDate}}',
[ReplyDecision.OnlyAlternativeInjection]:
'{{consent.child.fullName}} is due to get the flu injection at school on {{session.formatted.nextDate}}',
[ReplyDecision.OnlyMenACWY]:
'{{consent.child.fullName}} is due to get the MenACWY vaccination at school on {{session.formatted.nextDate}}',
[ReplyDecision.OnlyTdIPV]:
'{{consent.child.fullName}} is due to get the Td/IPV vaccination at school on {{session.formatted.nextDate}}',
[ReplyDecision.Declined]:
'A member of the team will contact you soon to discuss your options.',
[ReplyDecision.Refused]:
'You’ve told us that you do not want {{consent.child.fullName}} to get the {{session.vaccinationNames.sentenceCase}} at school'
},
triage: {
// TODO: Parent may have given consent for two vaccinations for doubles
// so text should say either ‘vaccination is’ or ‘vaccinations are’
[ReplyDecision.Given]:
'As you answered ‘yes’ to one or more of the health questions, we need to check the {{session.vaccinationNames.sentenceCase}} is suitable for {{consent.child.fullName}}. We’ll review your answers and get in touch again soon.',
[ReplyDecision.OnlyAlternativeInjection]:
'As you answered ‘yes’ to one or more of the health questions, we need to check the {{session.vaccinationNames.sentenceCase}} is suitable for {{consent.child.fullName}}. We’ll review your answers and get in touch again soon.',
[ReplyDecision.OnlyMenACWY]:
'As you answered ‘yes’ to one or more of the health questions, we need to check the MenACWY vaccination is suitable for {{consent.child.fullName}}. We’ll review your answers and get in touch again soon.',
[ReplyDecision.OnlyTdIPV]:
'As you answered ‘yes’ to one or more of the health questions, we need to check the Td/IPV vaccination is suitable for {{consent.child.fullName}}. We’ll review your answers and get in touch again soon.'
},
description: 'We’ve sent a confirmation to <{{consent.parent.email}}>.'
},
actions: {
label: 'Actions'
}
},
download: {
label: 'Downloads',
list: {
label: 'Downloads',
title: 'Downloads',
results: 'All downloads'
},
search: {
label: 'Find download'
},
results:
'{count, plural, =0 {No downloads matching your search criteria were found} one {Showing <b>{from}</b> to <b>{to}</b> of <b>{count}</b> download} other {Showing <b>{from}</b> to <b>{to}</b> of <b>{count}</b> downloads}}',
new: {
label: 'Download vaccination report',
confirm: 'Download vaccination data',
success:
'It will take some time to prepare the records. You’ll be able to download them soon in [Downloads](/downloads)'
},
createdAt: {
label: 'Requested at'
},
createdBy: {
label: 'Requested by'
},