@kenyaemr/esm-patient-registration-app 5.2.2 → 6.0.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.
Files changed (122) hide show
  1. package/dist/130.js +1 -1
  2. package/dist/130.js.map +1 -1
  3. package/dist/271.js +1 -0
  4. package/dist/319.js +1 -1
  5. package/dist/330.js +1 -1
  6. package/dist/460.js +1 -1
  7. package/dist/537.js +1 -1
  8. package/dist/574.js +1 -1
  9. package/dist/59.js +1 -1
  10. package/dist/59.js.map +1 -1
  11. package/dist/619.js +1 -0
  12. package/dist/619.js.map +1 -0
  13. package/dist/644.js +1 -0
  14. package/dist/735.js +1 -1
  15. package/dist/757.js +1 -1
  16. package/dist/784.js +1 -1
  17. package/dist/788.js +1 -1
  18. package/dist/807.js +1 -1
  19. package/dist/833.js +1 -1
  20. package/dist/895.js +2 -0
  21. package/dist/{388.js.LICENSE.txt → 895.js.LICENSE.txt} +4 -2
  22. package/dist/895.js.map +1 -0
  23. package/dist/{openmrs-esm-patient-registration-app.js → kenyaemr-esm-patient-registration-app.js} +1 -1
  24. package/dist/{openmrs-esm-patient-registration-app.js.buildmanifest.json → kenyaemr-esm-patient-registration-app.js.buildmanifest.json} +117 -73
  25. package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -0
  26. package/dist/main.js +1 -1
  27. package/dist/main.js.LICENSE.txt +4 -2
  28. package/dist/main.js.map +1 -1
  29. package/dist/routes.json +1 -1
  30. package/package.json +6 -5
  31. package/src/add-patient-link.test.tsx +9 -7
  32. package/src/config-schema.ts +31 -38
  33. package/src/constants.ts +1 -1
  34. package/src/offline.resources.ts +13 -18
  35. package/src/offline.ts +8 -6
  36. package/src/patient-registration/before-save-prompt.tsx +2 -1
  37. package/src/patient-registration/field/__mocks__/field.resource.ts +1 -1
  38. package/src/patient-registration/field/address/address-field.component.tsx +5 -4
  39. package/src/patient-registration/field/address/address-hierarchy.resource.tsx +2 -2
  40. package/src/patient-registration/field/address/address-search.component.tsx +1 -14
  41. package/src/patient-registration/field/address/custom-address-field.component.tsx +1 -1
  42. package/src/patient-registration/field/address/tests/address-hierarchy.test.tsx +3 -3
  43. package/src/patient-registration/field/address/tests/address-search-component.test.tsx +14 -7
  44. package/src/patient-registration/field/custom-field.component.tsx +1 -1
  45. package/src/patient-registration/field/dob/dob.component.tsx +2 -2
  46. package/src/patient-registration/field/dob/dob.test.tsx +0 -3
  47. package/src/patient-registration/field/field.component.tsx +4 -1
  48. package/src/patient-registration/field/field.resource.ts +4 -4
  49. package/src/patient-registration/field/field.test.tsx +98 -95
  50. package/src/patient-registration/field/gender/gender-field.component.tsx +4 -4
  51. package/src/patient-registration/field/gender/gender-field.test.tsx +7 -14
  52. package/src/patient-registration/field/id/id-field.component.tsx +6 -6
  53. package/src/patient-registration/field/id/id-field.test.tsx +9 -7
  54. package/src/patient-registration/field/id/identifier-selection-overlay.component.tsx +1 -1
  55. package/src/patient-registration/field/name/name-field.component.tsx +1 -1
  56. package/src/patient-registration/field/obs/obs-field.component.tsx +35 -33
  57. package/src/patient-registration/field/obs/obs-field.test.tsx +106 -28
  58. package/src/patient-registration/field/person-attributes/coded-attributes.component.tsx +1 -1
  59. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +70 -24
  60. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.test.tsx +54 -30
  61. package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +4 -3
  62. package/src/patient-registration/field/person-attributes/person-attribute-field.test.tsx +1 -1
  63. package/src/patient-registration/field/person-attributes/{person-attributes.resource.tsx → person-attributes.resource.ts} +3 -3
  64. package/src/patient-registration/field/person-attributes/text-person-attribute-field.component.tsx +1 -1
  65. package/src/patient-registration/field/phone/phone-field.component.tsx +16 -0
  66. package/src/patient-registration/form-manager.test.ts +1 -1
  67. package/src/patient-registration/form-manager.ts +22 -24
  68. package/src/patient-registration/input/basic-input/select/select-input.test.tsx +3 -3
  69. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.component.tsx +5 -5
  70. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +70 -58
  71. package/src/patient-registration/input/custom-input/identifier/identifier-input.component.tsx +2 -2
  72. package/src/patient-registration/input/custom-input/identifier/identifier-input.test.tsx +2 -5
  73. package/src/patient-registration/input/custom-input/identifier/utils.ts +1 -1
  74. package/src/patient-registration/input/dummy-data/dummy-data-input.component.tsx +1 -1
  75. package/src/patient-registration/input/dummy-data/dummy-data-input.test.tsx +6 -6
  76. package/src/patient-registration/patient-registration-context.ts +3 -4
  77. package/src/patient-registration/patient-registration-hooks.ts +25 -20
  78. package/src/patient-registration/patient-registration-utils.ts +7 -7
  79. package/src/patient-registration/patient-registration.component.tsx +20 -10
  80. package/src/patient-registration/patient-registration.resource.test.tsx +3 -3
  81. package/src/patient-registration/{patient-registration.resource.tsx → patient-registration.resource.ts} +15 -15
  82. package/src/patient-registration/patient-registration.test.tsx +270 -251
  83. package/src/patient-registration/{patient-registration.types.tsx → patient-registration.types.ts} +12 -3
  84. package/src/patient-registration/section/death-info/death-info-section.test.tsx +33 -45
  85. package/src/patient-registration/section/demographics/demographics-section.test.tsx +1 -2
  86. package/src/patient-registration/section/generic-section.component.tsx +1 -1
  87. package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +3 -3
  88. package/src/patient-registration/section/patient-relationships/relationships-section.test.tsx +17 -5
  89. package/src/patient-registration/section/patient-relationships/relationships.resource.tsx +4 -4
  90. package/src/patient-registration/section/section-wrapper.component.tsx +1 -1
  91. package/src/patient-registration/section/section.component.tsx +1 -1
  92. package/src/patient-registration/validation/patient-registration-validation.test.tsx +140 -126
  93. package/src/patient-registration/validation/patient-registration-validation.tsx +54 -46
  94. package/src/patient-verification/patient-verification-hook.tsx +13 -4
  95. package/src/patient-verification/patient-verification-utils.ts +20 -12
  96. package/src/patient-verification/patient-verification.component.tsx +13 -6
  97. package/src/patient-verification/patient-verification.scss +0 -1
  98. package/src/patient-verification/verification-modal/confirm-prompt.component.tsx +2 -11
  99. package/src/routes.json +1 -0
  100. package/src/widgets/cancel-patient-edit.test.tsx +7 -4
  101. package/src/widgets/delete-identifier-confirmation-modal.test.tsx +7 -4
  102. package/src/widgets/display-photo.test.tsx +1 -1
  103. package/src/widgets/edit-patient-details-button.test.tsx +12 -7
  104. package/translations/am.json +30 -14
  105. package/translations/ar.json +30 -14
  106. package/translations/en.json +11 -11
  107. package/translations/es.json +34 -22
  108. package/translations/fr.json +48 -40
  109. package/translations/he.json +22 -2
  110. package/translations/km.json +22 -2
  111. package/translations/zh.json +97 -0
  112. package/translations/zh_CN.json +97 -0
  113. package/tsconfig.json +1 -1
  114. package/__mocks__/autogenerationoptions.mock.ts +0 -34
  115. package/dist/388.js +0 -2
  116. package/dist/388.js.map +0 -1
  117. package/dist/598.js +0 -1
  118. package/dist/598.js.map +0 -1
  119. package/dist/openmrs-esm-patient-registration-app.js.map +0 -1
  120. package/src/patient-registration/field/__mocks__/identifier-types.mock.ts +0 -76
  121. package/src/patient-registration/field/__mocks__/identifiers.mock.ts +0 -27
  122. package/src/patient-registration/field/address/tests/mocks.ts +0 -98
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "addRelationshipButtonText": "Agregar relación",
3
3
  "addressHeader": "Dirección",
