From 87d15805a2484f18f74b6c1c823f1020566529c9 Mon Sep 17 00:00:00 2001 From: Mohamed amaan Date: Fri, 7 Mar 2025 00:11:18 +0530 Subject: [PATCH] expired to Deceased --- public/locale/en.json | 2 +- src/pages/Encounters/EncounterList.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locale/en.json b/public/locale/en.json index 301c1bd01b3..124405bef50 100644 --- a/public/locale/en.json +++ b/public/locale/en.json @@ -753,6 +753,7 @@ "date_range": "Date Range", "dates_and_identifiers": "Dates & Identifiers", "day": "Day", + "deceased": "Deceased", "deceased_disclaimer": "Please provide the date and time of death for record-keeping purposes. This information is handled with utmost sensitivity and respect.", "deceased_status": "Deceased Status", "delete": "Delete", @@ -1084,7 +1085,6 @@ "expected_burn_rate": "Expected Burn Rate", "expiration_date": "Expiration Date", "expiration_date_must_be_after_manufacture_date": "Expiration date must be after manufacture date", - "expired": "Expired", "expires": "Expires", "expires_on": "Expires On", "export": "Export", diff --git a/src/pages/Encounters/EncounterList.tsx b/src/pages/Encounters/EncounterList.tsx index 3fa69c343e8..42b748dff1b 100644 --- a/src/pages/Encounters/EncounterList.tsx +++ b/src/pages/Encounters/EncounterList.tsx @@ -706,7 +706,7 @@ export function EncounterList({ {encounter.patient.death_datetime && (

- {t("expired")} + {t("deceased")}

)}