@kenyaemr/esm-patient-registration-app 8.1.1-pre.124 → 8.1.2-pre.152

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/.turbo/turbo-build.log +21 -23
  2. package/dist/108.js +1 -1
  3. package/dist/130.js +1 -1
  4. package/dist/130.js.map +1 -1
  5. package/dist/173.js +2 -0
  6. package/dist/{895.js.LICENSE.txt → 173.js.LICENSE.txt} +25 -0
  7. package/dist/173.js.map +1 -0
  8. package/dist/236.js +1 -0
  9. package/dist/240.js +1 -0
  10. package/dist/261.js +1 -0
  11. package/dist/271.js +1 -1
  12. package/dist/272.js +1 -0
  13. package/dist/319.js +1 -1
  14. package/dist/336.js +1 -0
  15. package/dist/371.js +1 -0
  16. package/dist/371.js.map +1 -0
  17. package/dist/378.js +1 -0
  18. package/dist/460.js +1 -1
  19. package/dist/501.js +1 -1
  20. package/dist/501.js.map +1 -1
  21. package/dist/539.js +1 -0
  22. package/dist/566.js +1 -0
  23. package/dist/574.js +1 -1
  24. package/dist/623.js +1 -0
  25. package/dist/623.js.map +1 -0
  26. package/dist/644.js +1 -1
  27. package/dist/652.js +1 -0
  28. package/dist/657.js +1 -0
  29. package/dist/657.js.map +1 -0
  30. package/dist/673.js +1 -0
  31. package/dist/705.js +1 -0
  32. package/dist/711.js +1 -0
  33. package/dist/727.js +1 -0
  34. package/dist/737.js +1 -0
  35. package/dist/744.js +1 -0
  36. package/dist/757.js +1 -1
  37. package/dist/759.js +1 -0
  38. package/dist/759.js.map +1 -0
  39. package/dist/76.js +1 -1
  40. package/dist/788.js +1 -1
  41. package/dist/807.js +1 -1
  42. package/dist/833.js +1 -1
  43. package/dist/899.js +1 -0
  44. package/dist/kenyaemr-esm-patient-registration-app.js +1 -1
  45. package/dist/kenyaemr-esm-patient-registration-app.js.buildmanifest.json +445 -93
  46. package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -1
  47. package/dist/main.js +1 -1
  48. package/dist/main.js.LICENSE.txt +25 -0
  49. package/dist/main.js.map +1 -1
  50. package/dist/routes.json +1 -1
  51. package/package-lock.json +6400 -0
  52. package/package.json +4 -4
  53. package/src/client-registry/hie-client-registry/dependants/dependants.component.tsx +46 -0
  54. package/src/client-registry/hie-client-registry/hie-client-registry.component.tsx +38 -8
  55. package/src/client-registry/hie-client-registry/hie-resource.ts +126 -21
  56. package/src/client-registry/hie-client-registry/hie-types.ts +102 -0
  57. package/src/client-registry/hie-client-registry/modal/confirm-hie.modal.tsx +78 -62
  58. package/src/client-registry/hie-client-registry/modal/confirm-hie.scss +55 -3
  59. package/src/client-registry/hie-client-registry/modal/hie-otp-verification-form.component.tsx +88 -0
  60. package/src/client-registry/hie-client-registry/modal/hie-patient-detail-preview.component.tsx +77 -0
  61. package/src/client-registry/hie-client-registry/patient-info/patient-info.component.tsx +17 -0
  62. package/src/config-schema.ts +30 -2
  63. package/src/patient-registration/field/address/address-search.component.tsx +5 -2
  64. package/src/patient-registration/field/date-and-time-of-death/date-and-time-of-death.component.tsx +1 -1
  65. package/src/patient-registration/field/dob/dob.component.tsx +1 -1
  66. package/src/patient-registration/field/field.scss +4 -4
  67. package/src/patient-registration/field/gender/gender-field.component.tsx +6 -2
  68. package/src/patient-registration/field/id/identifier-selection-overlay.component.tsx +3 -3
  69. package/src/patient-registration/field/name/name-field.component.tsx +2 -2
  70. package/src/patient-registration/field/obs/obs-field.component.tsx +9 -5
  71. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +4 -3
  72. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.test.tsx +22 -11
  73. package/src/patient-registration/field/person-attributes/custom-person-attribute-field.component.tsx +76 -27
  74. package/src/patient-registration/field/person-attributes/location-person-attribute-field.component.tsx +1 -1
  75. package/src/patient-registration/field/person-attributes/person-attribute-field.test.tsx +12 -4
  76. package/src/patient-registration/field/person-attributes/useUpdateIdentifierRequirement.tsx +83 -0
  77. package/src/patient-registration/form-manager.test.ts +4 -1
  78. package/src/patient-registration/form-manager.ts +0 -1
  79. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +52 -62
  80. package/src/patient-registration/mpi/mpi-patient.resource.ts +21 -0
  81. package/src/patient-registration/patient-registration-hooks.ts +90 -25
  82. package/src/patient-registration/patient-registration-utils.test.ts +33 -0
  83. package/src/patient-registration/patient-registration-utils.ts +63 -13
  84. package/src/patient-registration/patient-registration.component.tsx +17 -2
  85. package/src/patient-registration/patient-registration.test.tsx +442 -56
  86. package/src/patient-registration/section/demographics/demographics-section.component.tsx +3 -3
  87. package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +1 -1
  88. package/src/patient-registration/section/patient-relationships/relationships.resource.tsx +28 -28
  89. package/src/widgets/cancel-patient-edit.modal.tsx +2 -0
  90. package/src/widgets/cancel-patient-edit.scss +29 -0
  91. package/src/widgets/delete-identifier-confirmation.modal.tsx +2 -0
  92. package/src/widgets/delete-identifier-confirmation.scss +29 -0
  93. package/translations/am.json +1 -0
  94. package/translations/ar.json +6 -4
  95. package/translations/de.json +118 -0
  96. package/translations/en.json +17 -0
  97. package/translations/es.json +2 -0
  98. package/translations/fr.json +1 -0
  99. package/translations/he.json +1 -0
  100. package/translations/hi.json +118 -0
  101. package/translations/hi_IN.json +118 -0
  102. package/translations/id.json +118 -0
  103. package/translations/it.json +118 -0
  104. package/translations/km.json +1 -0
  105. package/translations/ne.json +118 -0
  106. package/translations/pt.json +118 -0
  107. package/translations/pt_BR.json +118 -0
  108. package/translations/qu.json +118 -0
  109. package/translations/si.json +118 -0
  110. package/translations/sw.json +118 -0
  111. package/translations/sw_KE.json +118 -0
  112. package/translations/tr.json +118 -0
  113. package/translations/tr_TR.json +118 -0
  114. package/translations/uk.json +118 -0
  115. package/translations/vi.json +118 -0
  116. package/translations/zh.json +3 -1
  117. package/translations/zh_CN.json +2 -0
  118. package/dist/10.js +0 -1
  119. package/dist/10.js.map +0 -1
  120. package/dist/250.js +0 -1
  121. package/dist/250.js.map +0 -1
  122. package/dist/662.js +0 -1
  123. package/dist/662.js.map +0 -1
  124. package/dist/753.js +0 -1
  125. package/dist/753.js.map +0 -1
  126. package/dist/895.js +0 -2
  127. package/dist/895.js.map +0 -1