4
+ "age": "Age",
4
5
  "allFieldsRequiredText": "Todos los campos son obligatorios a menos que se indique como opcionales",
5
6
  "autoGeneratedPlaceholderText": "Autogenerado",
6
7
  "birthdayNotInTheFuture": "Cumpleaños no puede ser en el futuro",
@@ -8,11 +9,16 @@
8
9
  "birthFieldLabelText": "Nacimiento",
9
10
  "cancel": "Cancelar",
10
11
  "causeOfDeathInputLabel": "Causa de defunción",
11
- "closeOverlay": "Close overlay",
12
+ "closeOverlay": "Cerrar superposición",
13
+ "codedPersonAttributeAnswerSetEmpty": "El campo de atributo de persona codificado '{{codedPersonAttributeFieldId}}' se ha definido con un conjunto de conceptos de respuesta UUID '{{answerConceptSetUuid}}' que no tiene respuestas de concepto.",
14
+ "codedPersonAttributeAnswerSetInvalid": "El campo de atributo de persona codificado '{{codedPersonAttributeFieldId}}' se ha definido con un UUID de conjunto de conceptos de respuesta no válido '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "El campo de atributo de persona '{{codedPersonAttributeFieldId}}' es de tipo 'codificado' pero se ha definido sin UUID de conjunto de conceptos de respuesta. La clave 'answerConceptSetUuid' es requerida.",
12
16
  "configure": "Configurar",
13
- "configureIdentifiers": "Configure identifiers",
17
+ "configureIdentifiers": "Configurar identificadores",
14
18
  "contactSection": "Detalles de Contacto",
19
+ "continue": "Continue to registration",
15
20
  "createNew": "Crear Nuevo/a",
21
+ "dateOfBirth": "Date of birth",
16
22
  "dateOfBirthLabelText": "Fecha de Nacimiento",
17
23
  "deathDateInputLabel": "Fecha de fallecimiento",
18
24
  "deathdayNotInTheFuture": "El día de la muerte no puede ser en el futuro",
@@ -22,20 +28,21 @@
22
28
  "demographicsSection": "Información Básica",
