diff --git a/src/Components/Facility/PatientNoteCard.tsx b/src/Components/Facility/PatientNoteCard.tsx index 9ddfbc009e6..80443ad02ae 100644 --- a/src/Components/Facility/PatientNoteCard.tsx +++ b/src/Components/Facility/PatientNoteCard.tsx @@ -135,21 +135,32 @@ const PatientNoteCard = ({ note.created_by_object.id === authUser.id && !isEditing && ( { setIsEditing(true); }} > + + {t("edit")} + )} { setReplyTo && setReplyTo(note); }} > - + + + {t("reply")} + diff --git a/src/Components/Facility/PatientNotesSlideover.tsx b/src/Components/Facility/PatientNotesSlideover.tsx index 52f99aee763..fe716950aa9 100644 --- a/src/Components/Facility/PatientNotesSlideover.tsx +++ b/src/Components/Facility/PatientNotesSlideover.tsx @@ -137,36 +137,45 @@ export default function PatientNotesSlideover(props: PatientNotesProps) {
{show && ( + + {t("full_screen")} + )}
setShow(!show)} > + + {t("minimize")} +
setShowPatientNotesPopup(false)} > + + {t("close")} +
); @@ -248,13 +257,16 @@ export default function PatientNotesSlideover(props: PatientNotesProps) { id="add_doctor_note_button" onClick={onAddNote} border={false} - className="absolute right-2" + className="tooltip absolute right-2" ghost size="small" disabled={!patientActive} authorizeFor={NonReadOnlyUsers} > - + + + {t("send")} + diff --git a/src/Locale/en.json b/src/Locale/en.json index e516ec61733..6307df2b21b 100644 --- a/src/Locale/en.json +++ b/src/Locale/en.json @@ -813,6 +813,7 @@ "middleware_hostname_sourced_from": "Middleware hostname sourced from {{ source }}", "min_password_len_8": "Minimum password length 8", "min_time_bw_doses": "Min. time b/w doses", + "minimize": "Minimize", "mobile": "Mobile", "mobile_number": "Mobile Number", "mobile_number_different_from_aadhaar_mobile_number": "We have noticed that you have entered a mobile number that is different from the one linked to your Aadhaar. We will send an OTP to this number to link it with your Abha number.", @@ -1024,6 +1025,7 @@ "reload": "Reload", "remove": "Remove", "rename": "Rename", + "reply": "Reply", "report": "Report", "req_atleast_one_digit": "Require at least one digit", "req_atleast_one_lowercase": "Require at least one lower case letter", @@ -1086,6 +1088,7 @@ "select_policy_to_add_items": "Select a Policy to Add Items", "select_skills": "Select and add some skills", "select_wards": "Select wards", + "send": "Send", "send_email": "Send Email", "send_message": "Send Message", "send_otp": "Send OTP",