@@ -0,0 +1,118 @@
1
+ {
2
+ "addRelationshipButtonText": "Add Relationship",
3
+ "addressHeader": "Address",
4
+ "allFieldsRequiredText": "All fields are required unless marked optional",
5
+ "autoGeneratedPlaceholderText": "Auto-generated",
6
+ "birthdayNotInTheFuture": "Birthday cannot be in future",
7
+ "birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
8
+ "birthdayRequired": "Birthday is required",
9
+ "birthFieldLabelText": "Birth",
10
+ "cancel": "Cancel",
11
+ "causeOfDeathInputLabel": "Cause of death",
12
+ "closeOverlay": "Close overlay",
13
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
14
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "The person attribute field '{{codedPersonAttributeFieldId}}' is of type 'coded' but has been defined without an answer concept set UUID. The 'answerConceptSetUuid' key is required.",
16
+ "configure": "Configure",
17
+ "configureIdentifiers": "Configure identifiers",
18
+ "confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
19
+ "confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
20
+ "confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
21
+ "contactSection": "Contact Details",
22
+ "createNewPatient": "Create new patient",
23
+ "dateOfBirthLabelText": "Date of birth",
24
+ "deathCauseRequired": "Cause of death is required",
25
+ "deathDateInFuture": "Death date cannot be in future",
26
+ "deathDateInputLabel": "Date of death",
27
+ "deathDateRequired": "Death date is required",
28
+ "deathdayInvalidDate": "Death date and time cannot be before the birthday",
29
+ "deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
30
+ "deathdayNotInTheFuture": "",
31
+ "deathSection": "Death Info",
32
+ "deathTimeFormatInvalid": "Time format is invalid",
33
+ "deathTimeFormatRequired": "Time format is required",
34
+ "deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
35
+ "deathTimeRequired": "Death time is required",
36
+ "deleteIdentifierModalHeading": "Remove identifier?",
37
+ "deleteIdentifierModalText": " has a value of ",
38
+ "deleteIdentifierTooltip": "Delete",
39
+ "deleteRelationshipTooltipText": "Delete",
40
+ "demographicsSection": "Basic Info",
41
+ "discard": "Discard",
42
+ "dobToggleLabelText": "Date of Birth Known?",
43
+ "editIdentifierTooltip": "Edit",
44
+ "editPatientDetails": "Edit patient details",
45
+ "editPatientDetailsBreadcrumb": "Edit patient details",
46
+ "enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
47
+ "error": "Error",
48
+ "errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
49
+ "errorFetchingOrderedFields": "Error occured fetching ordered fields for address hierarchy",
50
+ "estimatedAgeInMonthsLabelText": "Estimated age in months",
51
+ "estimatedAgeInYearsLabelText": "Estimated age in years",
52
+ "familyNameLabelText": "Family Name",
53
+ "familyNameRequired": "Family name is required",
54
+ "female": "Female",
55
+ "fieldsWithErrors": "The following fields have errors: ",
56
+ "fullNameLabelText": "Full Name",
57
+ "genderLabelText": "Sex",
58
+ "genderRequired": "Gender is required",
59
+ "genderUnspecified": "Gender unspecified",
60
+ "givenNameLabelText": "First Name",
61
+ "givenNameRequired": "Given name is required",
62
+ "identifierValueRequired": "Identifier value is required",
63
+ "idFieldLabelText": "Identifiers",
64
+ "IDInstructions": "Select the identifiers you'd like to add for this patient:",
65
+ "invalidEmail": "Invalid email",
66
+ "invalidInput": "Invalid Input",
67
+ "isDeadInputLabel": "Is dead",
68
+ "jumpTo": "Jump to",
69
+ "male": "Male",
70
+ "middleNameLabelText": "Middle Name",
71
+ "negativeMonths": "Estimated months cannot be negative",
72
+ "negativeYears": "Estimated years cannot be negative",
73
+ "no": "No",
74
+ "nonCodedCauseOfDeath": "Non-coded cause of death",
75
+ "nonCodedCauseOfDeathRequired": "Cause of death is required",
76
+ "nonsensicalYears": "Estimated years cannot be more than 140",
77
+ "numberInNameDubious": "Number in name is dubious",
78
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
79
+ "optional": "optional",
80
+ "optionalIdentifierLabel": "{{identifierName}} (optional)",
81
+ "other": "Other",
82
+ "patientNameKnown": "Patient's Name is Known?",
83
+ "patientRegistrationBreadcrumb": "Patient Registration",
84
+ "refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
85
+ "registerPatient": "Register patient",
86
+ "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
87
+ "registerPatientSuccessSnackbarTitle": "New Patient Created",
88
+ "registrationErrorSnackbarTitle": "Patient Registration Failed",
89
+ "relationship": "Relationship",
90
+ "relationshipPersonMustExist": "Related person must be an existing person",
91
+ "relationshipPlaceholder": "Relationship",
92
+ "relationshipRemovedText": "Relationship removed",
93
+ "relationshipsSection": "Relationships",
94
+ "relationshipToPatient": "Relationship to patient",
95
+ "relativeFullNameLabelText": "Full name",
96
+ "relativeNamePlaceholder": "Firstname Familyname",
97
+ "removeIdentifierButton": "Remove identifier",
98
+ "resetIdentifierTooltip": "Reset",
99
+ "restoreRelationshipActionButton": "Undo",
100
+ "searchAddress": "Search address",
101
+ "searchIdentifierPlaceholder": "Search identifier",
102
+ "searchLocationPersonAttribute": "Search location",
103
+ "selectAnOption": "Select an option",
104
+ "sexFieldLabelText": "Sex",
105
+ "source": "Source",
106
+ "submitting": "Submitting",
107
+ "timeFormat": "Time Format",
108
+ "timeOfDeathInputLabel": "Time of death (hh:mm)",
109
+ "unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
110
+ "unknown": "Unknown",
111
+ "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
112
+ "updatePatient": "Update patient",
113
+ "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
114
+ "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
115
+ "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
116
+ "yearsEstimateRequired": "Estimated years required",
117
+ "yes": "Yes"
118
+ }
@@ -0,0 +1,118 @@
1
+ {
2
+ "addRelationshipButtonText": "Add Relationship",
3
+ "addressHeader": "Address",
4
+ "allFieldsRequiredText": "All fields are required unless marked optional",
5
+ "autoGeneratedPlaceholderText": "Auto-generated",
6
+ "birthdayNotInTheFuture": "Birthday cannot be in future",
7
+ "birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
8
+ "birthdayRequired": "Birthday is required",
9
+ "birthFieldLabelText": "Birth",
10
+ "cancel": "Cancel",
11
+ "causeOfDeathInputLabel": "Cause of death",
12
+ "closeOverlay": "Close overlay",
13
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
14
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "The person attribute field '{{codedPersonAttributeFieldId}}' is of type 'coded' but has been defined without an answer concept set UUID. The 'answerConceptSetUuid' key is required.",
16
+ "configure": "Configure",
17
+ "configureIdentifiers": "Configure identifiers",
18
+ "confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
19
+ "confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
20
+ "confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
21
+ "contactSection": "Contact Details",
22
+ "createNewPatient": "Create new patient",
23
+ "dateOfBirthLabelText": "Date of birth",
24
+ "deathCauseRequired": "Cause of death is required",
25
+ "deathDateInFuture": "Death date cannot be in future",
26
+ "deathDateInputLabel": "Date of death",
27
+ "deathDateRequired": "Death date is required",
28
+ "deathdayInvalidDate": "Death date and time cannot be before the birthday",
29
+ "deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
30
+ "deathdayNotInTheFuture": "",
31
+ "deathSection": "Death Info",
32
+ "deathTimeFormatInvalid": "Time format is invalid",
33
+ "deathTimeFormatRequired": "Time format is required",
34
+ "deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
35
+ "deathTimeRequired": "Death time is required",
36
+ "deleteIdentifierModalHeading": "Remove identifier?",
37
+ "deleteIdentifierModalText": " has a value of ",
38
+ "deleteIdentifierTooltip": "Delete",
39
+ "deleteRelationshipTooltipText": "Delete",
40
+ "demographicsSection": "Basic Info",
41
+ "discard": "Discard",
42
+ "dobToggleLabelText": "Date of Birth Known?",
43
+ "editIdentifierTooltip": "Edit",
44
+ "editPatientDetails": "Edit patient details",
45
+ "editPatientDetailsBreadcrumb": "Edit patient details",
46
+ "enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
47
+ "error": "Error",
48
+ "errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
49
+ "errorFetchingOrderedFields": "Error occured fetching ordered fields for address hierarchy",
50
+ "estimatedAgeInMonthsLabelText": "Estimated age in months",
51
+ "estimatedAgeInYearsLabelText": "Estimated age in years",
52
+ "familyNameLabelText": "Family Name",
53
+ "familyNameRequired": "Family name is required",
54
+ "female": "Female",
55
+ "fieldsWithErrors": "The following fields have errors: ",
56
+ "fullNameLabelText": "Full Name",
57
+ "genderLabelText": "Sex",
58
+ "genderRequired": "Gender is required",
59
+ "genderUnspecified": "Gender unspecified",
60
+ "givenNameLabelText": "First Name",
61
+ "givenNameRequired": "Given name is required",
62
+ "identifierValueRequired": "Identifier value is required",
63
+ "idFieldLabelText": "Identifiers",
64
+ "IDInstructions": "Select the identifiers you'd like to add for this patient:",
65
+ "invalidEmail": "Invalid email",
66
+ "invalidInput": "Invalid Input",
67
+ "isDeadInputLabel": "Is dead",
68
+ "jumpTo": "Jump to",
69
+ "male": "Male",
70
+ "middleNameLabelText": "Middle Name",
71
+ "negativeMonths": "Estimated months cannot be negative",
72
+ "negativeYears": "Estimated years cannot be negative",
73
+ "no": "No",
74
+ "nonCodedCauseOfDeath": "Non-coded cause of death",
75
+ "nonCodedCauseOfDeathRequired": "Cause of death is required",
76
+ "nonsensicalYears": "Estimated years cannot be more than 140",
77
+ "numberInNameDubious": "Number in name is dubious",
78
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
79
+ "optional": "optional",
80
+ "optionalIdentifierLabel": "{{identifierName}} (optional)",
81
+ "other": "Other",
82
+ "patientNameKnown": "Patient's Name is Known?",
83
+ "patientRegistrationBreadcrumb": "Patient Registration",
84
+ "refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
85
+ "registerPatient": "Register patient",
86
+ "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
87
+ "registerPatientSuccessSnackbarTitle": "New Patient Created",
88
+ "registrationErrorSnackbarTitle": "Patient Registration Failed",
89
+ "relationship": "Relationship",
90
+ "relationshipPersonMustExist": "Related person must be an existing person",
91
+ "relationshipPlaceholder": "Relationship",
92
+ "relationshipRemovedText": "Relationship removed",
93
+ "relationshipsSection": "Relationships",
94
+ "relationshipToPatient": "Relationship to patient",
95
+ "relativeFullNameLabelText": "Full name",
96
+ "relativeNamePlaceholder": "Firstname Familyname",
97
+ "removeIdentifierButton": "Remove identifier",
98
+ "resetIdentifierTooltip": "Reset",
99
+ "restoreRelationshipActionButton": "Undo",
100
+ "searchAddress": "Search address",
101
+ "searchIdentifierPlaceholder": "Search identifier",
102
+ "searchLocationPersonAttribute": "Search location",
103
+ "selectAnOption": "Select an option",
104
+ "sexFieldLabelText": "Sex",
105
+ "source": "Source",
106
+ "submitting": "Submitting",
107
+ "timeFormat": "Time Format",
108
+ "timeOfDeathInputLabel": "Time of death (hh:mm)",
109
+ "unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
110
+ "unknown": "Unknown",
111
+ "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
112
+ "updatePatient": "Update patient",
113
+ "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
114
+ "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
115
+ "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
116
+ "yearsEstimateRequired": "Estimated years required",
117
+ "yes": "Yes"
118
+ }
@@ -0,0 +1,118 @@
1
+ {
2
+ "addRelationshipButtonText": "Add Relationship",
3
+ "addressHeader": "Address",
4
+ "allFieldsRequiredText": "All fields are required unless marked optional",
5
+ "autoGeneratedPlaceholderText": "Auto-generated",
6
+ "birthdayNotInTheFuture": "Birthday cannot be in future",
7
+ "birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
8
+ "birthdayRequired": "Birthday is required",
9
+ "birthFieldLabelText": "Birth",
10
+ "cancel": "Cancel",
11
+ "causeOfDeathInputLabel": "Cause of death",
12
+ "closeOverlay": "Close overlay",
13
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
14
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "The person attribute field '{{codedPersonAttributeFieldId}}' is of type 'coded' but has been defined without an answer concept set UUID. The 'answerConceptSetUuid' key is required.",
16
+ "configure": "Configure",
17
+ "configureIdentifiers": "Configure identifiers",
18
+ "confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
19
+ "confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
20
+ "confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
21
+ "contactSection": "Contact Details",
22
+ "createNewPatient": "Create new patient",
23
+ "dateOfBirthLabelText": "Date of birth",
24
+ "deathCauseRequired": "Cause of death is required",
25
+ "deathDateInFuture": "Death date cannot be in future",
26
+ "deathDateInputLabel": "Date of death",
27
+ "deathDateRequired": "Death date is required",
28
+ "deathdayInvalidDate": "Death date and time cannot be before the birthday",
29
+ "deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
30
+ "deathdayNotInTheFuture": "",
31
+ "deathSection": "Death Info",
32
+ "deathTimeFormatInvalid": "Time format is invalid",
33
+ "deathTimeFormatRequired": "Time format is required",
34
+ "deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
35
+ "deathTimeRequired": "Death time is required",
36
+ "deleteIdentifierModalHeading": "Remove identifier?",
37
+ "deleteIdentifierModalText": " has a value of ",
38
+ "deleteIdentifierTooltip": "Delete",
39
+ "deleteRelationshipTooltipText": "Delete",
40
+ "demographicsSection": "Basic Info",
41
+ "discard": "Discard",
42
+ "dobToggleLabelText": "Date of Birth Known?",
43
+ "editIdentifierTooltip": "Edit",
44
+ "editPatientDetails": "Edit patient details",
45
+ "editPatientDetailsBreadcrumb": "Edit patient details",
46
+ "enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
47
+ "error": "Error",
48
+ "errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
49
+ "errorFetchingOrderedFields": "Error occured fetching ordered fields for address hierarchy",
50
+ "estimatedAgeInMonthsLabelText": "Estimated age in months",
51
+ "estimatedAgeInYearsLabelText": "Estimated age in years",
52
+ "familyNameLabelText": "Family Name",
53
+ "familyNameRequired": "Family name is required",
54
+ "female": "Female",
55
+ "fieldsWithErrors": "The following fields have errors: ",
56
+ "fullNameLabelText": "Full Name",
57
+ "genderLabelText": "Sex",
58
+ "genderRequired": "Gender is required",
59
+ "genderUnspecified": "Gender unspecified",
60
+ "givenNameLabelText": "First Name",
61
+ "givenNameRequired": "Given name is required",
62
+ "identifierValueRequired": "Identifier value is required",
63
+ "idFieldLabelText": "Identifiers",
64
+ "IDInstructions": "Select the identifiers you'd like to add for this patient:",
65
+ "invalidEmail": "Invalid email",
66
+ "invalidInput": "Invalid Input",
67
+ "isDeadInputLabel": "Is dead",
68
+ "jumpTo": "Jump to",
69
+ "male": "Male",
70
+ "middleNameLabelText": "Middle Name",
71
+ "negativeMonths": "Estimated months cannot be negative",
72
+ "negativeYears": "Estimated years cannot be negative",
73
+ "no": "No",
74
+ "nonCodedCauseOfDeath": "Non-coded cause of death",
75
+ "nonCodedCauseOfDeathRequired": "Cause of death is required",
76
+ "nonsensicalYears": "Estimated years cannot be more than 140",
77
+ "numberInNameDubious": "Number in name is dubious",
78
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
79
+ "optional": "optional",
80
+ "optionalIdentifierLabel": "{{identifierName}} (optional)",
81
+ "other": "Other",
82
+ "patientNameKnown": "Patient's Name is Known?",
83
+ "patientRegistrationBreadcrumb": "Patient Registration",
84
+ "refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
85
+ "registerPatient": "Register patient",
86
+ "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
87
+ "registerPatientSuccessSnackbarTitle": "New Patient Created",
88
+ "registrationErrorSnackbarTitle": "Patient Registration Failed",
89
+ "relationship": "Relationship",
90
+ "relationshipPersonMustExist": "Related person must be an existing person",
91
+ "relationshipPlaceholder": "Relationship",
92
+ "relationshipRemovedText": "Relationship removed",
93
+ "relationshipsSection": "Relationships",
94
+ "relationshipToPatient": "Relationship to patient",
95
+ "relativeFullNameLabelText": "Full name",
96
+ "relativeNamePlaceholder": "Firstname Familyname",
97
+ "removeIdentifierButton": "Remove identifier",
98
+ "resetIdentifierTooltip": "Reset",
99
+ "restoreRelationshipActionButton": "Undo",
100
+ "searchAddress": "Search address",
101
+ "searchIdentifierPlaceholder": "Search identifier",
102
+ "searchLocationPersonAttribute": "Search location",
103
+ "selectAnOption": "Select an option",
104
+ "sexFieldLabelText": "Sex",
105
+ "source": "Source",
106
+ "submitting": "Submitting",
107
+ "timeFormat": "Time Format",
108
+ "timeOfDeathInputLabel": "Time of death (hh:mm)",
109
+ "unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
110
+ "unknown": "Unknown",
111
+ "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
112
+ "updatePatient": "Update patient",
113
+ "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
114
+ "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
115
+ "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
116
+ "yearsEstimateRequired": "Estimated years required",
117
+ "yes": "Yes"
118
+ }
@@ -106,6 +106,7 @@
106
106
  "restoreRelationshipActionButton": "វិលត្រឡប់មកដើមវិញ",