23
29
  "discard": "Descartar",
24
30
  "discardModalBody": "Los cambios realizados en los datos de este paciente no se han guardado. ¿Descartar cambios?",
25
- "discardModalHeader": "Confirmar cambios de descarte",
31
+ "discardModalHeader": "Confirmar descarte de cambios",
26
32
  "dobToggleLabelText": "¿Se conoce la fecha de nacimiento?",
27
33
  "edit": "Editar",
28
34
  "editIdentifierTooltip": "Editar",
29
35
  "editPatientDetails": "Modificar los datos del paciente",
30
- "editPatientDetailsBreadcrumb": "Edit patient details",
36
+ "editPatientDetailsBreadcrumb": "Editar detalles del paciente",
31
37
  "error": "Error",
32
- "errorFetchingOrderedFields": "Error ocurrió al obtener campos ordenados para la jerarquía de direcciones",
38
+ "errorFetchingOrderedFields": "Ocurrió un error al obtener campos ordenados para la jerarquía de direcciones",
33
39
  "estimatedAgeInMonthsLabelText": "Edad estimada en meses",
34
40
  "estimatedAgeInYearsLabelText": "Edad estimada en años",
35
41
  "familyNameLabelText": "Apellidos",
36
42
  "familyNameRequired": "Apellidos es obligatorio",
37
43
  "female": "Femenino",
38
44
  "fullNameLabelText": "Nombre y Apellidos",
45
+ "gender": "Gender",
39
46
  "genderLabelText": "Sexo",
40
47
  "genderRequired": "El sexo es obligatorio",
41
48
  "genderUnspecified": "Género no especificado",
@@ -43,53 +50,58 @@
43
50
  "givenNameRequired": "El nombre es obligatorio",
44
51
  "identifierValueRequired": "El valor del identificador es obligatorio",
45
52
  "idFieldLabelText": "Identificadores",
46
- "IDInstructions": "Select the identifiers you'd like to add for this patient:",
53
+ "IDInstructions": "Selecciona los identificadores que te gustaría agregar para este paciente:",
47
54
  "incompleteForm": "Formulario incompleto",
48
55
  "invalidEmail": "Debe indicar un email válido",
49
56
  "invalidInput": "Entrada no válida",
50
57
  "isDeadInputLabel": "Está muerto",
51
58
  "jumpTo": "Ir a",
52
- "loadingResults": "Cargando resultados",
53
59
  "male": "Masculino",
54
60
  "middleNameLabelText": "Segundo Nombre",
61
+ "nascopNumber": "Nascop facility no",
62
+ "nationalId": "National ID",
55
63
  "negativeMonths": "Meses negativos",
56
64
  "negativeYears": "Años negativos",
57
65
  "no": "No",
58
- "noResultsFound": "No se encuentran resultados",
59
66
  "numberInNameDubious": "Número en nombre es dudoso",
60
- "optional": "opcional",
67
+ "obsFieldUnknownDatatype": "El concepto para el campo de observación '{{fieldDefinitionId}}' tiene un tipo de datos desconocido '{{datatypeName}}'",
68
+ "optional": "Opcional",
61
69
  "other": "Otro",
62
70
  "patient": "Paciente",
71
+ "patientDetailsFound": "Patient information found in the registry, do you want to use the information to continue with registration?",
72
+ "patientName": "Patient name",
63
73
  "patientNameKnown": "¿Se sabe el nombre del paciente?",
64
- "patientRegistrationBreadcrumb": "Patient Registration",
74
+ "patientRegistrationBreadcrumb": "Registro de Pacientes",
65
75
  "registerPatient": "Registrar paciente",
66
- "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
67
- "registerPatientSuccessSnackbarTitle": "New Patient Created",
68
- "registrationErrorSnackbarTitle": "Patient Registration Failed",
76
+ "registerPatientSuccessSnackbarSubtitle": "El paciente ahora se puede encontrar buscándolo por su nombre o número de identificación",
77
+ "registerPatientSuccessSnackbarTitle": "Nuevo paciente creado",
78
+ "registrationErrorSnackbarTitle": "Error en el registro del paciente",
69
79
  "relationship": "Relación",
70
- "relationshipPersonMustExist": "Related person must be an existing person",
80
+ "relationshipPersonMustExist": "La persona relacionada debe ser una persona existente",
71
81
  "relationshipPlaceholder": "Relación",
72
82
  "relationshipRemovedText": "Relación eliminada",
73
83
  "relationshipsSection": "Relaciones",
74
84
  "relationshipToPatient": "Relación con el paciente",
75
85
  "relativeFullNameLabelText": "Nombre y Apellidos",
76
86
  "relativeNamePlaceholder": "Nombre Apellido",
77
- "resetIdentifierTooltip": "resetear",
87
+ "resetIdentifierTooltip": "Resetear",
78
88
  "restoreRelationshipActionButton": "Deshacer",
79
89
  "searchAddress": "Buscar dirección",
80
- "searchIdentifierPlaceholder": "Search identifier",
90
+ "searchIdentifierPlaceholder": "Buscar identificador",
81
91
  "selectAnOption": "Seleccionar una opción",
92
+ "selectCountry": "Select country",
93
+ "selectIdentifierType": "Select identifier type",
82
94
  "sexFieldLabelText": "Sexo",
