@kenyaemr/esm-patient-registration-app 4.3.0
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.
- package/README.md +7 -0
- package/__mocks__/autogenerationoptions.mock.ts +34 -0
- package/__mocks__/react-i18next.js +49 -0
- package/dist/144.js +2 -0
- package/dist/144.js.LICENSE.txt +27 -0
- package/dist/144.js.map +1 -0
- package/dist/207.js +1 -0
- package/dist/207.js.map +1 -0
- package/dist/317.js +2 -0
- package/dist/317.js.LICENSE.txt +6 -0
- package/dist/317.js.map +1 -0
- package/dist/330.js +1 -0
- package/dist/330.js.map +1 -0
- package/dist/574.js +1 -0
- package/dist/59.js +1 -0
- package/dist/59.js.map +1 -0
- package/dist/591.js +2 -0
- package/dist/591.js.LICENSE.txt +32 -0
- package/dist/591.js.map +1 -0
- package/dist/62.js +1 -0
- package/dist/62.js.map +1 -0
- package/dist/635.js +1 -0
- package/dist/635.js.map +1 -0
- package/dist/68.js +1 -0
- package/dist/68.js.map +1 -0
- package/dist/735.js +1 -0
- package/dist/735.js.map +1 -0
- package/dist/757.js +1 -0
- package/dist/784.js +2 -0
- package/dist/784.js.LICENSE.txt +9 -0
- package/dist/784.js.map +1 -0
- package/dist/805.js +1 -0
- package/dist/805.js.map +1 -0
- package/dist/807.js +1 -0
- package/dist/821.js +1 -0
- package/dist/821.js.map +1 -0
- package/dist/822.js +1 -0
- package/dist/822.js.map +1 -0
- package/dist/858.js +2 -0
- package/dist/858.js.LICENSE.txt +3 -0
- package/dist/858.js.map +1 -0
- package/dist/887.js +1 -0
- package/dist/887.js.map +1 -0
- package/dist/9.js +2 -0
- package/dist/9.js.LICENSE.txt +9 -0
- package/dist/9.js.map +1 -0
- package/dist/975.js +1 -0
- package/dist/975.js.map +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +9 -0
- package/dist/main.js.map +1 -0
- package/dist/openmrs-esm-patient-registration-app.js +1 -0
- package/dist/openmrs-esm-patient-registration-app.js.buildmanifest.json +623 -0
- package/dist/openmrs-esm-patient-registration-app.js.map +1 -0
- package/dist/openmrs-esm-patient-registration-app.old +1 -0
- package/docs/images/patient-registration-hierarchy.png +0 -0
- package/package.json +55 -0
- package/src/add-patient-link.scss +3 -0
- package/src/add-patient-link.tsx +21 -0
- package/src/config-schema.ts +405 -0
- package/src/constants.ts +14 -0
- package/src/declarations.d.tsx +4 -0
- package/src/index.ts +131 -0
- package/src/nav-link.tsx +10 -0
- package/src/offline.resources.ts +109 -0
- package/src/offline.ts +90 -0
- package/src/patient-registration/before-save-prompt.tsx +72 -0
- package/src/patient-registration/date-util.ts +52 -0
- package/src/patient-registration/field/__mocks__/field.resource.ts +60 -0
- package/src/patient-registration/field/address/address-field.component.tsx +31 -0
- package/src/patient-registration/field/address/address-hierarchy.component.tsx +143 -0
- package/src/patient-registration/field/address/address-hierarchy.test.tsx +181 -0
- package/src/patient-registration/field/address/address-search.component.tsx +98 -0
- package/src/patient-registration/field/address/address-search.scss +53 -0
- package/src/patient-registration/field/custom-field.component.tsx +25 -0
- package/src/patient-registration/field/dob/dob.component.tsx +143 -0
- package/src/patient-registration/field/dob/dob.test.tsx +73 -0
- package/src/patient-registration/field/field.component.tsx +44 -0
- package/src/patient-registration/field/field.resource.ts +35 -0
- package/src/patient-registration/field/field.scss +127 -0
- package/src/patient-registration/field/gender/gender-field.component.tsx +49 -0
- package/src/patient-registration/field/gender/gender-field.test.tsx +66 -0
- package/src/patient-registration/field/id/id-field.component.tsx +142 -0
- package/src/patient-registration/field/id/identifier-selection-overlay.tsx +194 -0
- package/src/patient-registration/field/id/identifier-selection.scss +37 -0
- package/src/patient-registration/field/name/name-field.component.tsx +109 -0
- package/src/patient-registration/field/obs/obs-field.component.tsx +185 -0
- package/src/patient-registration/field/obs/obs-field.test.tsx +127 -0
- package/src/patient-registration/field/person-attributes/coded-attributes.component.tsx +59 -0
- package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +68 -0
- package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +81 -0
- package/src/patient-registration/field/person-attributes/person-attributes.resource.tsx +20 -0
- package/src/patient-registration/field/person-attributes/text-person-attribute-field.component.tsx +57 -0
- package/src/patient-registration/form-manager.test.ts +68 -0
- package/src/patient-registration/form-manager.ts +413 -0
- package/src/patient-registration/input/basic-input/input/input.component.tsx +59 -0
- package/src/patient-registration/input/basic-input/input/input.test.tsx +170 -0
- package/src/patient-registration/input/basic-input/select/select-input.component.tsx +32 -0
- package/src/patient-registration/input/basic-input/select/select-input.test.tsx +32 -0
- package/src/patient-registration/input/combo-input/combo-input.component.tsx +76 -0
- package/src/patient-registration/input/combo-input/combo-input.test.tsx +43 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.component.tsx +84 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.scss +53 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +109 -0
- package/src/patient-registration/input/custom-input/estimated-age/estimated-age-input.component.tsx +32 -0
- package/src/patient-registration/input/custom-input/estimated-age/estimated-age-input.test.tsx +36 -0
- package/src/patient-registration/input/custom-input/identifier/identifier-input.component.tsx +156 -0
- package/src/patient-registration/input/custom-input/identifier/identifier-input.test.tsx +110 -0
- package/src/patient-registration/input/custom-input/identifier/utils.ts +19 -0
- package/src/patient-registration/input/custom-input/unidentified-patient/unidentified-patient-input.component.tsx +24 -0
- package/src/patient-registration/input/custom-input/unidentified-patient/unidentified-patient-input.test.tsx +39 -0
- package/src/patient-registration/input/dummy-data/dummy-data-input.component.tsx +53 -0
- package/src/patient-registration/input/dummy-data/dummy-data-input.test.tsx +43 -0
- package/src/patient-registration/input/input.scss +108 -0
- package/src/patient-registration/patient-registration-context.ts +24 -0
- package/src/patient-registration/patient-registration-hooks.ts +320 -0
- package/src/patient-registration/patient-registration-types.tsx +271 -0
- package/src/patient-registration/patient-registration-utils.ts +219 -0
- package/src/patient-registration/patient-registration.component.tsx +250 -0
- package/src/patient-registration/patient-registration.resource.test.tsx +26 -0
- package/src/patient-registration/patient-registration.resource.tsx +296 -0
- package/src/patient-registration/patient-registration.scss +94 -0
- package/src/patient-registration/patient-registration.test.tsx +436 -0
- package/src/patient-registration/section/death-info/death-info-section.component.tsx +30 -0
- package/src/patient-registration/section/death-info/death-info-section.test.tsx +73 -0
- package/src/patient-registration/section/demographics/demographics-section.component.tsx +30 -0
- package/src/patient-registration/section/demographics/demographics-section.test.tsx +84 -0
- package/src/patient-registration/section/generic-section.component.tsx +17 -0
- package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +226 -0
- package/src/patient-registration/section/patient-relationships/relationships.resource.tsx +78 -0
- package/src/patient-registration/section/patient-relationships/relationships.scss +35 -0
- package/src/patient-registration/section/section-wrapper.component.tsx +40 -0
- package/src/patient-registration/section/section.component.tsx +23 -0
- package/src/patient-registration/section/section.scss +1 -0
- package/src/patient-registration/ui-components/overlay/index.tsx +51 -0
- package/src/patient-registration/ui-components/overlay/overlay.scss +63 -0
- package/src/patient-registration/validation/patient-registration-validation.test.tsx +129 -0
- package/src/patient-registration/validation/patient-registration-validation.tsx +46 -0
- package/src/patient-verification/assets/counties.json +236 -0
- package/src/patient-verification/assets/verification-assets.ts +11 -0
- package/src/patient-verification/patient-verification-hook.tsx +156 -0
- package/src/patient-verification/patient-verification-utils.ts +173 -0
- package/src/patient-verification/patient-verification.component.tsx +118 -0
- package/src/patient-verification/patient-verification.scss +30 -0
- package/src/patient-verification/verification-modal/confirm-prompt.component.tsx +69 -0
- package/src/patient-verification/verification-modal/empty-prompt.component.tsx +35 -0
- package/src/patient-verification/verification-types.ts +50 -0
- package/src/resource.ts +12 -0
- package/src/root.component.tsx +66 -0
- package/src/root.scss +7 -0
- package/src/root.test.tsx +32 -0
- package/src/widgets/cancel-patient-edit.component.tsx +37 -0
- package/src/widgets/delete-identifier-confirmation-modal.tsx +41 -0
- package/src/widgets/delete-identifier-modal.scss +34 -0
- package/src/widgets/display-photo.component.tsx +30 -0
- package/src/widgets/edit-patient-details-button.component.tsx +34 -0
- package/src/widgets/edit-patient-details-button.scss +3 -0
- package/translations/en.json +108 -0
- package/translations/fr.json +89 -0
- package/translations/km.json +89 -0
- package/tsconfig.json +5 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addRelationshipButtonText": "Add Relationship",
|
|
3
|
+
"address1": "Address line 1",
|
|
4
|
+
"address2": "Address line 2",
|
|
5
|
+
"addressHeader": "Address",
|
|
6
|
+
"age": "Age",
|
|
7
|
+
"allFieldsRequiredText": "All fields are required unless marked optional",
|
|
8
|
+
"autoGeneratedPlaceholderText": "Auto-generated",
|
|
9
|
+
"birthdayNotInTheFuture": "Birthday cannot be in the future",
|
|
10
|
+
"birthdayRequired": "Birthday is required",
|
|
11
|
+
"birthFieldLabelText": "Birth",
|
|
12
|
+
"cancel": "Cancel",
|
|
13
|
+
"causeOfDeathInputLabel": "Cause of Death",
|
|
14
|
+
"cityVillage": "City",
|
|
15
|
+
"clientRegistryEmpty": "Create & Post Patient",
|
|
16
|
+
"clientVerificationWithClientRegistry": "Client verification with client registry",
|
|
17
|
+
"configure": "Configure",
|
|
18
|
+
"contactSection": "Contact Details",
|
|
19
|
+
"continue": "Continue",
|
|
20
|
+
"country": "Country",
|
|
21
|
+
"countyDistrict": "District",
|
|
22
|
+
"createNew": "Create New",
|
|
23
|
+
"dateOfBirth": "Date of birth",
|
|
24
|
+
"dateOfBirthLabelText": "Date of Birth",
|
|
25
|
+
"deathDateInputLabel": "Date of Death",
|
|
26
|
+
"deathdayNotInTheFuture": "Death day cannot be in the future",
|
|
27
|
+
"deathSection": "Death Info",
|
|
28
|
+
"deleteIdentifierTooltip": "Delete",
|
|
29
|
+
"deleteRelationshipTooltipText": "Delete",
|
|
30
|
+
"demographicsSection": "Basic Info",
|
|
31
|
+
"discard": "Discard",
|
|
32
|
+
"discardModalBody": "The changes you made to this patient's details have not been saved. Discard changes?",
|
|
33
|
+
"discardModalHeader": "Confirm Discard Changes",
|
|
34
|
+
"dobToggleLabelText": "Date of Birth Known?",
|
|
35
|
+
"edit": "Edit",
|
|
36
|
+
"editIdentifierTooltip": "Edit",
|
|
37
|
+
"editPatientDetails": "Edit patient details",
|
|
38
|
+
"error": "Error",
|
|
39
|
+
"estimatedAgeInMonthsLabelText": "Estimated age in months",
|
|
40
|
+
"estimatedAgeInYearsLabelText": "Estimated age in years",
|
|
41
|
+
"familyNameLabelText": "Family Name",
|
|
42
|
+
"familyNameRequired": "Family name is required",
|
|
43
|
+
"female": "Female",
|
|
44
|
+
"fieldErrorTitleMessage": "The following fields have errors:",
|
|
45
|
+
"fullNameLabelText": "Full Name",
|
|
46
|
+
"gender": "Gender",
|
|
47
|
+
"genderLabelText": "Sex",
|
|
48
|
+
"genderRequired": "Gender is required",
|
|
49
|
+
"genderUnspecified": "Gender is not specified",
|
|
50
|
+
"givenNameLabelText": "First Name",
|
|
51
|
+
"givenNameRequired": "Given name is required",
|
|
52
|
+
"identifierValueRequired": "Identifier value is required",
|
|
53
|
+
"idFieldLabelText": "Identifiers",
|
|
54
|
+
"incompleteForm": "Incomplete form",
|
|
55
|
+
"invalidEmail": "A valid email has to be given",
|
|
56
|
+
"invalidInput": "Invalid Input",
|
|
57
|
+
"isDeadInputLabel": "Is Dead",
|
|
58
|
+
"jumpTo": "Jump to",
|
|
59
|
+
"loadingResults": "Loading results",
|
|
60
|
+
"male": "Male",
|
|
61
|
+
"middleNameLabelText": "Middle Name",
|
|
62
|
+
"months": "Months",
|
|
63
|
+
"nationalId": "National ID",
|
|
64
|
+
"negativeMonths": "Negative months",
|
|
65
|
+
"negativeYears": "Negative years",
|
|
66
|
+
"no": "No",
|
|
67
|
+
"noResultsFound": "No results found",
|
|
68
|
+
"numberInNameDubious": "Number in name is dubious",
|
|
69
|
+
"optional": "optional",
|
|
70
|
+
"other": "Other",
|
|
71
|
+
"patient": "Patient",
|
|
72
|
+
"patientDetailsFound": "Patient information found in the registry, do you want to use the information to continue with registration?",
|
|
73
|
+
"patientName": "Patient name",
|
|
74
|
+
"patientNameKnown": "Patient's Name is Known?",
|
|
75
|
+
"patientNotFound": "The patient records could not be found in Client registry, do you want to continue to create and post patient to registry",
|
|
76
|
+
"postalCode": "Postcode",
|
|
77
|
+
"postToRegistry": "Post to registry",
|
|
78
|
+
"registerPatient": "Register Patient",
|
|
79
|
+
"registrationSuccessToastDescription": "The patient can now be found by searching for them using their name or ID number",
|
|
80
|
+
"registrationSuccessToastTitle": "New Patient Created",
|
|
81
|
+
"relationship": "Relationship",
|
|
82
|
+
"relationshipPlaceholder": "Relationship",
|
|
83
|
+
"relationshipRemovedText": "Relationship removed",
|
|
84
|
+
"relationshipsSection": "Relationships",
|
|
85
|
+
"relationshipToPatient": "Relationship to patient",
|
|
86
|
+
"relativeFullNameLabelText": "Full name",
|
|
87
|
+
"relativeNamePlaceholder": "Firstname Familyname",
|
|
88
|
+
"resetIdentifierTooltip": "Reset",
|
|
89
|
+
"restoreRelationshipActionButton": "Undo",
|
|
90
|
+
"searchAddress": "Search address",
|
|
91
|
+
"selectAnOption": "Select an option",
|
|
92
|
+
"selectCountry": "Select country",
|
|
93
|
+
"selectIdentifierType": "Select identifier type",
|
|
94
|
+
"sexFieldLabelText": "Sex",
|
|
95
|
+
"stateProvince": "State",
|
|
96
|
+
"stroke": "Stroke",
|
|
97
|
+
"unableToFetch": "Unable to fetch person attribute type {personattributetype}",
|
|
98
|
+
"unidentifiedPatient": "Unidentified Patient",
|
|
99
|
+
"unknown": "Unknown",
|
|
100
|
+
"updatePatient": "Update Patient",
|
|
101
|
+
"updationSuccessToastDescription": "The patient's information has been successfully updated",
|
|
102
|
+
"updationSuccessToastTitle": "Patient Details Updated",
|
|
103
|
+
"useValues": "Use values",
|
|
104
|
+
"validate": "Validate",
|
|
105
|
+
"years": "Years",
|
|
106
|
+
"yearsEstimateRequired": "Years estimate required",
|
|
107
|
+
"yes": "Yes"
|
|
108
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addRelationshipButtonText": "Ajouter un lien de parenté",
|
|
3
|
+
"address1": "Adresse 1",
|
|
4
|
+
"address2": "Adresse 2",
|
|
5
|
+
"addressHeader": "Adresse",
|
|
6
|
+
"allFieldsRequiredText": "Tous les champs sont requis sauf si explicitement indiqués facultatifs",
|
|
7
|
+
"autoGeneratedPlaceholderText": "Auto-generé",
|
|
8
|
+
"birthdayNotInTheFuture": "La date de naissance ne peut pas être dans le futur",
|
|
9
|
+
"birthdayRequired": "La date de naissance est requise",
|
|
10
|
+
"birthFieldLabelText": "Naissance",
|
|
11
|
+
"cancel": "Annuller",
|
|
12
|
+
"causeOfDeathInputLabel": "Cause de décès",
|
|
13
|
+
"cityVillage": "Ville",
|
|
14
|
+
"configure": "Configurer",
|
|
15
|
+
"country": "Pays",
|
|
16
|
+
"countyDistrict": "District",
|
|
17
|
+
"createNew": "Créer un nouveau",
|
|
18
|
+
"dateOfBirthLabelText": "Date de naissance",
|
|
19
|
+
"deathDateInputLabel": "Date de décès",
|
|
20
|
+
"deathdayNotInTheFuture": "Le décès ne peut pas être dans le futur",
|
|
21
|
+
"deleteIdentifierTooltip": "Effacer",
|
|
22
|
+
"deleteRelationshipTooltipText": "Effacer",
|
|
23
|
+
"discard": "Abandonner",
|
|
24
|
+
"discardModalBody": "Les modifications que vous avez apportées aux données de ce patient n'ont pas été enregistrées. Annuler les modifications?",
|
|
25
|
+
"discardModalHeader": "Confirmer l'abandon des modifications",
|
|
26
|
+
"dobToggleLabelText": "Date de naissance connue?",
|
|
27
|
+
"edit": "Editer",
|
|
28
|
+
"editIdentifierTooltip": "Editer",
|
|
29
|
+
"editPatientDetails": "Editer les données du patient",
|
|
30
|
+
"emailLabelText": "Email",
|
|
31
|
+
"estimatedAgeInMonthsLabelText": "Âge estimé en mois",
|
|
32
|
+
"estimatedAgeInYearsLabelText": "Âge estimé en années",
|
|
33
|
+
"familyNameLabelText": "Nom de famille",
|
|
34
|
+
"familyNameRequired": "Le nom de famille est requis",
|
|
35
|
+
"female": "Femme",
|
|
36
|
+
"fieldErrorTitleMessage": "Les champs suivants contiennent des erreurs:",
|
|
37
|
+
"fullNameLabelText": "Nom et Prénom",
|
|
38
|
+
"genderLabelText": "Sexe",
|
|
39
|
+
"genderRequired": "Le genre est requis",
|
|
40
|
+
"genderUnspecified": "Le genre n'est pas spécifié",
|
|
41
|
+
"givenNameLabelText": "Prénom",
|
|
42
|
+
"givenNameRequired": "Le nom donné est requis",
|
|
43
|
+
"identifierValueRequired": "La valeur de l'identifiant est requise",
|
|
44
|
+
"idFieldLabelText": "Identifiants",
|
|
45
|
+
"incompleteForm": "Formulaire incomplet",
|
|
46
|
+
"invalidEmail": "Un email valide est requis",
|
|
47
|
+
"invalidInput": "Entrée invalide",
|
|
48
|
+
"isDeadInputLabel": "Est décédé",
|
|
49
|
+
"jumpTo": "Passer à",
|
|
50
|
+
"loadingResults": "Résultats de chargement",
|
|
51
|
+
"male": "Homme",
|
|
52
|
+
"middleNameLabelText": "Deuxième nom",
|
|
53
|
+
"months": "Mois",
|
|
54
|
+
"negativeMonths": "Mois négatifs",
|
|
55
|
+
"negativeYears": "Années négatives",
|
|
56
|
+
"no": "Non",
|
|
57
|
+
"noResultsFound": "Aucun résultat trouvé",
|
|
58
|
+
"numberInNameDubious": "Le chiffre dans le nom est suspect",
|
|
59
|
+
"optional": "Optionnel",
|
|
60
|
+
"other": "Autre",
|
|
61
|
+
"patient": "Patient",
|
|
62
|
+
"patientNameKnown": "Le nom du patient est connu?",
|
|
63
|
+
"phoneEmailLabelText": "Téléphone, Email, etc.",
|
|
64
|
+
"phoneNumberInputLabelText": "Téléphone",
|
|
65
|
+
"postalCode": "Code postal",
|
|
66
|
+
"registerPatient": "Enregistrer un patient",
|
|
67
|
+
"registrationSuccessToastDescription": "Le patient peut maintenant être trouvé en faisant une recherche par son nom ou son numéro d'identification",
|
|
68
|
+
"registrationSuccessToastTitle": "Nouveau patient créé",
|
|
69
|
+
"relationship": "Relation",
|
|
70
|
+
"relationshipPlaceholder": "Relation",
|
|
71
|
+
"relationshipRemovedText": "Relation supprimée",
|
|
72
|
+
"relationshipToPatient": "Relation avec le patient",
|
|
73
|
+
"relativeFullNameLabelText": "Nom et prénom",
|
|
74
|
+
"relativeNamePlaceholder": "Prénom Nom de famile",
|
|
75
|
+
"resetIdentifierTooltip": "Réinitialiser",
|
|
76
|
+
"restoreRelationshipActionButton": "Annuler",
|
|
77
|
+
"searchAddress": "Chercher l'adresse",
|
|
78
|
+
"sexFieldLabelText": "Sexe",
|
|
79
|
+
"stateProvince": "Etat",
|
|
80
|
+
"stroke": "Accident",
|
|
81
|
+
"unidentifiedPatient": "Patient non-identifié",
|
|
82
|
+
"unknown": "Inconnu",
|
|
83
|
+
"updatePatient": "Mettre à jour le patient",
|
|
84
|
+
"updationSuccessToastDescription": "Les informations du patient ont été mises à jour avec succès",
|
|
85
|
+
"updationSuccessToastTitle": "Les informations du patients ont été mises à jour",
|
|
86
|
+
"years": "Années",
|
|
87
|
+
"yearsEstimateRequired": "Estimation du nombre d'années requise",
|
|
88
|
+
"yes": "Oui"
|
|
89
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addRelationshipButtonText": "បន្ថែមទំនាក់ទំនង",
|
|
3
|
+
"address1": "អាសយដ្ឋានទី 1",
|
|
4
|
+
"address2": "អាសយដ្ឋានទី 2",
|
|
5
|
+
"addressHeader": "អាសយដ្ឋាន",
|
|
6
|
+
"allFieldsRequiredText": "តម្រូវឱ្យបំពេញគ្រប់កន្លែងចំហរទាំងអស់ លុះត្រាតែមានសម្គាល់ថាជាជម្រើស",
|
|
7
|
+
"autoGeneratedPlaceholderText": "ទាញចេញទិន្នន័យដោយស្វ័យប្រវត្តិ",
|
|
8
|
+
"birthdayNotInTheFuture": "ថ្ងៃខែឆ្នាំកំណើតមិនអាចមាននាពេលអនាគតទេ",
|
|
9
|
+
"birthdayRequired": "តម្រូវឱ្យបំពេញថ្ងៃខែឆ្នាំកំណើត",
|
|
10
|
+
"birthFieldLabelText": "ថ្ងៃខែឆ្នាំកំណើត",
|
|
11
|
+
"cancel": "បោះបង់ចោល",
|
|
12
|
+
"causeOfDeathInputLabel": "មូលហេតុនៃការស្លាប់",
|
|
13
|
+
"cityVillage": "ទីក្រុង",
|
|
14
|
+
"configure": "កំណត់រចនាសម្ព័ន្ធ",
|
|
15
|
+
"country": "ប្រទេស",
|
|
16
|
+
"countyDistrict": "ស្រុក/ខ័ណ្ឌ",
|
|
17
|
+
"createNew": "បង្កើតថ្មី",
|
|
18
|
+
"dateOfBirthLabelText": "ថ្ងៃខែឆ្នាំកំណើត",
|
|
19
|
+
"deathDateInputLabel": "កាលបរិច្ឆេទនៃការស្លាប់",
|
|
20
|
+
"deathdayNotInTheFuture": "ថ្ងៃស្លាប់មិនអាចមាននាពេលអនាគតទេ។",
|
|
21
|
+
"deleteIdentifierTooltip": "លុប",
|
|
22
|
+
"deleteRelationshipTooltipText": "លុប",
|
|
23
|
+
"discard": "បោះបង់",
|
|
24
|
+
"discardModalBody": "ការផ្លាស់ប្តូរដែលអ្នកបានធ្វើចំពោះព័ត៌មានលម្អិតរបស់អ្នកជំងឺនេះមិនត្រូវបានរក្សាទុកទេ។ បោះបង់ការផ្លាស់ប្តូរ?",
|
|
25
|
+
"discardModalHeader": "បញ្ជាក់ការផ្លាស់ប្តូរការបោះបង់",
|
|
26
|
+
"dobToggleLabelText": "ស្គាល់ថ្ងៃខែឆ្នាំកំណើត?",
|
|
27
|
+
"edit": "កែសម្រួល",
|
|
28
|
+
"editIdentifierTooltip": "កែសម្រួល",
|
|
29
|
+
"editPatientDetails": "កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ",
|
|
30
|
+
"emailLabelText": "អ៊ីមែល",
|
|
31
|
+
"estimatedAgeInMonthsLabelText": "អាយុប៉ាន់ស្មានគិតជាខែ",
|
|
32
|
+
"estimatedAgeInYearsLabelText": "អាយុប៉ាន់ស្មានគិតជាឆ្នាំ",
|
|
33
|
+
"familyNameLabelText": "នាមត្រកូល",
|
|
34
|
+
"familyNameRequired": "តម្រូវឱ្យបំពេញនាមត្រកូល",
|
|
35
|
+
"female": "ស្រី",
|
|
36
|
+
"fieldErrorTitleMessage": "ផ្នែកខាងក្រោមមានកំហុស៖",
|
|
37
|
+
"fullNameLabelText": "ឈ្មោះពេញ",
|
|
38
|
+
"genderLabelText": "ភេទ",
|
|
39
|
+
"genderRequired": "តម្រូវឱ្យបំពេញភេទ",
|
|
40
|
+
"genderUnspecified": "ភេទមិនត្រូវបានបញ្ជាក់ទេ",
|
|
41
|
+
"givenNameLabelText": "នាមខ្លួន",
|
|
42
|
+
"givenNameRequired": "តម្រូវឱ្យបំពេញឈ្មោះ",
|
|
43
|
+
"identifierValueRequired": "តម្រូវឱ្យមានកំណត់អត្តសញ្ញាណ",
|
|
44
|
+
"idFieldLabelText": "អ្នកកំណត់អត្តសញ្ញាណ",
|
|
45
|
+
"incompleteForm": "ទម្រង់មិនពេញលេញ",
|
|
46
|
+
"invalidEmail": "ត្រូវតែផ្តល់ឱ្យអ៊ីមែលដែលមានសុពលភាព",
|
|
47
|
+
"invalidInput": "ការបញ្ចូលមិនត្រឹមត្រូវ",
|
|
48
|
+
"isDeadInputLabel": "គឺស្លាប់",
|
|
49
|
+
"jumpTo": "រំលងទៅ",
|
|
50
|
+
"loadingResults": "កំពុងផ្ទុកលទ្ធផល",
|
|
51
|
+
"male": "ប្រុស",
|
|
52
|
+
"middleNameLabelText": "លេខជាឈ្មោះដែលសង្ស័យ",
|
|
53
|
+
"months": "ខែ",
|
|
54
|
+
"negativeMonths": "ខែអវិជ្ជមាន",
|
|
55
|
+
"negativeYears": "ឆ្នាំអវិជ្ជមាន",
|
|
56
|
+
"no": "ទេ",
|
|
57
|
+
"noResultsFound": "រកមិនឃើញលទ្ធផលទេ",
|
|
58
|
+
"numberInNameDubious": "លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ",
|
|
59
|
+
"optional": "ជាជម្រើស",
|
|
60
|
+
"other": "ផ្សេងៗ",
|
|
61
|
+
"patient": "អ្នកជំងឺ",
|
|
62
|
+
"patientNameKnown": "ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?",
|
|
63
|
+
"phoneEmailLabelText": "ទូរស័ព្ទ អ៊ីមែល។ល។",
|
|
64
|
+
"phoneNumberInputLabelText": "លេខទូរស័ព្ទ",
|
|
65
|
+
"postalCode": "លេខកូដប្រៃសណីយ៍",
|
|
66
|
+
"registerPatient": "ចុះឈ្មោះអ្នកជំងឺ",
|
|
67
|
+
"registrationSuccessToastDescription": "អ្នកជំងឺអាចត្រូវបានស្រាវជ្រាវរកពួកគេតាមរយ ប្រើប្រាស់ឈ្មោះឬអត្តលេខរបស់ពួកគេ",
|
|
68
|
+
"registrationSuccessToastTitle": "បង្កើតការចុះឈ្មោះអ្នកជំងឺថ្មី",
|
|
69
|
+
"relationship": "ទំនាក់ទំនង",
|
|
70
|
+
"relationshipPlaceholder": "ទំនាក់ទំនង",
|
|
71
|
+
"relationshipRemovedText": "ការទំនាក់ទំនងត្រូវបានដកចេញ",
|
|
72
|
+
"relationshipToPatient": "ការទាក់ទងទៅនឹងអ្នកជំងឺ",
|
|
73
|
+
"relativeFullNameLabelText": "ឈ្មោះពេញ",
|
|
74
|
+
"relativeNamePlaceholder": "នាមត្រកូលនាមខ្លួន",
|
|
75
|
+
"resetIdentifierTooltip": "រៀបចំឡើងវិញ",
|
|
76
|
+
"restoreRelationshipActionButton": "វិលត្រឡប់មកដើមវិញ",
|
|
77
|
+
"searchAddress": "ស្វែងរកអាសយដ្ឋាន",
|
|
78
|
+
"sexFieldLabelText": "ភេទ",
|
|
79
|
+
"stateProvince": "រដ្ឋ",
|
|
80
|
+
"stroke": "ជំងឺស្ទះសរសៃឈាមខួរក្បាល",
|
|
81
|
+
"unidentifiedPatient": "អ្នកជំងឺមិនបានកំណត់អត្តសញ្ញាណ",
|
|
82
|
+
"unknown": "មិនដឹង",
|
|
83
|
+
"updatePatient": "ធ្វើបច្ចុប្បន្នភាពអ្នកជំងឺ",
|
|
84
|
+
"updationSuccessToastDescription": "ព័ត៌មានរបស់អ្នកជំងឺត្រូវបានធ្វើបច្ចុប្បន្នភាពដោយជោគជ័យ",
|
|
85
|
+
"updationSuccessToastTitle": "ព័ត៌មានលម្អិតអំពីអ្នកជំងឺត្រូវបានធ្វើបច្ចុប្បន្នភាព",
|
|
86
|
+
"years": "ឆ្នាំ",
|
|
87
|
+
"yearsEstimateRequired": "តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ",
|
|
88
|
+
"yes": "បាទ/ចាស"
|
|
89
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('openmrs/default-webpack-config');
|