107
107
  "searchAddress": "ស្វែងរកអាសយដ្ឋាន",
108
108
  "searchIdentifierPlaceholder": "ស្វែងរកអត្តសញ្ញាណ",
109
+ "searchLocationPersonAttribute": "Search location",
109
110
  "selectAnOption": "យកជម្រើសមួយ",
110
111
  "selectCountry": "Select country",
111
112
  "selectIdentifierType": "Select identifier type",
@@ -0,0 +1,118 @@
1
+ {
2
+ "addRelationshipButtonText": "Add Relationship",
3
+ "addressHeader": "Address",
4
+ "allFieldsRequiredText": "All fields are required unless marked optional",
5
+ "autoGeneratedPlaceholderText": "Auto-generated",
6
+ "birthdayNotInTheFuture": "Birthday cannot be in future",
7
+ "birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
8
+ "birthdayRequired": "Birthday is required",
9
+ "birthFieldLabelText": "Birth",
10
+ "cancel": "Cancel",
11
+ "causeOfDeathInputLabel": "Cause of death",
12
+ "closeOverlay": "Close overlay",
13
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
14
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "The person attribute field '{{codedPersonAttributeFieldId}}' is of type 'coded' but has been defined without an answer concept set UUID. The 'answerConceptSetUuid' key is required.",
16
+ "configure": "Configure",
17
+ "configureIdentifiers": "Configure identifiers",
18
+ "confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
19
+ "confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
20
+ "confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
21
+ "contactSection": "Contact Details",
22
+ "createNewPatient": "Create new patient",
23
+ "dateOfBirthLabelText": "Date of birth",
24
+ "deathCauseRequired": "Cause of death is required",
25
+ "deathDateInFuture": "Death date cannot be in future",
26
+ "deathDateInputLabel": "Date of death",
27
+ "deathDateRequired": "Death date is required",
28
+ "deathdayInvalidDate": "Death date and time cannot be before the birthday",
29
+ "deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
30
+ "deathdayNotInTheFuture": "",
31
+ "deathSection": "Death Info",
32
+ "deathTimeFormatInvalid": "Time format is invalid",
33
+ "deathTimeFormatRequired": "Time format is required",
34
+ "deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
35
+ "deathTimeRequired": "Death time is required",
36
+ "deleteIdentifierModalHeading": "Remove identifier?",
37
+ "deleteIdentifierModalText": " has a value of ",
38
+ "deleteIdentifierTooltip": "Delete",
39
+ "deleteRelationshipTooltipText": "Delete",
40
+ "demographicsSection": "Basic Info",
41
+ "discard": "Discard",
42
+ "dobToggleLabelText": "Date of Birth Known?",
43
+ "editIdentifierTooltip": "Edit",
44
+ "editPatientDetails": "Edit patient details",
45
+ "editPatientDetailsBreadcrumb": "Edit patient details",
46
+ "enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
47
+ "error": "Error",
48
+ "errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
49
+ "errorFetchingOrderedFields": "Error occured fetching ordered fields for address hierarchy",
50
+ "estimatedAgeInMonthsLabelText": "Estimated age in months",
51
+ "estimatedAgeInYearsLabelText": "Estimated age in years",
52
+ "familyNameLabelText": "Family Name",
53
+ "familyNameRequired": "Family name is required",
54
+ "female": "Female",
55
+ "fieldsWithErrors": "The following fields have errors: ",
56
+ "fullNameLabelText": "Full Name",
57
+ "genderLabelText": "Sex",
58
+ "genderRequired": "Gender is required",
59
+ "genderUnspecified": "Gender unspecified",
60
+ "givenNameLabelText": "First Name",
61
+ "givenNameRequired": "Given name is required",
62
+ "identifierValueRequired": "Identifier value is required",
63
+ "idFieldLabelText": "Identifiers",
64
+ "IDInstructions": "Select the identifiers you'd like to add for this patient:",
65
+ "invalidEmail": "Invalid email",
66
+ "invalidInput": "Invalid Input",
67
+ "isDeadInputLabel": "Is dead",
68
+ "jumpTo": "Jump to",
69
+ "male": "Male",
70
+ "middleNameLabelText": "Middle Name",
71
+ "negativeMonths": "Estimated months cannot be negative",
72
+ "negativeYears": "Estimated years cannot be negative",
73
+ "no": "No",
74
+ "nonCodedCauseOfDeath": "Non-coded cause of death",
75
+ "nonCodedCauseOfDeathRequired": "Cause of death is required",
76
+ "nonsensicalYears": "Estimated years cannot be more than 140",
77
+ "numberInNameDubious": "Number in name is dubious",
78
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
79
+ "optional": "optional",
80
+ "optionalIdentifierLabel": "{{identifierName}} (optional)",
81
+ "other": "Other",
82
+ "patientNameKnown": "Patient's Name is Known?",
83
+ "patientRegistrationBreadcrumb": "Patient Registration",
84
+ "refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
85
+ "registerPatient": "Register patient",
86
+ "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
87
+ "registerPatientSuccessSnackbarTitle": "New Patient Created",
88
+ "registrationErrorSnackbarTitle": "Patient Registration Failed",
89
+ "relationship": "Relationship",
90
+ "relationshipPersonMustExist": "Related person must be an existing person",
91
+ "relationshipPlaceholder": "Relationship",
92
+ "relationshipRemovedText": "Relationship removed",
93
+ "relationshipsSection": "Relationships",
94
+ "relationshipToPatient": "Relationship to patient",
95
+ "relativeFullNameLabelText": "Full name",
96
+ "relativeNamePlaceholder": "Firstname Familyname",
97
+ "removeIdentifierButton": "Remove identifier",
98
+ "resetIdentifierTooltip": "Reset",
99
+ "restoreRelationshipActionButton": "Undo",
100
+ "searchAddress": "Search address",
101
+ "searchIdentifierPlaceholder": "Search identifier",
102
+ "searchLocationPersonAttribute": "Search location",
103
+ "selectAnOption": "Select an option",
104
+ "sexFieldLabelText": "Sex",
105
+ "source": "Source",
106
+ "submitting": "Submitting",
107
+ "timeFormat": "Time Format",
108
+ "timeOfDeathInputLabel": "Time of death (hh:mm)",
109
+ "unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
110
+ "unknown": "Unknown",
111
+ "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
112
+ "updatePatient": "Update patient",
113
+ "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
114
+ "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
115
+ "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
116
+ "yearsEstimateRequired": "Estimated years required",
117
+ "yes": "Yes"
118
+ }
@@ -0,0 +1,118 @@
1
+ {
2
+ "addRelationshipButtonText": "Adicionar Relacionamento",
3
+ "addressHeader": "Endereço",
4
+ "allFieldsRequiredText": "Todos os campos são obrigatórios, a menos que estejam marcados como opcionais",
5
+ "autoGeneratedPlaceholderText": "Gerado automaticamente",
6
+ "birthdayNotInTheFuture": "Data de nascimento não pode ser no futuro",
7
+ "birthdayNotOver140YearsAgo": "Data de nascimento não pode ser a mais de 140 anos atrás",
8
+ "birthdayRequired": "Data de nascimento é obrigatória",
9
+ "birthFieldLabelText": "Nascimento",
10
+ "cancel": "Cancelar",
11
+ "causeOfDeathInputLabel": "Causa de óbito",
12
+ "closeOverlay": "Fechar sobreposição",
13
+ "codedPersonAttributeAnswerSetEmpty": "O campo de atributo de pessoa codificado '{{codedPersonAttributeFieldId}}' foi definido com um UUID de conjunto de conceitos de resposta '{{answerConceptSetUuid}}' que não possui nenhuma resposta de conceito.",
14
+ "codedPersonAttributeAnswerSetInvalid": "O campo de atributo de pessoa codificado '{{codedPersonAttributeFieldId}}' foi definido com um UUID de conjunto de conceitos de resposta inválido '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "O campo de atributo de pessoa '{{codedPersonAttributeFieldId}}' é do tipo 'coded - codificado', mas foi definido sem um UUID definido como conceito de resposta. A chave 'answerConceptSetUuid' é obrigatória.",
16
+ "configure": "Configurar",
17
+ "configureIdentifiers": "Configurar identificadores",
18
+ "confirmDiscardChangesBody": "As alterações não gravadas serão perdidas se descartar o formulário",
19
+ "confirmDiscardChangesTitle": "Tem certeza de que deseja descartar estas alterações?",
20
+ "confirmIdentifierDeletionText": "Tem certeza de que deseja excluir este identificador?",
21
+ "contactSection": "Detalhes de contato",
22
+ "createNewPatient": "Criar utente",
23
+ "dateOfBirthLabelText": "Data de nascimento",
24
+ "deathCauseRequired": "Causa de óbito é obrigatória",
25
+ "deathDateInFuture": "Data de óbito não pode ser no futuro ",
26
+ "deathDateInputLabel": "Data de óbito",
27
+ "deathDateRequired": "Data de óbito é obrigatória",
28
+ "deathdayInvalidDate": "Data e hora de óbito não pode ser antes da data de nascimento",
29
+ "deathdayIsRequired": "Data de óbito é obrigatória quando o utente é marcado como óbito.",
30
+ "deathdayNotInTheFuture": "",
31
+ "deathSection": "Informações de Óbito",
32
+ "deathTimeFormatInvalid": "Formato das horas é inválido",
33
+ "deathTimeFormatRequired": "Formato das horas é obrigatório",
34
+ "deathTimeInvalid": "As horas não estão no formato 'hh:mm'",
35
+ "deathTimeRequired": "Hora de óbito é obrigatória",
36
+ "deleteIdentifierModalHeading": "Remover identificador?",
37
+ "deleteIdentifierModalText": "tem um valor de",
38
+ "deleteIdentifierTooltip": "Excluir",
39
+ "deleteRelationshipTooltipText": "Excluir",
40
+ "demographicsSection": "Informação básica",
41
+ "discard": "Descartar",
42
+ "dobToggleLabelText": "Data de nascimento conhecida?",
43
+ "editIdentifierTooltip": "Editar",
44
+ "editPatientDetails": "Alterar detalhes do utente",
45
+ "editPatientDetailsBreadcrumb": "Alterar detalhes do utente",
46
+ "enterNonCodedCauseOfDeath": "Insira a causa de óbito não codificada",
47
+ "error": "Erro",
48
+ "errorFetchingCodedCausesOfDeath": "Erro ao buscar causas de óbito codificadas.",
49
+ "errorFetchingOrderedFields": "Ocorreu um erro ao buscar campos solicitados para hierarquia de endereços",
50
+ "estimatedAgeInMonthsLabelText": "Idade estimada em meses",
51
+ "estimatedAgeInYearsLabelText": "Idade estimada em anos",
52
+ "familyNameLabelText": "Apelido",
53
+ "familyNameRequired": "Apelido é obrigatório",
54
+ "female": "Feminino",
55
+ "fieldsWithErrors": "Os seguintes campos apresentam erros:",
56
+ "fullNameLabelText": "Nome completo",
57
+ "genderLabelText": "Sexo",
58
+ "genderRequired": "Género é obrigatório",
59
+ "genderUnspecified": "Género não especificado",
60
+ "givenNameLabelText": "Primeiro Nome",
61
+ "givenNameRequired": "Primeiro nome é obrigatório",
62
+ "identifierValueRequired": "O valor do identificador ó obrigatório",
63
+ "idFieldLabelText": "Identificadores",
64
+ "IDInstructions": "Selecione os identificadores que gostaria de adicionar para este utente:",
65
+ "invalidEmail": "Email inválido",
66
+ "invalidInput": "Entrada inválida",
67
+ "isDeadInputLabel": "Óbito",
68
+ "jumpTo": "Saltar para",
69
+ "male": "Masculino",
70
+ "middleNameLabelText": "Sobrenome",
71
+ "negativeMonths": "Idade estimada em meses não pode ser negativa",
72
+ "negativeYears": "Idade estimada em anos não pode ser negativa",
73
+ "no": "Não",
74
+ "nonCodedCauseOfDeath": "Causa de óbito não codificada",
75
+ "nonCodedCauseOfDeathRequired": "Causa de óbito é obrigatória",
76
+ "nonsensicalYears": "Idade estimada em anos não pode ser maior que 140",
77
+ "numberInNameDubious": "O número no nome é duvidoso",
78
+ "obsFieldUnknownDatatype": "O conceito para o campo obs '{{fieldDefinitionId}}' tem tipo de dados desconhecido '{{datatypeName}}'",
79
+ "optional": "opcional",
80
+ "optionalIdentifierLabel": "{{identifierName}} (opcional)",
81
+ "other": "Outro",
82
+ "patientNameKnown": "Nome do utente conhecido?",
83
+ "patientRegistrationBreadcrumb": "Registo de utente",
84
+ "refreshOrContactAdmin": "Tente recarregar a página ou contacte o administrador de sistemas",
85
+ "registerPatient": "Registar utente",
86
+ "registerPatientSuccessSnackbarSubtitle": "O utente pode agora ser encontrado pesquisando pelo seu nome ou identificador",
87
+ "registerPatientSuccessSnackbarTitle": "Registado novo utente",
88
+ "registrationErrorSnackbarTitle": "Erro no registo de utente",
89
+ "relationship": "Relacionamento",
90
+ "relationshipPersonMustExist": "A pessoa relacionada deve ser uma pessoa existente",
91
+ "relationshipPlaceholder": "Relacionamento",
92
+ "relationshipRemovedText": "Relacionamento removido",
93
+ "relationshipsSection": "Relacionamentos",
94
+ "relationshipToPatient": "Relação com o utente",
95
+ "relativeFullNameLabelText": "Nome completo",
96
+ "relativeNamePlaceholder": "Nome Apelido",
97
+ "removeIdentifierButton": "Remover identificador",
98
+ "resetIdentifierTooltip": "Reiniciar",
99
+ "restoreRelationshipActionButton": "Desfazer",
100
+ "searchAddress": "Pesquisar endereço",
101
+ "searchIdentifierPlaceholder": "Pesquisar identificador",
102
+ "searchLocationPersonAttribute": "Pesquisar localização",
103
+ "selectAnOption": "Selecione uma opção",
104
+ "sexFieldLabelText": "Sexo",
105
+ "source": "Fonte",
106
+ "submitting": "Submetendo",
107
+ "timeFormat": "Formato de hora",
108
+ "timeOfDeathInputLabel": "Hora de óbito (hh:mm)",
109
+ "unableToFetch": "Não foi possível buscar o tipo de atributo pessoal - {{personattributetype}}",
110
+ "unknown": "Desconhecido",
111
+ "unknownPatientAttributeType": "Tipo de atributo pessoal tem formato desconhecido {{personAttributeTypeFormat}}",
112
+ "updatePatient": "Editar utente",
113
+ "updatePatientErrorSnackbarTitle": "Erro na atualização dos detalhes do utente",
114
+ "updatePatientSuccessSnackbarSubtitle": "Os dados do utente foram atualizados com sucesso",
115
+ "updatePatientSuccessSnackbarTitle": "Atualizados os detalhes do utente",
116
+ "yearsEstimateRequired": "Idade estimada em anos é obrigatória",
117
+ "yes": "Sim"
118
+ }