83
- "source": "Source",
95
+ "source": "Fuente",
84
96
  "stroke": "Ictus",
85
- "submitting": "Submitting",
97
+ "submitting": "Enviando",
86
98
  "unableToFetch": "No se puede obtener el tipo de atributo de persona {{personattributetype}}",
87
99
  "unknown": "Desconocido",
88
- "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
100
+ "unknownPatientAttributeType": "El tipo de atributo del paciente tiene un formato desconocido {{personAttributeTypeFormat}}",
89
101
  "updatePatient": "Paciente Actualizado",
90
- "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
91
- "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
92
- "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
102
+ "updatePatientErrorSnackbarTitle": "Error al actualizar los detalles del paciente",
103
+ "updatePatientSuccessSnackbarSubtitle": "La información del paciente se ha actualizado correctamente",
104
+ "updatePatientSuccessSnackbarTitle": "Detalles del paciente actualizados",
93
105
  "yearsEstimateRequired": "Estimación de años obligatoria",
94
106
  "yes": "Sí"
95
107
  }
@@ -1,95 +1,103 @@
1
1
  {
2
2
  "addRelationshipButtonText": "Ajouter un lien de parenté",
3
3
  "addressHeader": "Adresse",
4
+ "age": "Age",
4
5
  "allFieldsRequiredText": "Tous les champs sont requis sauf si explicitement indiqués facultatifs",
5
- "autoGeneratedPlaceholderText": "Auto-generé",
6
+ "autoGeneratedPlaceholderText": "Auto-généré",
6
7
  "birthdayNotInTheFuture": "La date de naissance ne peut pas être dans le futur",
7
8
  "birthdayRequired": "La date de naissance est requise",
8
9
  "birthFieldLabelText": "Naissance",
9
- "cancel": "Annuller",
10
+ "cancel": "Annuler",
10
11
  "causeOfDeathInputLabel": "Cause de décès",
11
- "closeOverlay": "Close overlay",
12
+ "closeOverlay": "Fermer la superposition",
13
+ "codedPersonAttributeAnswerSetEmpty": "Le champ d'attribut de personne codé '{{codedPersonAttributeFieldId}}' a été défini avec un ensemble de concepts de réponse UUID '{{answerConceptSetUuid}}' qui n'a pas de réponses de concept.",
14
+ "codedPersonAttributeAnswerSetInvalid": "Le champ d'attribut de personne codé '{{codedPersonAttributeFieldId}}' a été défini avec un UUID d'ensemble de concepts de réponse invalide '{{answerConceptSetUuid}}'.",
15
+ "codedPersonAttributeNoAnswerSet": "Le champ d'attribut de personne '{{codedPersonAttributeFieldId}}' est de type 'codé' mais a été défini sans UUID d'ensemble de concepts de réponse. La clé 'answerConceptSetUuid' est requise.",
12
16
  "configure": "Configurer",
13
- "configureIdentifiers": "Configure identifiers",
14
- "contactSection": "Contact Details",
17
+ "configureIdentifiers": "Configurer les identifiants",
18
+ "contactSection": "Détails de contact",
15
19
  "createNew": "Créer un nouveau",
20
+ "dateOfBirth": "Date of birth",
16
21
  "dateOfBirthLabelText": "Date de naissance",
17
22
  "deathDateInputLabel": "Date de décès",
18
23
  "deathdayNotInTheFuture": "Le décès ne peut pas être dans le futur",
19
- "deathSection": "Death Info",
20
- "deleteIdentifierTooltip": "Effacer",
21
- "deleteRelationshipTooltipText": "Effacer",
22
- "demographicsSection": "Basic Info",
24
+ "deathSection": "Informations sur le décès",
25
+ "deleteIdentifierTooltip": "Supprimer",
26
+ "deleteRelationshipTooltipText": "Supprimer",
27
+ "demographicsSection": "Informations de base",
23
28
  "discard": "Abandonner",
24
29
  "discardModalBody": "Les modifications que vous avez apportées aux données de ce patient n'ont pas été enregistrées. Annuler les modifications?",
25
30
  "discardModalHeader": "Confirmer l'abandon des modifications",
26
31
  "dobToggleLabelText": "Date de naissance connue?",
27
- "edit": "Editer",
28
- "editIdentifierTooltip": "Editer",
29
- "editPatientDetails": "Editer les données du patient",
30
- "editPatientDetailsBreadcrumb": "Edit patient details",
31
- "error": "Error",
32
- "errorFetchingOrderedFields": "Error occured fetching ordered fields for address hierarchy",
32
+ "edit": "Éditer",
33
+ "editIdentifierTooltip": "Éditer",
34
+ "editPatientDetails": "Modifier les détails du patient",
35
+ "editPatientDetailsBreadcrumb": "Modifier les détails du patient",
36
+ "error": "Erreur",
37
+ "errorFetchingOrderedFields": "Une erreur s'est produite lors de la récupération des champs ordonnés pour la hiérarchie d'adresse",
33
38
  "estimatedAgeInMonthsLabelText": "Âge estimé en mois",
34
39
  "estimatedAgeInYearsLabelText": "Âge estimé en années",
35
40
  "familyNameLabelText": "Nom de famille",
36
41
  "familyNameRequired": "Le nom de famille est requis",
37
42
  "female": "Femme",
38
- "fullNameLabelText": "Nom et Prénom",
43
+ "fullNameLabelText": "Nom et prénom",
39
44
  "genderLabelText": "Sexe",
40
45
  "genderRequired": "Le genre est requis",
41
46
  "genderUnspecified": "Le genre n'est pas spécifié",
42
47
  "givenNameLabelText": "Prénom",
43
- "givenNameRequired": "Le nom donné est requis",
48
+ "givenNameRequired": "Le prénom est requis",
44
49
  "identifierValueRequired": "La valeur de l'identifiant est requise",
45
50
  "idFieldLabelText": "Identifiants",
46
- "IDInstructions": "Select the identifiers you'd like to add for this patient:",
51
+ "IDInstructions": "Sélectionnez les identifiants que vous souhaitez ajouter pour ce patient:",
47
52
  "incompleteForm": "Formulaire incomplet",
48
- "invalidEmail": "Un email valide est requis",
53
+ "invalidEmail": "Une adresse e-mail valide est requise",
49
54
  "invalidInput": "Entrée invalide",
50
55
  "isDeadInputLabel": "Est décédé",
51
- "jumpTo": "Passer à",
52
- "loadingResults": "Résultats de chargement",
56
+ "jumpTo": "Aller à",
53
57
  "male": "Homme",
54
- "middleNameLabelText": "Deuxième nom",
58
+ "middleNameLabelText": "Deuxième prénom",
55
59
  "negativeMonths": "Mois négatifs",
56
60
  "negativeYears": "Années négatives",
57
61
  "no": "Non",
58
- "noResultsFound": "Aucun résultat trouvé",
59
62
  "numberInNameDubious": "Le chiffre dans le nom est suspect",
63
+ "obsFieldUnknownDatatype": "Le concept pour le champ d'observation '{{fieldDefinitionId}}' a un type de données inconnu '{{datatypeName}}'",
60
64
  "optional": "Optionnel",
65
+ "originFacilityCode": "Origin facility code",
66
+ "originFacilityName": "Origin facility name",
61
67
  "other": "Autre",
62
68
  "patient": "Patient",
69
+ "patientDetailsFound": "Patient information found in the registry, do you want to use the information to continue with registration?",
70
+ "patientName": "Patient name",
63
71
  "patientNameKnown": "Le nom du patient est connu?",
64
- "patientRegistrationBreadcrumb": "Patient Registration",
72
+ "patientRegistrationBreadcrumb": "Enregistrement du patient",
65
73
  "registerPatient": "Enregistrer un patient",
66
- "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
67
- "registerPatientSuccessSnackbarTitle": "New Patient Created",
68
- "registrationErrorSnackbarTitle": "Patient Registration Failed",
74
+ "registerPatientSuccessSnackbarSubtitle": "Le patient peut maintenant être trouvé en le recherchant par son nom ou son numéro d'identification",
75
+ "registerPatientSuccessSnackbarTitle": "Nouveau patient créé",
76
+ "registrationErrorSnackbarTitle": "Échec de l'enregistrement du patient",
69
77
  "relationship": "Relation",
70
78
  "relationshipPersonMustExist": "La personne liée doit être une personne existante",
71
79
  "relationshipPlaceholder": "Relation",
72
80
  "relationshipRemovedText": "Relation supprimée",
73
- "relationshipsSection": "Relationships",
81
+ "relationshipsSection": "Relations",
74
82
  "relationshipToPatient": "Relation avec le patient",
75
83
  "relativeFullNameLabelText": "Personne liée",
76
- "relativeNamePlaceholder": "Prénom Nom de famile",
84
+ "relativeNamePlaceholder": "Prénom Nom de famille",
77
85
  "resetIdentifierTooltip": "Réinitialiser",
78
- "restoreRelationshipActionButton": "Annuler",
79
- "searchAddress": "Chercher l'adresse",
80
- "searchIdentifierPlaceholder": "Search identifier",
81
- "selectAnOption": "Select an option",
86
+ "restoreRelationshipActionButton": "Restaurer",
87
+ "searchAddress": "Rechercher une adresse",
88
+ "searchIdentifierPlaceholder": "Rechercher un identifiant",
89
+ "selectAnOption": "Sélectionner une option",
82
90
  "sexFieldLabelText": "Sexe",
83
91
  "source": "Source",
84
- "stroke": "Accident",
85
- "submitting": "Submitting",
86
- "unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
92
+ "stroke": "Accident vasculaire cérébral",
93
+ "submitting": "En cours de soumission",
94
+ "unableToFetch": "Impossible de récupérer le type d'attribut de personne - {{personattributetype}}",
87
95
  "unknown": "Inconnu",
88
- "unknownPatientAttributeType": "Patient attribute type has unknown format {{personAttributeTypeFormat}}",
96
+ "unknownPatientAttributeType": "Le type d'attribut de patient a un format inconnu {{personAttributeTypeFormat}}",
89
97
  "updatePatient": "Mettre à jour le patient",
90
- "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
91
- "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
92
- "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
98
+ "updatePatientErrorSnackbarTitle": "Échec de la mise à jour des détails du patient",
99
+ "updatePatientSuccessSnackbarSubtitle": "Les informations du patient ont été mises à jour avec succès",
100
+ "updatePatientSuccessSnackbarTitle": "Détails du patient mis à jour",
93
101
  "yearsEstimateRequired": "Estimation du nombre d'années requise",
94
102
  "yes": "Oui"
95
103
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "addRelationshipButtonText": "הוסף יחס",
3
3
  "addressHeader": "כתובת",
4
+ "age": "Age",
4
5
  "allFieldsRequiredText": "כל השדות נדרשים אלא אם צוין אחרת",
5
6
  "autoGeneratedPlaceholderText": "נוצר אוטומטית",
6
7
  "birthdayNotInTheFuture": "תאריך הלידה לא יכול להיות בעתיד",
@@ -8,11 +9,18 @@
8
9
  "birthFieldLabelText": "לידה",
9
10
  "cancel": "ביטול",
10
11
  "causeOfDeathInputLabel": "סיבת המוות",
12
+ "clientRegistryEmpty": "Create & Post Patient",
13
+ "clientVerificationWithClientRegistry": "Client verification with client registry",
11
14
  "closeOverlay": "סגור חיפוש",
15
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
16
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
17
+ "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.",
12
18
  "configure": "הגדר",
13
19
  "configureIdentifiers": "הגדר זיהויים",
14
20
  "contactSection": "פרטי יצירת קשר",
21
+ "continue": "Continue to registration",
15
22
  "createNew": "צור חדש",
23
+ "dateOfBirth": "Date of birth",
16
24
  "dateOfBirthLabelText": "תאריך לידה",
17
25
  "deathDateInputLabel": "תאריך המוות",
18
26
  "deathdayNotInTheFuture": "תאריך המוות לא יכול להיות בעתיד",
@@ -36,6 +44,7 @@
36
44
  "familyNameRequired": "שם משפחה נדרש",
37
45
  "female": "נקבה",
38
46
  "fullNameLabelText": "שם מלא",
47
+ "gender": "Gender",
39
48
  "genderLabelText": "מין",
40
49
  "genderRequired": "מין נדרש",
41
50
  "genderUnspecified": "מין לא מוגדר",
@@ -49,19 +58,26 @@
49
58
  "invalidInput": "קלט לא חוקי",
50
59
  "isDeadInputLabel": "מת?",
51
60
  "jumpTo": "קפיצה ל",
52
- "loadingResults": "טוען תוצאות",
53
61
  "male": "זכר",
54
62
  "middleNameLabelText": "שם תוכני",
63
+ "nascopNumber": "Nascop facility no",
64
+ "nationalId": "National ID",
55
65
  "negativeMonths": "חודשים שליליים",
56
66
  "negativeYears": "שנים שליליות",
57
67
  "no": "לא",
58
- "noResultsFound": "לא נמצאו תוצאות",
59
68
  "numberInNameDubious": "מספר בשם חשוד",
69
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
60
70
  "optional": "אופציונלי",
71
+ "originFacilityCode": "Origin facility code",
72
+ "originFacilityName": "Origin facility name",
61
73
  "other": "אחר",
62
74
  "patient": "מטופל",
75
+ "patientDetailsFound": "Patient information found in the registry, do you want to use the information to continue with registration?",
76
+ "patientName": "Patient name",
63
77
  "patientNameKnown": "שם המטופל ידוע?",
78
+ "patientNotFound": "The patient records could not be found in Client registry, do you want to continue to create and post patient to registry",
64
79
  "patientRegistrationBreadcrumb": "רישום מטופל",
80
+ "postToRegistry": "Post to registry",
65
81
  "registerPatient": "רשום מטופל",
66
82
  "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
67
83
  "registerPatientSuccessSnackbarTitle": "New Patient Created",
@@ -79,6 +95,8 @@
79
95
  "searchAddress": "חיפוש כתובת",
80
96
  "searchIdentifierPlaceholder": "חיפוש זיהוי",
81
97
  "selectAnOption": "בחר אפשרות",
98
+ "selectCountry": "Select country",
99
+ "selectIdentifierType": "Select identifier type",
82
100
  "sexFieldLabelText": "מין",
83
101
  "source": "מקור",
84
102
  "stroke": "שבץ",
@@ -90,6 +108,8 @@
90
108
  "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
91
109
  "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
92
110
  "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
111
+ "useValues": "Use values",
112
+ "validate": "Validate",
93
113
  "yearsEstimateRequired": "נדרש חיזוי שנים",
94
114
  "yes": "כן"
95
115
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "addRelationshipButtonText": "បន្ថែមទំនាក់ទំនង",
3
3
  "addressHeader": "អាសយដ្ឋាន",
4
+ "age": "Age",
4
5
  "allFieldsRequiredText": "តម្រូវឱ្យបំពេញគ្រប់កន្លែងចំហរទាំងអស់ លុះត្រាតែមានសម្គាល់ថាជាជម្រើស",
5
6
  "autoGeneratedPlaceholderText": "ទាញចេញទិន្នន័យដោយស្វ័យប្រវត្តិ",
6
7
  "birthdayNotInTheFuture": "ថ្ងៃខែឆ្នាំកំណើតមិនអាចមាននាពេលអនាគតទេ",
@@ -8,11 +9,18 @@
8
9
  "birthFieldLabelText": "ថ្ងៃខែឆ្នាំកំណើត",
9
10
  "cancel": "បោះបង់ចោល",
10
11
  "causeOfDeathInputLabel": "មូលហេតុនៃការស្លាប់",
12
+ "clientRegistryEmpty": "Create & Post Patient",
13
+ "clientVerificationWithClientRegistry": "Client verification with client registry",
11
14
  "closeOverlay": "បិទការត្រួតលើគ្នា។",
15
+ "codedPersonAttributeAnswerSetEmpty": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
16
+ "codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
17
+ "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.",
12
18
  "configure": "កំណត់រចនាសម្ព័ន្ធ",
13
19
  "configureIdentifiers": "ឯកសារកំណត់អត្តសញ្ញាណផ្សេងទៀត",
14
20
  "contactSection": "ព័ត៌មានមរណភាព",
21
+ "continue": "Continue to registration",
15
22
  "createNew": "បង្កើតថ្មី",
23
+ "dateOfBirth": "Date of birth",
16
24
  "dateOfBirthLabelText": "ថ្ងៃខែឆ្នាំកំណើត",
17
25
  "deathDateInputLabel": "កាលបរិច្ឆេទនៃការស្លាប់",
18
26
  "deathdayNotInTheFuture": "ថ្ងៃស្លាប់មិនអាចមាននាពេលអនាគតទេ។",
@@ -36,6 +44,7 @@
36
44
  "familyNameRequired": "តម្រូវឱ្យបំពេញនាមត្រកូល",
37
45
  "female": "ស្រី",
38
46
  "fullNameLabelText": "ឈ្មោះពេញ",
47
+ "gender": "Gender",
39
48
  "genderLabelText": "ភេទ",
40
49
  "genderRequired": "តម្រូវឱ្យបំពេញភេទ",
41
50
  "genderUnspecified": "ភេទមិនត្រូវបានបញ្ជាក់ទេ",
@@ -49,19 +58,26 @@
49
58
  "invalidInput": "ការបញ្ចូលមិនត្រឹមត្រូវ",
50
59
  "isDeadInputLabel": "គឺស្លាប់",
51
60
  "jumpTo": "រំលងទៅ",
52
- "loadingResults": "កំពុងផ្ទុកលទ្ធផល",
53
61
  "male": "ប្រុស",
54
62
  "middleNameLabelText": "លេខជាឈ្មោះដែលសង្ស័យ",
63
+ "nascopNumber": "Nascop facility no",
64
+ "nationalId": "National ID",
55
65
  "negativeMonths": "ខែអវិជ្ជមាន",
56
66
  "negativeYears": "ឆ្នាំអវិជ្ជមាន",
57
67
  "no": "ទេ",
58
- "noResultsFound": "រកមិនឃើញលទ្ធផលទេ",
59
68
  "numberInNameDubious": "លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ",
69
+ "obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
60
70
  "optional": "ជាជម្រើស",
71
+ "originFacilityCode": "Origin facility code",
72
+ "originFacilityName": "Origin facility name",
61
73
  "other": "ផ្សេងៗ",
62
74
  "patient": "អ្នកជំងឺ",
75
+ "patientDetailsFound": "Patient information found in the registry, do you want to use the information to continue with registration?",
76
+ "patientName": "Patient name",
63
77
  "patientNameKnown": "ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?",
78
+ "patientNotFound": "The patient records could not be found in Client registry, do you want to continue to create and post patient to registry",
64
79
  "patientRegistrationBreadcrumb": "ការចុះឈ្មោះអ្នកជំងឺ",
80
+ "postToRegistry": "Post to registry",
65
81
  "registerPatient": "ចុះឈ្មោះអ្នកជំងឺ",
66
82
  "registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
67
83
  "registerPatientSuccessSnackbarTitle": "New Patient Created",
@@ -79,6 +95,8 @@
79
95
  "searchAddress": "ស្វែងរកអាសយដ្ឋាន",
80
96
  "searchIdentifierPlaceholder": "ស្វែងរកអត្តសញ្ញាណ",
81
97
  "selectAnOption": "យកជម្រើសមួយ",
98
+ "selectCountry": "Select country",
99
+ "selectIdentifierType": "Select identifier type",
82
100
  "sexFieldLabelText": "ភេទ",
83
101
  "source": "ប្រភព",
84
102
  "stroke": "ជំងឺស្ទះសរសៃឈាមខួរក្បាល",
@@ -90,6 +108,8 @@
90
108
  "updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
91
109
  "updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
92
110
  "updatePatientSuccessSnackbarTitle": "Patient Details Updated",
111
+ "useValues": "Use values",
112
+ "validate": "Validate",
93
113
  "yearsEstimateRequired": "តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ",
94
114
  "yes": "បាទ/ចាស"
95
115
  }
