Skip to content

Commit 816a831

Browse files
committed
Two label changes after clinical feedback - encounters, rather than procedures. Out of schedule, rather than ignored doses in the vaccination record UI
1 parent 6f422a8 commit 816a831

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/locales/en.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1462,9 +1462,9 @@ export const en = {
14621462
count:
14631463
'{count, plural, =0 {No vaccination record} one {Vaccination record} other {# vaccination records}}'
14641464
},
1465-
procedures: {
1465+
encounters: {
14661466
count:
1467-
'{count, plural, =0 {No procedures recorded} one {Procedure} other {# procedures}}'
1467+
'{count, plural, =0 {No encounters recorded} one {Encounter} other {# encounters}}'
14681468
},
14691469
vaccinationRecord: {
14701470
label: 'Vaccination record',
@@ -1474,7 +1474,7 @@ export const en = {
14741474
number: 'Dose {sequence}'
14751475
},
14761476
ignored: {
1477-
label: 'Ignored'
1477+
label: 'Out of schedule'
14781478
},
14791479
eligibleFrom: 'Eligible from {date}'
14801480
},

app/views/patient/programme.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
{% include "patient/_vaccination-record.njk" %}
3030

3131
{% call card({
32-
heading: __mf("patientProgramme.procedures.count", {
32+
heading: __mf("patientProgramme.encounters.count", {
3333
count: patientProgramme.vaccinationOutcomes.length
3434
}),
3535
headingLevel: 3
@@ -58,7 +58,7 @@
5858
{% endfor %}
5959

6060
{{ table({
61-
id: "procedures",
61+
id: "encounters",
6262
responsive: true,
6363
head: [
6464
{ text: __("vaccination.createdAt.label") },

0 commit comments

Comments
 (0)