Skip to content

Commit

Permalink
Fix missing I18n
Browse files Browse the repository at this point in the history
  • Loading branch information
bodhish committed Oct 9, 2024
1 parent aa90ad5 commit 0daa8bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,11 @@ export const PatientHome = (props: any) => {
/>
<div>
<AlertTitle className="flex items-center">
{t("consultation_not_found")}
{t("consultation_not_filed")}
</AlertTitle>
<AlertDescription>
<span className="text-gray-700">
{t("consultation_not_found_description")}
{t("consultation_not_filed_description")}
</span>
</AlertDescription>
</div>
Expand Down
6 changes: 4 additions & 2 deletions src/Locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1020,5 +1020,7 @@
"is_declared_positive": "Whether declared positive",
"date_declared_positive": "Date of declaring positive",
"date_of_result": "Covid confirmation date",
"is_vaccinated": "Whether vaccinated"
}
"is_vaccinated": "Whether vaccinated",
"consultation_not_filed": "You have not filed any consultation for this patient yet.",
"consultation_not_filed_description": "Please file a consultation for this patient to continue."
}

0 comments on commit 0daa8bc

Please sign in to comment.