@@ -0,0 +1,97 @@
1
+ {
2
+ "addRelationshipButtonText": "添加关系",
3
+ "addressHeader": "地址",
4
+ "allFieldsRequiredText": "所有字段都是必填的,除非标记为可选。",
5
+ "autoGeneratedPlaceholderText": "自动生成",
6
+ "birthdayNotInTheFuture": "生日不能是未来的日期",
7
+ "birthdayRequired": "生日是必填项",
8
+ "birthFieldLabelText": "出生",
9
+ "cancel": "取消",
10
+ "causeOfDeathInputLabel": "死因",
11
+ "closeOverlay": "关闭叠加",
12
+ "codedPersonAttributeAnswerSetEmpty": "编码的人员属性字段'{{codedPersonAttributeFieldId}}'已使用没有任何概念答案的答案概念集UUID'{{answerConceptSetUuid}}'进行定义。",
13
+ "codedPersonAttributeAnswerSetInvalid": "编码的人员属性字段'{{codedPersonAttributeFieldId}}'已使用无效的答案概念集UUID'{{answerConceptSetUuid}}'进行定义。",
14
+ "codedPersonAttributeNoAnswerSet": "人员属性字段'{{codedPersonAttributeFieldId}}'的类型为'coded',但未定义答案概念集UUID。'answerConceptSetUuid'键是必需的。",
15
+ "configure": "配置",
16
+ "configureIdentifiers": "配置ID标识",
17
+ "contactSection": "联系方式",
18
+ "createNew": "新建",
19
+ "dateOfBirthLabelText": "出生日期",
20
+ "deathDateInputLabel": "死亡日期",
21
+ "deathdayNotInTheFuture": "死亡日期不能是未来的日期",
22
+ "deathSection": "死亡信息",
23
+ "deleteIdentifierTooltip": "删除",
24
+ "deleteRelationshipTooltipText": "删除",
25
+ "demographicsSection": "基本信息",
26
+ "discard": "放弃",
27
+ "discardModalBody": "您对该患者的详细信息所做的更改尚未保存。放弃更改吗?",
28
+ "discardModalHeader": "确认放弃更改",
29
+ "dobToggleLabelText": "出生日期已知?",
30
+ "edit": "编辑",
31
+ "editIdentifierTooltip": "编辑",
32
+ "editPatientDetails": "编辑患者详情",
33
+ "editPatientDetailsBreadcrumb": "编辑患者详情",
34
+ "error": "错误",
35
+ "errorFetchingOrderedFields": "获取地址层次结构的排序字段时发生错误",
36
+ "estimatedAgeInMonthsLabelText": "月龄估算",
37
+ "estimatedAgeInYearsLabelText": "年龄估算",
38
+ "familyNameLabelText": "姓氏",
39
+ "familyNameRequired": "姓氏是必填项",
40
+ "female": "女性",
41
+ "fullNameLabelText": "全名",
42
+ "genderLabelText": "性别",
43
+ "genderRequired": "性别是必填项",
44
+ "genderUnspecified": "性别未指定",
45
+ "givenNameLabelText": "名字",
46
+ "givenNameRequired": "名字是必填项",
47
+ "identifierValueRequired": "ID标识是必填项",
48
+ "idFieldLabelText": "ID标识",
49
+ "IDInstructions": "选择您想为该患者添加的ID标识:",
50
+ "incompleteForm": "表单未填完",
51
+ "invalidEmail": "需要提供一个有效的电子邮件地址",
52
+ "invalidInput": "输入无效",
53
+ "isDeadInputLabel": "已故",
54
+ "jumpTo": "跳转至",
55
+ "male": "男性",
56
+ "middleNameLabelText": "中间名",
57
+ "negativeMonths": "负的月份",
58
+ "negativeYears": "负的年份",
59
+ "no": "否",
60
+ "numberInNameDubious": "姓名中含有数字",
61
+ "obsFieldUnknownDatatype": "obs字段'{{fieldDefinitionId}}'的概念具有未知数据类型'{{datatypeName}}'",
62
+ "optional": "可选的",
63
+ "other": "其他",
64
+ "patient": "患者",
65
+ "patientNameKnown": "患者的姓名已知?",
66
+ "patientRegistrationBreadcrumb": "患者注册",
67
+ "registerPatient": "注册患者",
68
+ "registerPatientSuccessSnackbarSubtitle": "现在可以通过姓名或ID号搜索到该患者",
69
+ "registerPatientSuccessSnackbarTitle": "新患者已创建",
70
+ "registrationErrorSnackbarTitle": "患者注册失败",
71
+ "relationship": "关系",
72
+ "relationshipPersonMustExist": "关系人必须是现有的人员",
73
+ "relationshipPlaceholder": "关系",
74
+ "relationshipRemovedText": "关系已移除",
75
+ "relationshipsSection": "关系人信息",
76
+ "relationshipToPatient": "与患者的关系",
77
+ "relativeFullNameLabelText": "关系人",
78
+ "relativeNamePlaceholder": "名字 姓氏",
79
+ "resetIdentifierTooltip": "重置",
80
+ "restoreRelationshipActionButton": "撤销",
81
+ "searchAddress": "搜索地址",
82
+ "searchIdentifierPlaceholder": "搜索ID标识",
83
+ "selectAnOption": "选择一个选项",
84
+ "sexFieldLabelText": "性别",
85
+ "source": "来源",
86
+ "stroke": "卒中",
87
+ "submitting": "提交中",
88
+ "unableToFetch": "无法获取人员属性类型{{personattributetype}}",
89
+ "unknown": "未知",
90
+ "unknownPatientAttributeType": "患者属性类型具有未知格式{{personAttributeTypeFormat}}",
91
+ "updatePatient": "更新患者",
92
+ "updatePatientErrorSnackbarTitle": "患者详情更新失败",
93
+ "updatePatientSuccessSnackbarSubtitle": "患者的信息已成功更新",
94
+ "updatePatientSuccessSnackbarTitle": "患者详情已更新",
95
+ "yearsEstimateRequired": "需要年龄估算",
96
+ "yes": "是"
97
+ }