Skip to content

Commit

Permalink
change key names
Browse files Browse the repository at this point in the history
  • Loading branch information
rajku-dev committed Feb 7, 2025
1 parent c81f746 commit 02a2cdc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions public/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
"assigned_facility": "Facility assigned",
"assigned_to": "Assigned to",
"assigned_volunteer": "Assigned Volunteer",
"at": "at <strong>{{time}}</strong>",
"at_time": "at <strong>{{time}}</strong>",
"atypical_presentation_details": "Atypical presentation details",
"audio__allow_permission": "Please allow microphone permission in site settings",
"audio__allow_permission_button": "Click here to know how to allow",
Expand Down Expand Up @@ -479,7 +479,7 @@
"booked_by": "Booked by",
"bradycardia": "Bradycardia",
"breathlessness_level": "Breathlessness level",
"by": "by <strong>{{by}}</strong>",
"by_name": "by <strong>{{by}}</strong>",
"camera": "Camera",
"camera_bed_link_success": "Camera linked to bed successfully.",
"camera_permission_denied": "Camera Permission denied",
Expand Down Expand Up @@ -2043,7 +2043,7 @@
"state": "State",
"state_reason_for_archiving": "State reason for archiving <strong>{{name}}</strong> file?",
"status": "Status",
"status_placeholder": "Select diagnosis status",
"diagnosis_status_placeholder": "Select diagnosis status",
"stop": "Stop",
"stop_recording": "Stop Recording",
"stopped": "Stopped",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,14 @@ function ResponseCard({ item }: { item: QuestionnaireResponse }) {
</div>
<span>
<Trans
i18nKey="at"
i18nKey="at_time"
values={{ time: formatDateTime(item.created_date) }}
components={{ strong: <strong /> }}
/>
</span>
<span>
<Trans
i18nKey="by"
i18nKey="by_name"
values={{
by: `${item.created_by?.first_name || ""} ${item.created_by?.last_name || ""}${
item.created_by?.user_type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const DiagnosisItem: React.FC<DiagnosisItemProps> = ({
<SelectValue
placeholder={
<span className="text-gray-500">
{t("status_placeholder")}
{t("diagnosis_status_placeholder")}
</span>
}
/>
Expand Down

0 comments on commit 02a2cdc

Please sign in to comment.