diff --git a/app/locales/en.js b/app/locales/en.js index a28bf2b3a..629a316a8 100644 --- a/app/locales/en.js +++ b/app/locales/en.js @@ -1683,7 +1683,13 @@ export const en = { caption: 'Consent response from {{reply.fullName}}', title: 'Follow up refusal', decision: { - label: 'Does their original decision still stand?' + label: 'Has their decision changed after follow-up?', + consent: { + label: 'Yes – they now consent to the vaccination' + }, + refuse: { + label: 'No – they still refuse the vaccination' + } } }, invalidate: { diff --git a/app/views/reply/form/follow-up.njk b/app/views/reply/form/follow-up.njk index 9867d97d0..759f737d8 100644 --- a/app/views/reply/form/follow-up.njk +++ b/app/views/reply/form/follow-up.njk @@ -40,7 +40,13 @@ text: __("reply.follow-up.decision.label") } }, - items: getBooleanItems(), + items: [{ + text: __("reply.follow-up.decision.consent.label"), + value: false + }, { + text: __("reply.follow-up.decision.refuse.label"), + value: true + }], decorate: "decision" }) }} {% endblock %}