@kenyaemr/esm-patient-registration-app 8.0.1-pre.95 → 8.0.2
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/.turbo/turbo-build.log +23 -22
- package/dist/108.js +1 -0
- package/dist/108.js.map +1 -0
- package/dist/130.js +1 -1
- package/dist/130.js.LICENSE.txt +2 -0
- package/dist/130.js.map +1 -1
- package/dist/2.js +1 -0
- package/dist/2.js.map +1 -0
- package/dist/250.js +1 -0
- package/dist/250.js.map +1 -0
- package/dist/271.js +1 -1
- package/dist/319.js +1 -1
- package/dist/325.js +1 -0
- package/dist/325.js.map +1 -0
- package/dist/372.js +2 -0
- package/dist/372.js.map +1 -0
- package/dist/460.js +1 -1
- package/dist/574.js +1 -1
- package/dist/644.js +1 -1
- package/dist/66.js +1 -0
- package/dist/66.js.map +1 -0
- package/dist/662.js +1 -0
- package/dist/662.js.map +1 -0
- package/dist/757.js +1 -1
- package/dist/{59.js → 76.js} +1 -1
- package/dist/{59.js.map → 76.js.map} +1 -1
- package/dist/788.js +1 -1
- package/dist/807.js +1 -1
- package/dist/833.js +1 -1
- package/dist/895.js +2 -0
- package/dist/895.js.LICENSE.txt +34 -0
- package/dist/895.js.map +1 -0
- package/dist/kenyaemr-esm-patient-registration-app.js +1 -1
- package/dist/kenyaemr-esm-patient-registration-app.js.buildmanifest.json +161 -188
- package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +10 -0
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package-lock.json +6047 -0
- package/package.json +3 -4
- package/src/client-registry/client-registry.component.tsx +22 -0
- package/src/client-registry/hie-client-registry/hie-client-registry.component.tsx +134 -0
- package/src/client-registry/hie-client-registry/hie-client-registry.scss +53 -0
- package/src/client-registry/hie-client-registry/hie-resource.ts +162 -0
- package/src/client-registry/hie-client-registry/hie-types.ts +29 -0
- package/src/client-registry/hie-client-registry/modal/confirm-hie.modal.tsx +82 -0
- package/src/client-registry/hie-client-registry/modal/confirm-hie.scss +10 -0
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification-hook.tsx +2 -2
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification-utils.ts +1 -1
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification.component.tsx +4 -1
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification.scss +17 -1
- package/src/{patient-verification → client-registry/patient-verification}/verification-modal/empty-prompt.component.tsx +9 -6
- package/src/config-schema.ts +72 -2
- package/src/index.ts +6 -6
- package/src/patient-registration/field/cause-of-death/cause-of-death.component.tsx +98 -0
- package/src/patient-registration/field/date-and-time-of-death/date-and-time-of-death.component.tsx +84 -0
- package/src/patient-registration/field/dob/dob.component.tsx +21 -7
- package/src/patient-registration/field/field.component.tsx +11 -5
- package/src/patient-registration/field/field.resource.ts +11 -4
- package/src/patient-registration/field/field.scss +44 -5
- package/src/patient-registration/field/gender/gender-field.component.tsx +2 -1
- package/src/patient-registration/field/gender/gender-field.test.tsx +1 -0
- package/src/patient-registration/field/id/id-field.component.tsx +8 -6
- package/src/patient-registration/field/id/id-field.test.tsx +27 -8
- package/src/patient-registration/field/name/name-field.component.tsx +5 -1
- package/src/patient-registration/field/obs/obs-field.component.tsx +1 -1
- package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +1 -0
- package/src/patient-registration/field/person-attributes/custom-person-attribute-field.component.tsx +76 -27
- package/src/patient-registration/field/person-attributes/location-person-attribute-field.component.tsx +105 -0
- package/src/patient-registration/field/person-attributes/location-person-attribute-field.resource.tsx +48 -0
- package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +12 -1
- package/src/patient-registration/field/person-attributes/useUpdateIdentifierRequirement.tsx +83 -0
- package/src/patient-registration/form-manager.test.ts +21 -0
- package/src/patient-registration/form-manager.ts +40 -20
- package/src/patient-registration/input/basic-input/input/input.component.tsx +5 -1
- package/src/patient-registration/input/custom-input/identifier/identifier-input.component.tsx +18 -10
- package/src/patient-registration/input/custom-input/identifier/identifier-input.test.tsx +166 -67
- package/src/patient-registration/input/dummy-data/dummy-data-input.component.tsx +3 -0
- package/src/patient-registration/input/input.scss +5 -0
- package/src/patient-registration/patient-registration-context.ts +4 -3
- package/src/patient-registration/patient-registration-hooks.ts +67 -9
- package/src/patient-registration/patient-registration-utils.ts +3 -7
- package/src/patient-registration/patient-registration.component.tsx +44 -30
- package/src/patient-registration/patient-registration.resource.ts +8 -0
- package/src/patient-registration/patient-registration.test.tsx +9 -3
- package/src/patient-registration/patient-registration.types.ts +4 -1
- package/src/patient-registration/section/death-info/death-info-section.component.tsx +22 -17
- package/src/patient-registration/section/death-info/death-info-section.test.tsx +4 -14
- package/src/patient-registration/section/section.component.tsx +1 -1
- package/src/patient-registration/section/section.scss +5 -0
- package/src/patient-registration/validation/{patient-registration-validation.test.tsx → patient-registration-validation.test.ts} +26 -4
- package/src/patient-registration/validation/patient-registration-validation.ts +126 -0
- package/src/routes.json +14 -17
- package/src/widgets/cancel-patient-edit.modal.tsx +33 -0
- package/src/widgets/cancel-patient-edit.test.tsx +2 -3
- package/src/widgets/delete-identifier-confirmation.modal.tsx +22 -15
- package/src/widgets/delete-identifier-confirmation.test.tsx +2 -1
- package/translations/am.json +36 -25
- package/translations/ar.json +37 -26
- package/translations/en.json +51 -20
- package/translations/es.json +38 -26
- package/translations/fr.json +47 -35
- package/translations/he.json +37 -30
- package/translations/km.json +37 -30
- package/translations/zh.json +37 -20
- package/translations/zh_CN.json +37 -20
- package/dist/152.js +0 -1
- package/dist/152.js.map +0 -1
- package/dist/255.js +0 -2
- package/dist/255.js.map +0 -1
- package/dist/303.js +0 -1
- package/dist/303.js.map +0 -1
- package/dist/330.js +0 -1
- package/dist/330.js.map +0 -1
- package/dist/564.js +0 -1
- package/dist/564.js.map +0 -1
- package/dist/623.js +0 -1
- package/dist/623.js.map +0 -1
- package/dist/729.js +0 -1
- package/dist/729.js.map +0 -1
- package/dist/735.js +0 -1
- package/dist/735.js.map +0 -1
- package/dist/831.js +0 -2
- package/dist/831.js.LICENSE.txt +0 -14
- package/dist/831.js.map +0 -1
- package/src/patient-registration/validation/patient-registration-validation.tsx +0 -60
- package/src/widgets/cancel-patient-edit.component.tsx +0 -37
- package/src/widgets/delete-identifier-confirmation.scss +0 -34
- /package/dist/{255.js.LICENSE.txt → 372.js.LICENSE.txt} +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/assets/counties.json +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/assets/verification-assets.ts +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/verification-modal/confirm-prompt.component.tsx +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/verification-types.ts +0 -0
package/translations/es.json
CHANGED
|
@@ -4,46 +4,56 @@
|
|
|
4
4
|
"age": "Age",
|
|
5
5
|
"allFieldsRequiredText": "Todos los campos son obligatorios a menos que se indique como opcionales",
|
|
6
6
|
"autoGeneratedPlaceholderText": "Autogenerado",
|
|
7
|
-
"birthdayNotInTheFuture": "
|
|
7
|
+
"birthdayNotInTheFuture": "La fecha de nacimiento no puede ser en el futuro",
|
|
8
|
+
"birthdayNotOver140YearsAgo": "La fecha de nacimiento no puede ser de hace más de 140 años",
|
|
8
9
|
"birthdayRequired": "Cumpleaños es obligatorio",
|
|
9
10
|
"birthFieldLabelText": "Nacimiento",
|
|
10
11
|
"cancel": "Cancelar",
|
|
11
|
-
"causeOfDeathInputLabel": "Causa de
|
|
12
|
+
"causeOfDeathInputLabel": "Causa de muerte",
|
|
12
13
|
"closeOverlay": "Cerrar superposición",
|
|
13
14
|
"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
15
|
"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
16
|
"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.",
|
|
16
17
|
"configure": "Configurar",
|
|
17
18
|
"configureIdentifiers": "Configurar identificadores",
|
|
18
|
-
"
|
|
19
|
+
"confirmDiscardChangesBody": "Tus cambios sin guardar serán perdidos si procedes a descartar el formulario",
|
|
20
|
+
"confirmDiscardChangesTitle": "¿Estás seguro de que deseas descartar estos cambios?",
|
|
21
|
+
"confirmIdentifierDeletionText": "¿Estás seguro de que deseas eliminar este identificador?",
|
|
19
22
|
"contactSection": "Detalles de Contacto",
|
|
20
|
-
"createNewPatient": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"dateOfBirthLabelText": "Fecha de Nacimiento",
|
|
23
|
+
"createNewPatient": "Crear nuevo paciente",
|
|
24
|
+
"dateOfBirthLabelText": "Fecha de nacimiento",
|
|
25
|
+
"deathCauseRequired": "La causa de muerte es obligatoria",
|
|
26
|
+
"deathDateInFuture": "La fecha de fallecimiento no puede ser en el futuro",
|
|
25
27
|
"deathDateInputLabel": "Fecha de fallecimiento",
|
|
26
|
-
"
|
|
28
|
+
"deathDateRequired": "La fecha de nacimiento es obligatoria",
|
|
29
|
+
"deathdayInvalidDate": "La fecha y hora del fallecimiento no pueden ser anteriores a la fecha de nacimiento",
|
|
30
|
+
"deathdayIsRequired": "La fecha de fallecimiento es obligatoria cuando el paciente se marca como fallecido",
|
|
31
|
+
"deathdayNotInTheFuture": "",
|
|
27
32
|
"deathSection": "Información de Fallecimiento",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
33
|
+
"deathTimeFormatInvalid": "El formato de hora es inválido",
|
|
34
|
+
"deathTimeFormatRequired": "El formato de hora es obligatorio",
|
|
35
|
+
"deathTimeInvalid": "La hora no coincide con el formato 'hh:mm'",
|
|
36
|
+
"deathTimeRequired": "La hora de fallecimiento es requerida",
|
|
37
|
+
"deleteIdentifierModalHeading": "¿Eliminar identificador?",
|
|
38
|
+
"deleteIdentifierModalText": "tiene un valor de",
|
|
30
39
|
"deleteIdentifierTooltip": "Eliminar",
|
|
31
40
|
"deleteRelationshipTooltipText": "Eliminar",
|
|
32
41
|
"demographicsSection": "Información Básica",
|
|
33
42
|
"discard": "Descartar",
|
|
34
|
-
"discardModalBody": "Los cambios realizados en los datos de este paciente no se han guardado. ¿Descartar cambios?",
|
|
35
|
-
"discardModalHeader": "Confirmar descarte de cambios",
|
|
36
43
|
"dobToggleLabelText": "¿Se conoce la fecha de nacimiento?",
|
|
37
44
|
"editIdentifierTooltip": "Editar",
|
|
38
45
|
"editPatientDetails": "Modificar los datos del paciente",
|
|
39
46
|
"editPatientDetailsBreadcrumb": "Editar detalles del paciente",
|
|
47
|
+
"enterNonCodedCauseOfDeath": "Ingresar causa del fallecimiento no-codificada",
|
|
40
48
|
"error": "Error",
|
|
49
|
+
"errorFetchingCodedCausesOfDeath": "Error al obtener causas del fallecimiento codificadas",
|
|
41
50
|
"errorFetchingOrderedFields": "Ocurrió un error al obtener campos ordenados para la jerarquía de direcciones",
|
|
42
51
|
"estimatedAgeInMonthsLabelText": "Edad estimada en meses",
|
|
43
52
|
"estimatedAgeInYearsLabelText": "Edad estimada en años",
|
|
44
53
|
"familyNameLabelText": "Apellidos",
|
|
45
54
|
"familyNameRequired": "Apellidos es obligatorio",
|
|
46
55
|
"female": "Femenino",
|
|
56
|
+
"fieldsWithErrors": "Los siguientes campos tienen errores:",
|
|
47
57
|
"fullNameLabelText": "Nombre y Apellidos",
|
|
48
58
|
"gender": "Gender",
|
|
49
59
|
"genderLabelText": "Sexo",
|
|
@@ -54,18 +64,18 @@
|
|
|
54
64
|
"identifierValueRequired": "El valor del identificador es obligatorio",
|
|
55
65
|
"idFieldLabelText": "Identificadores",
|
|
56
66
|
"IDInstructions": "Selecciona los identificadores que te gustaría agregar para este paciente:",
|
|
57
|
-
"
|
|
58
|
-
"invalidEmail": "Debe indicar un email válido",
|
|
67
|
+
"invalidEmail": "Email inválido",
|
|
59
68
|
"invalidInput": "Entrada no válida",
|
|
60
|
-
"isDeadInputLabel": "Está
|
|
69
|
+
"isDeadInputLabel": "Está fallecido",
|
|
61
70
|
"jumpTo": "Ir a",
|
|
62
71
|
"male": "Masculino",
|
|
63
72
|
"middleNameLabelText": "Segundo Nombre",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"negativeMonths": "Meses negativos",
|
|
67
|
-
"negativeYears": "Años negativos",
|
|
73
|
+
"negativeMonths": "Los meses estimados no pueden ser negativos",
|
|
74
|
+
"negativeYears": "Los años estimados no pueden ser negativos",
|
|
68
75
|
"no": "No",
|
|
76
|
+
"nonCodedCauseOfDeath": "Causa del fallecimiento no-codificada",
|
|
77
|
+
"nonCodedCauseOfDeathRequired": "La causa del fallecimiento es obligatoria",
|
|
78
|
+
"nonsensicalYears": "Los años estimados no pueden ser mayores a 140",
|
|
69
79
|
"numberInNameDubious": "Número en nombre es dudoso",
|
|
70
80
|
"obsFieldUnknownDatatype": "El concepto para el campo de observación '{{fieldDefinitionId}}' tiene un tipo de datos desconocido '{{datatypeName}}'",
|
|
71
81
|
"optional": "Opcional",
|
|
@@ -75,6 +85,7 @@
|
|
|
75
85
|
"patientName": "Patient name",
|
|
76
86
|
"patientNameKnown": "¿Se sabe el nombre del paciente?",
|
|
77
87
|
"patientRegistrationBreadcrumb": "Registro de Pacientes",
|
|
88
|
+
"refreshOrContactAdmin": "Intente refrescar la página o contactar al administrador de tu sistema",
|
|
78
89
|
"registerPatient": "Registrar paciente",
|
|
79
90
|
"registerPatientSuccessSnackbarSubtitle": "El paciente ahora se puede encontrar buscándolo por su nombre o número de identificación",
|
|
80
91
|
"registerPatientSuccessSnackbarTitle": "Nuevo paciente creado",
|
|
@@ -85,9 +96,9 @@
|
|
|
85
96
|
"relationshipRemovedText": "Relación eliminada",
|
|
86
97
|
"relationshipsSection": "Relaciones",
|
|
87
98
|
"relationshipToPatient": "Relación con el paciente",
|
|
88
|
-
"relativeFullNameLabelText": "Nombre
|
|
99
|
+
"relativeFullNameLabelText": "Nombre completo",
|
|
89
100
|
"relativeNamePlaceholder": "Nombre Apellido",
|
|
90
|
-
"removeIdentifierButton": "
|
|
101
|
+
"removeIdentifierButton": "Eliminar identificador",
|
|
91
102
|
"resetIdentifierTooltip": "Resetear",
|
|
92
103
|
"restoreRelationshipActionButton": "Deshacer",
|
|
93
104
|
"searchAddress": "Buscar dirección",
|
|
@@ -97,15 +108,16 @@
|
|
|
97
108
|
"selectIdentifierType": "Select identifier type",
|
|
98
109
|
"sexFieldLabelText": "Sexo",
|
|
99
110
|
"source": "Fuente",
|
|
100
|
-
"stroke": "Ictus",
|
|
101
111
|
"submitting": "Enviando",
|
|
102
|
-
"
|
|
112
|
+
"timeFormat": "Formato de hora",
|
|
113
|
+
"timeOfDeathInputLabel": "Hora del fallecimiento (hh:mm)",
|
|
114
|
+
"unableToFetch": "No se puede obtener el tipo de atributo de persona - {{personattributetype}}",
|
|
103
115
|
"unknown": "Desconocido",
|
|
104
116
|
"unknownPatientAttributeType": "El tipo de atributo del paciente tiene un formato desconocido {{personAttributeTypeFormat}}",
|
|
105
|
-
"updatePatient": "
|
|
117
|
+
"updatePatient": "Actualizar paciente",
|
|
106
118
|
"updatePatientErrorSnackbarTitle": "Error al actualizar los detalles del paciente",
|
|
107
119
|
"updatePatientSuccessSnackbarSubtitle": "La información del paciente se ha actualizado correctamente",
|
|
108
120
|
"updatePatientSuccessSnackbarTitle": "Detalles del paciente actualizados",
|
|
109
|
-
"yearsEstimateRequired": "
|
|
121
|
+
"yearsEstimateRequired": "Los años estimados son obligatorios",
|
|
110
122
|
"yes": "Sí"
|
|
111
123
|
}
|
package/translations/fr.json
CHANGED
|
@@ -1,78 +1,89 @@
|
|
|
1
1
|
{
|
|
2
|
-
"addRelationshipButtonText": "Ajouter
|
|
2
|
+
"addRelationshipButtonText": "Ajouter une relation",
|
|
3
3
|
"addressHeader": "Adresse",
|
|
4
4
|
"age": "Age",
|
|
5
5
|
"allFieldsRequiredText": "Tous les champs sont requis sauf si explicitement indiqués facultatifs",
|
|
6
|
-
"autoGeneratedPlaceholderText": "
|
|
6
|
+
"autoGeneratedPlaceholderText": "Généré automatiquement",
|
|
7
7
|
"birthdayNotInTheFuture": "La date de naissance ne peut pas être dans le futur",
|
|
8
|
+
"birthdayNotOver140YearsAgo": "La date de naissance ne peut être antérieure à 140 ans",
|
|
8
9
|
"birthdayRequired": "La date de naissance est requise",
|
|
9
10
|
"birthFieldLabelText": "Naissance",
|
|
10
11
|
"cancel": "Annuler",
|
|
11
|
-
"causeOfDeathInputLabel": "Cause
|
|
12
|
+
"causeOfDeathInputLabel": "Cause du décès",
|
|
12
13
|
"closeOverlay": "Fermer la superposition",
|
|
13
14
|
"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
15
|
"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
16
|
"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.",
|
|
16
17
|
"configure": "Configurer",
|
|
17
18
|
"configureIdentifiers": "Configurer les identifiants",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
19
|
+
"confirmDiscardChangesBody": " Vos modifications non enregistrées seront perdues si vous supprimez le formulaire.",
|
|
20
|
+
"confirmDiscardChangesTitle": " Êtes-vous sûr de vouloir annuler ces modifications ?",
|
|
21
|
+
"confirmIdentifierDeletionText": "Voulez-vous vraiment supprimer cet identifiant?",
|
|
22
|
+
"contactSection": "Coordonnées du contact",
|
|
23
|
+
"createNewPatient": "Créer un nouveau patient",
|
|
23
24
|
"dateOfBirthLabelText": "Date de naissance",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
25
|
+
"deathCauseRequired": "La date du décès est requise",
|
|
26
|
+
"deathDateInFuture": "La date de décès ne peut être dans le future",
|
|
27
|
+
"deathDateInputLabel": "Date du décès",
|
|
28
|
+
"deathDateRequired": "La date du décès est requise",
|
|
29
|
+
"deathdayInvalidDate": "La date et l'heure de décès ne peuvent être antérieures à la date de naissance",
|
|
30
|
+
"deathdayIsRequired": "La date de décès est obligatoire quand le patient est déclaré décédé",
|
|
31
|
+
"deathdayNotInTheFuture": "",
|
|
26
32
|
"deathSection": "Informations sur le décès",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
33
|
+
"deathTimeFormatInvalid": "Format de temps invalide",
|
|
34
|
+
"deathTimeFormatRequired": "Un format de temps est obligatoire",
|
|
35
|
+
"deathTimeInvalid": "Le temps ne correspond pas au format 'hh:mm'",
|
|
36
|
+
"deathTimeRequired": "L'heure de décès est requis",
|
|
37
|
+
"deleteIdentifierModalHeading": "Supprimer l'identifiant?",
|
|
38
|
+
"deleteIdentifierModalText": "a une valeur de",
|
|
29
39
|
"deleteIdentifierTooltip": "Supprimer",
|
|
30
40
|
"deleteRelationshipTooltipText": "Supprimer",
|
|
31
|
-
"demographicsSection": "Informations
|
|
41
|
+
"demographicsSection": "Informations basiques",
|
|
32
42
|
"discard": "Abandonner",
|
|
33
|
-
"discardModalBody": "Les modifications que vous avez apportées aux données de ce patient n'ont pas été enregistrées. Annuler les modifications?",
|
|
34
|
-
"discardModalHeader": "Confirmer l'abandon des modifications",
|
|
35
43
|
"dobToggleLabelText": "Date de naissance connue?",
|
|
36
44
|
"editIdentifierTooltip": "Éditer",
|
|
37
45
|
"editPatientDetails": "Modifier les détails du patient",
|
|
38
46
|
"editPatientDetailsBreadcrumb": "Modifier les détails du patient",
|
|
47
|
+
"enterNonCodedCauseOfDeath": " Entrez la cause du décès non codée",
|
|
39
48
|
"error": "Erreur",
|
|
49
|
+
"errorFetchingCodedCausesOfDeath": " Erreur lors de la récupération des causes de décès codées",
|
|
40
50
|
"errorFetchingOrderedFields": "Une erreur s'est produite lors de la récupération des champs ordonnés pour la hiérarchie d'adresse",
|
|
41
51
|
"estimatedAgeInMonthsLabelText": "Âge estimé en mois",
|
|
42
52
|
"estimatedAgeInYearsLabelText": "Âge estimé en années",
|
|
43
53
|
"familyNameLabelText": "Nom de famille",
|
|
44
54
|
"familyNameRequired": "Le nom de famille est requis",
|
|
45
|
-
"female": "
|
|
55
|
+
"female": "Féminin",
|
|
56
|
+
"fieldsWithErrors": "Ces lignes suivantes contiennent des erreurs:",
|
|
46
57
|
"fullNameLabelText": "Nom et prénom",
|
|
47
58
|
"genderLabelText": "Sexe",
|
|
48
59
|
"genderRequired": "Le genre est requis",
|
|
49
|
-
"genderUnspecified": "
|
|
60
|
+
"genderUnspecified": "Genre non précisé",
|
|
50
61
|
"givenNameLabelText": "Prénom",
|
|
51
62
|
"givenNameRequired": "Le prénom est requis",
|
|
52
63
|
"identifierValueRequired": "La valeur de l'identifiant est requise",
|
|
53
64
|
"idFieldLabelText": "Identifiants",
|
|
54
65
|
"IDInstructions": "Sélectionnez les identifiants que vous souhaitez ajouter pour ce patient:",
|
|
55
|
-
"
|
|
56
|
-
"invalidEmail": "Une adresse e-mail valide est requise",
|
|
66
|
+
"invalidEmail": "Courriel non valide",
|
|
57
67
|
"invalidInput": "Entrée invalide",
|
|
58
|
-
"isDeadInputLabel": "Est décédé",
|
|
68
|
+
"isDeadInputLabel": "Est décédé(e)",
|
|
59
69
|
"jumpTo": "Aller à",
|
|
60
|
-
"male": "
|
|
61
|
-
"middleNameLabelText": "Deuxième
|
|
62
|
-
"negativeMonths": "
|
|
63
|
-
"negativeYears": "
|
|
70
|
+
"male": "Masculin",
|
|
71
|
+
"middleNameLabelText": "Deuxième Prénom",
|
|
72
|
+
"negativeMonths": "L'estimation du mois ne peut être une valeur négative",
|
|
73
|
+
"negativeYears": "L'estimation de l'année ne peut être une valeur négative",
|
|
64
74
|
"no": "Non",
|
|
75
|
+
"nonCodedCauseOfDeath": "Cause de décès non-codé",
|
|
76
|
+
"nonCodedCauseOfDeathRequired": "La cause du décès est requise",
|
|
77
|
+
"nonsensicalYears": "L'âge estimé ne peut excéder 140 ans",
|
|
65
78
|
"numberInNameDubious": "Le chiffre dans le nom est suspect",
|
|
66
79
|
"obsFieldUnknownDatatype": "Le concept pour le champ d'observation '{{fieldDefinitionId}}' a un type de données inconnu '{{datatypeName}}'",
|
|
67
80
|
"optional": "Optionnel",
|
|
68
81
|
"originFacilityCode": "Origin facility code",
|
|
69
82
|
"originFacilityName": "Origin facility name",
|
|
70
83
|
"other": "Autre",
|
|
71
|
-
"
|
|
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": "Le nom du patient est connu?",
|
|
84
|
+
"patientNameKnown": "Le nom du patient est-il connu?",
|
|
75
85
|
"patientRegistrationBreadcrumb": "Enregistrement du patient",
|
|
86
|
+
"refreshOrContactAdmin": "Essayer de rafraichir la page ou contacter l'administrateur",
|
|
76
87
|
"registerPatient": "Enregistrer un patient",
|
|
77
88
|
"registerPatientSuccessSnackbarSubtitle": "Le patient peut maintenant être trouvé en le recherchant par son nom ou son numéro d'identification",
|
|
78
89
|
"registerPatientSuccessSnackbarTitle": "Nouveau patient créé",
|
|
@@ -83,25 +94,26 @@
|
|
|
83
94
|
"relationshipRemovedText": "Relation supprimée",
|
|
84
95
|
"relationshipsSection": "Relations",
|
|
85
96
|
"relationshipToPatient": "Relation avec le patient",
|
|
86
|
-
"relativeFullNameLabelText": "
|
|
87
|
-
"relativeNamePlaceholder": "Prénom Nom de famille",
|
|
88
|
-
"removeIdentifierButton": "
|
|
97
|
+
"relativeFullNameLabelText": "Nom complet",
|
|
98
|
+
"relativeNamePlaceholder": "Prénom et Nom de famille",
|
|
99
|
+
"removeIdentifierButton": "Supprimer l'identifiant",
|
|
89
100
|
"resetIdentifierTooltip": "Réinitialiser",
|
|
90
101
|
"restoreRelationshipActionButton": "Restaurer",
|
|
91
|
-
"searchAddress": "Rechercher
|
|
102
|
+
"searchAddress": "Rechercher l'adresse",
|
|
92
103
|
"searchIdentifierPlaceholder": "Rechercher un identifiant",
|
|
93
104
|
"selectAnOption": "Sélectionner une option",
|
|
94
105
|
"sexFieldLabelText": "Sexe",
|
|
95
106
|
"source": "Source",
|
|
96
|
-
"stroke": "Accident vasculaire cérébral",
|
|
97
107
|
"submitting": "En cours de soumission",
|
|
98
|
-
"
|
|
108
|
+
"timeFormat": "Format de temps",
|
|
109
|
+
"timeOfDeathInputLabel": "Heure de décès (hh:mm)",
|
|
110
|
+
"unableToFetch": " Impossible de récupérer le type d'attribut de la personne - {{personattributetype}}",
|
|
99
111
|
"unknown": "Inconnu",
|
|
100
112
|
"unknownPatientAttributeType": "Le type d'attribut de patient a un format inconnu {{personAttributeTypeFormat}}",
|
|
101
113
|
"updatePatient": "Mettre à jour le patient",
|
|
102
114
|
"updatePatientErrorSnackbarTitle": "Échec de la mise à jour des détails du patient",
|
|
103
115
|
"updatePatientSuccessSnackbarSubtitle": "Les informations du patient ont été mises à jour avec succès",
|
|
104
116
|
"updatePatientSuccessSnackbarTitle": "Détails du patient mis à jour",
|
|
105
|
-
"yearsEstimateRequired": "
|
|
117
|
+
"yearsEstimateRequired": "estimation de l'année obligatoire",
|
|
106
118
|
"yes": "Oui"
|
|
107
119
|
}
|
package/translations/he.json
CHANGED
|
@@ -4,70 +4,78 @@
|
|
|
4
4
|
"age": "Age",
|
|
5
5
|
"allFieldsRequiredText": "כל השדות נדרשים אלא אם צוין אחרת",
|
|
6
6
|
"autoGeneratedPlaceholderText": "נוצר אוטומטית",
|
|
7
|
-
"birthdayNotInTheFuture": "
|
|
7
|
+
"birthdayNotInTheFuture": "Birthday cannot be in future",
|
|
8
|
+
"birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
|
|
8
9
|
"birthdayRequired": "תאריך הלידה נדרש",
|
|
9
10
|
"birthFieldLabelText": "לידה",
|
|
10
11
|
"cancel": "ביטול",
|
|
11
|
-
"causeOfDeathInputLabel": "
|
|
12
|
-
"clientRegistryEmpty": "Create & Post Patient",
|
|
13
|
-
"clientVerificationWithClientRegistry": "Client verification with client registry",
|
|
12
|
+
"causeOfDeathInputLabel": "Cause of death",
|
|
14
13
|
"closeOverlay": "סגור חיפוש",
|
|
15
14
|
"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
15
|
"codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
|
|
17
16
|
"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.",
|
|
18
17
|
"configure": "הגדר",
|
|
19
18
|
"configureIdentifiers": "הגדר זיהויים",
|
|
19
|
+
"confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
|
|
20
|
+
"confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
|
|
20
21
|
"confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
|
|
21
22
|
"contactSection": "פרטי יצירת קשר",
|
|
22
23
|
"createNewPatient": "Create new patient",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
24
|
+
"dateOfBirthLabelText": "Date of birth",
|
|
25
|
+
"deathCauseRequired": "Cause of death is required",
|
|
26
|
+
"deathDateInFuture": "Death date cannot be in future",
|
|
27
|
+
"deathDateInputLabel": "Date of death",
|
|
28
|
+
"deathDateRequired": "Death date is required",
|
|
29
|
+
"deathdayInvalidDate": "Death date and time cannot be before the birthday",
|
|
30
|
+
"deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
|
|
31
|
+
"deathdayNotInTheFuture": "",
|
|
29
32
|
"deathSection": "מידע על המוות",
|
|
33
|
+
"deathTimeFormatInvalid": "Time format is invalid",
|
|
34
|
+
"deathTimeFormatRequired": "Time format is required",
|
|
35
|
+
"deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
|
|
36
|
+
"deathTimeRequired": "Death time is required",
|
|
30
37
|
"deleteIdentifierModalHeading": "Remove identifier?",
|
|
31
38
|
"deleteIdentifierModalText": " has a value of ",
|
|
32
39
|
"deleteIdentifierTooltip": "מחק",
|
|
33
40
|
"deleteRelationshipTooltipText": "מחק",
|
|
34
41
|
"demographicsSection": "מידע בסיסי",
|
|
35
42
|
"discard": "התעלם",
|
|
36
|
-
"discardModalBody": "השינויים שביצעת בפרטי המטופל לא נשמרו. האם להתעלם מהשינויים?",
|
|
37
|
-
"discardModalHeader": "אשר התעלמות מהשינויים",
|
|
38
43
|
"dobToggleLabelText": "תאריך הלידה ידוע?",
|
|
39
44
|
"editIdentifierTooltip": "ערוך",
|
|
40
45
|
"editPatientDetails": "ערוך פרטי מטופל",
|
|
41
46
|
"editPatientDetailsBreadcrumb": "ערוך פרטי מטופל",
|
|
47
|
+
"enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
|
|
42
48
|
"error": "שגיאה",
|
|
49
|
+
"errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
|
|
43
50
|
"errorFetchingOrderedFields": "שגיאה בעת קבלת השדות המסודרים להירכבות הכתובת",
|
|
44
51
|
"estimatedAgeInMonthsLabelText": "גיל משוער בחודשים",
|
|
45
52
|
"estimatedAgeInYearsLabelText": "גיל משוער בשנים",
|
|
46
53
|
"familyNameLabelText": "שם משפחה",
|
|
47
54
|
"familyNameRequired": "שם משפחה נדרש",
|
|
48
55
|
"female": "נקבה",
|
|
56
|
+
"fieldsWithErrors": "The following fields have errors: ",
|
|
49
57
|
"fullNameLabelText": "שם מלא",
|
|
50
58
|
"gender": "Gender",
|
|
51
59
|
"genderLabelText": "מין",
|
|
52
60
|
"genderRequired": "מין נדרש",
|
|
53
|
-
"genderUnspecified": "
|
|
61
|
+
"genderUnspecified": "Gender unspecified",
|
|
54
62
|
"givenNameLabelText": "שם פרטי",
|
|
55
63
|
"givenNameRequired": "שם פרטי נדרש",
|
|
56
64
|
"identifierValueRequired": "ערך זיהוי נדרש",
|
|
57
65
|
"idFieldLabelText": "זיהויים",
|
|
58
66
|
"IDInstructions": "בחר את הזיהויים שתרצה להוסיף למטופל זה:",
|
|
59
|
-
"
|
|
60
|
-
"invalidEmail": "יש לספק כתובת אימייל חוקית",
|
|
67
|
+
"invalidEmail": "Invalid email",
|
|
61
68
|
"invalidInput": "קלט לא חוקי",
|
|
62
|
-
"isDeadInputLabel": "
|
|
69
|
+
"isDeadInputLabel": "Is dead",
|
|
63
70
|
"jumpTo": "קפיצה ל",
|
|
64
71
|
"male": "זכר",
|
|
65
72
|
"middleNameLabelText": "שם תוכני",
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"negativeMonths": "חודשים שליליים",
|
|
69
|
-
"negativeYears": "שנים שליליות",
|
|
73
|
+
"negativeMonths": "Estimated months cannot be negative",
|
|
74
|
+
"negativeYears": "Estimated years cannot be negative",
|
|
70
75
|
"no": "לא",
|
|
76
|
+
"nonCodedCauseOfDeath": "Non-coded cause of death",
|
|
77
|
+
"nonCodedCauseOfDeathRequired": "Cause of death is required",
|
|
78
|
+
"nonsensicalYears": "Estimated years cannot be more than 140",
|
|
71
79
|
"numberInNameDubious": "מספר בשם חשוד",
|
|
72
80
|
"obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
|
|
73
81
|
"optional": "אופציונלי",
|
|
@@ -80,8 +88,8 @@
|
|
|
80
88
|
"patientNameKnown": "שם המטופל ידוע?",
|
|
81
89
|
"patientNotFound": "The patient records could not be found in Client registry, do you want to continue to create and post patient to registry",
|
|
82
90
|
"patientRegistrationBreadcrumb": "רישום מטופל",
|
|
83
|
-
"
|
|
84
|
-
"registerPatient": "
|
|
91
|
+
"refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
|
|
92
|
+
"registerPatient": "Register patient",
|
|
85
93
|
"registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
|
|
86
94
|
"registerPatientSuccessSnackbarTitle": "New Patient Created",
|
|
87
95
|
"registrationErrorSnackbarTitle": "Patient Registration Failed",
|
|
@@ -91,9 +99,9 @@
|
|
|
91
99
|
"relationshipRemovedText": "קשר הוסר",
|
|
92
100
|
"relationshipsSection": "קשרים",
|
|
93
101
|
"relationshipToPatient": "קשר למטופל",
|
|
94
|
-
"relativeFullNameLabelText": "
|
|
102
|
+
"relativeFullNameLabelText": "Full name",
|
|
95
103
|
"relativeNamePlaceholder": "שם פרטי שם משפחה",
|
|
96
|
-
"removeIdentifierButton": "Remove
|
|
104
|
+
"removeIdentifierButton": "Remove identifier",
|
|
97
105
|
"resetIdentifierTooltip": "איפוס",
|
|
98
106
|
"restoreRelationshipActionButton": "ביטול",
|
|
99
107
|
"searchAddress": "חיפוש כתובת",
|
|
@@ -103,17 +111,16 @@
|
|
|
103
111
|
"selectIdentifierType": "Select identifier type",
|
|
104
112
|
"sexFieldLabelText": "מין",
|
|
105
113
|
"source": "מקור",
|
|
106
|
-
"stroke": "שבץ",
|
|
107
114
|
"submitting": "Submitting",
|
|
108
|
-
"
|
|
115
|
+
"timeFormat": "Time Format",
|
|
116
|
+
"timeOfDeathInputLabel": "Time of death (hh:mm)",
|
|
117
|
+
"unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
|
|
109
118
|
"unknown": "לא ידוע",
|
|
110
119
|
"unknownPatientAttributeType": "סוג המאפיין של המטופל לא ידוע {{personAttributeTypeFormat}}",
|
|
111
|
-
"updatePatient": "
|
|
120
|
+
"updatePatient": "Update patient",
|
|
112
121
|
"updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
|
|
113
122
|
"updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
|
|
114
123
|
"updatePatientSuccessSnackbarTitle": "Patient Details Updated",
|
|
115
|
-
"
|
|
116
|
-
"validate": "Validate",
|
|
117
|
-
"yearsEstimateRequired": "נדרש חיזוי שנים",
|
|
124
|
+
"yearsEstimateRequired": "Estimated years required",
|
|
118
125
|
"yes": "כן"
|
|
119
126
|
}
|
package/translations/km.json
CHANGED
|
@@ -4,70 +4,78 @@
|
|
|
4
4
|
"age": "Age",
|
|
5
5
|
"allFieldsRequiredText": "តម្រូវឱ្យបំពេញគ្រប់កន្លែងចំហរទាំងអស់ លុះត្រាតែមានសម្គាល់ថាជាជម្រើស",
|
|
6
6
|
"autoGeneratedPlaceholderText": "ទាញចេញទិន្នន័យដោយស្វ័យប្រវត្តិ",
|
|
7
|
-
"birthdayNotInTheFuture": "
|
|
7
|
+
"birthdayNotInTheFuture": "Birthday cannot be in future",
|
|
8
|
+
"birthdayNotOver140YearsAgo": "Birthday cannot be more than 140 years ago",
|
|
8
9
|
"birthdayRequired": "តម្រូវឱ្យបំពេញថ្ងៃខែឆ្នាំកំណើត",
|
|
9
10
|
"birthFieldLabelText": "ថ្ងៃខែឆ្នាំកំណើត",
|
|
10
11
|
"cancel": "បោះបង់ចោល",
|
|
11
|
-
"causeOfDeathInputLabel": "
|
|
12
|
-
"clientRegistryEmpty": "Create & Post Patient",
|
|
13
|
-
"clientVerificationWithClientRegistry": "Client verification with client registry",
|
|
12
|
+
"causeOfDeathInputLabel": "Cause of death",
|
|
14
13
|
"closeOverlay": "បិទការត្រួតលើគ្នា។",
|
|
15
14
|
"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
15
|
"codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
|
|
17
16
|
"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.",
|
|
18
17
|
"configure": "កំណត់រចនាសម្ព័ន្ធ",
|
|
19
18
|
"configureIdentifiers": "ឯកសារកំណត់អត្តសញ្ញាណផ្សេងទៀត",
|
|
19
|
+
"confirmDiscardChangesBody": "Your unsaved changes will be lost if you proceed to discard the form",
|
|
20
|
+
"confirmDiscardChangesTitle": "Are you sure you want to discard these changes?",
|
|
20
21
|
"confirmIdentifierDeletionText": "Are you sure you want to remove this identifier?",
|
|
21
22
|
"contactSection": "ព័ត៌មានមរណភាព",
|
|
22
23
|
"createNewPatient": "Create new patient",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
24
|
+
"dateOfBirthLabelText": "Date of birth",
|
|
25
|
+
"deathCauseRequired": "Cause of death is required",
|
|
26
|
+
"deathDateInFuture": "Death date cannot be in future",
|
|
27
|
+
"deathDateInputLabel": "Date of death",
|
|
28
|
+
"deathDateRequired": "Death date is required",
|
|
29
|
+
"deathdayInvalidDate": "Death date and time cannot be before the birthday",
|
|
30
|
+
"deathdayIsRequired": "Death date is required when the patient is marked as deceased.",
|
|
31
|
+
"deathdayNotInTheFuture": "",
|
|
29
32
|
"deathSection": "ព័ត៌មានមរណភាព",
|
|
33
|
+
"deathTimeFormatInvalid": "Time format is invalid",
|
|
34
|
+
"deathTimeFormatRequired": "Time format is required",
|
|
35
|
+
"deathTimeInvalid": "Time doesn't match the format 'hh:mm'",
|
|
36
|
+
"deathTimeRequired": "Death time is required",
|
|
30
37
|
"deleteIdentifierModalHeading": "Remove identifier?",
|
|
31
38
|
"deleteIdentifierModalText": " has a value of ",
|
|
32
39
|
"deleteIdentifierTooltip": "លុប",
|
|
33
40
|
"deleteRelationshipTooltipText": "លុប",
|
|
34
41
|
"demographicsSection": "ព័ត៌មានផ្ទាល់ខ្លួនអ្នកជំងឺ",
|
|
35
42
|
"discard": "បោះបង់",
|
|
36
|
-
"discardModalBody": "ការផ្លាស់ប្តូរដែលអ្នកបានធ្វើចំពោះព័ត៌មានលម្អិតរបស់អ្នកជំងឺនេះមិនត្រូវបានរក្សាទុកទេ។ បោះបង់ការផ្លាស់ប្តូរ?",
|
|
37
|
-
"discardModalHeader": "បញ្ជាក់ការផ្លាស់ប្តូរការបោះបង់",
|
|
38
43
|
"dobToggleLabelText": "ស្គាល់ថ្ងៃខែឆ្នាំកំណើត?",
|
|
39
44
|
"editIdentifierTooltip": "កែសម្រួល",
|
|
40
45
|
"editPatientDetails": "កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ",
|
|
41
46
|
"editPatientDetailsBreadcrumb": "កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ",
|
|
47
|
+
"enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
|
|
42
48
|
"error": "មានបញ្ហាបច្ចេកទេស",
|
|
49
|
+
"errorFetchingCodedCausesOfDeath": "Error fetching coded causes of death",
|
|
43
50
|
"errorFetchingOrderedFields": "មានបញ្ហាបច្ចេកទេសក្នុងការទាញទិន្នន័យតាមឋានានុក្រមអាសយដ្ឋាន",
|
|
44
51
|
"estimatedAgeInMonthsLabelText": "អាយុប៉ាន់ស្មានគិតជាខែ",
|
|
45
52
|
"estimatedAgeInYearsLabelText": "អាយុប៉ាន់ស្មានគិតជាឆ្នាំ",
|
|
46
53
|
"familyNameLabelText": "នាមត្រកូល",
|
|
47
54
|
"familyNameRequired": "តម្រូវឱ្យបំពេញនាមត្រកូល",
|
|
48
55
|
"female": "ស្រី",
|
|
56
|
+
"fieldsWithErrors": "The following fields have errors: ",
|
|
49
57
|
"fullNameLabelText": "ឈ្មោះពេញ",
|
|
50
58
|
"gender": "Gender",
|
|
51
59
|
"genderLabelText": "ភេទ",
|
|
52
60
|
"genderRequired": "តម្រូវឱ្យបំពេញភេទ",
|
|
53
|
-
"genderUnspecified": "
|
|
61
|
+
"genderUnspecified": "Gender unspecified",
|
|
54
62
|
"givenNameLabelText": "នាមខ្លួន",
|
|
55
63
|
"givenNameRequired": "តម្រូវឱ្យបំពេញឈ្មោះ",
|
|
56
64
|
"identifierValueRequired": "តម្រូវឱ្យមានកំណត់អត្តសញ្ញាណ",
|
|
57
65
|
"idFieldLabelText": "អ្នកកំណត់អត្តសញ្ញាណ",
|
|
58
66
|
"IDInstructions": "ជ្រើសរើសអត្តសញ្ញាណដែលអ្នកចង់បន្ថែមសម្រាប់អ្នកជំងឺនេះ៖",
|
|
59
|
-
"
|
|
60
|
-
"invalidEmail": "ត្រូវតែផ្តល់ឱ្យអ៊ីមែលដែលមានសុពលភាព",
|
|
67
|
+
"invalidEmail": "Invalid email",
|
|
61
68
|
"invalidInput": "ការបញ្ចូលមិនត្រឹមត្រូវ",
|
|
62
|
-
"isDeadInputLabel": "
|
|
69
|
+
"isDeadInputLabel": "Is dead",
|
|
63
70
|
"jumpTo": "រំលងទៅ",
|
|
64
71
|
"male": "ប្រុស",
|
|
65
72
|
"middleNameLabelText": "លេខជាឈ្មោះដែលសង្ស័យ",
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"negativeMonths": "ខែអវិជ្ជមាន",
|
|
69
|
-
"negativeYears": "ឆ្នាំអវិជ្ជមាន",
|
|
73
|
+
"negativeMonths": "Estimated months cannot be negative",
|
|
74
|
+
"negativeYears": "Estimated years cannot be negative",
|
|
70
75
|
"no": "ទេ",
|
|
76
|
+
"nonCodedCauseOfDeath": "Non-coded cause of death",
|
|
77
|
+
"nonCodedCauseOfDeathRequired": "Cause of death is required",
|
|
78
|
+
"nonsensicalYears": "Estimated years cannot be more than 140",
|
|
71
79
|
"numberInNameDubious": "លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ",
|
|
72
80
|
"obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
|
|
73
81
|
"optional": "ជាជម្រើស",
|
|
@@ -80,8 +88,8 @@
|
|
|
80
88
|
"patientNameKnown": "ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?",
|
|
81
89
|
"patientNotFound": "The patient records could not be found in Client registry, do you want to continue to create and post patient to registry",
|
|
82
90
|
"patientRegistrationBreadcrumb": "ការចុះឈ្មោះអ្នកជំងឺ",
|
|
83
|
-
"
|
|
84
|
-
"registerPatient": "
|
|
91
|
+
"refreshOrContactAdmin": "Try refreshing the page or contact your system administrator",
|
|
92
|
+
"registerPatient": "Register patient",
|
|
85
93
|
"registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
|
|
86
94
|
"registerPatientSuccessSnackbarTitle": "New Patient Created",
|
|
87
95
|
"registrationErrorSnackbarTitle": "Patient Registration Failed",
|
|
@@ -91,9 +99,9 @@
|
|
|
91
99
|
"relationshipRemovedText": "ការទំនាក់ទំនងត្រូវបានដកចេញ",
|
|
92
100
|
"relationshipsSection": "ទំនាក់ទំនង",
|
|
93
101
|
"relationshipToPatient": "ការទាក់ទងទៅនឹងអ្នកជំងឺ",
|
|
94
|
-
"relativeFullNameLabelText": "
|
|
102
|
+
"relativeFullNameLabelText": "Full name",
|
|
95
103
|
"relativeNamePlaceholder": "នាមត្រកូលនាមខ្លួន",
|
|
96
|
-
"removeIdentifierButton": "Remove
|
|
104
|
+
"removeIdentifierButton": "Remove identifier",
|
|
97
105
|
"resetIdentifierTooltip": "រៀបចំឡើងវិញ",
|
|
98
106
|
"restoreRelationshipActionButton": "វិលត្រឡប់មកដើមវិញ",
|
|
99
107
|
"searchAddress": "ស្វែងរកអាសយដ្ឋាន",
|
|
@@ -103,17 +111,16 @@
|
|
|
103
111
|
"selectIdentifierType": "Select identifier type",
|
|
104
112
|
"sexFieldLabelText": "ភេទ",
|
|
105
113
|
"source": "ប្រភព",
|
|
106
|
-
"stroke": "ជំងឺស្ទះសរសៃឈាមខួរក្បាល",
|
|
107
114
|
"submitting": "Submitting",
|
|
108
|
-
"
|
|
115
|
+
"timeFormat": "Time Format",
|
|
116
|
+
"timeOfDeathInputLabel": "Time of death (hh:mm)",
|
|
117
|
+
"unableToFetch": "Unable to fetch person attribute type - {{personattributetype}}",
|
|
109
118
|
"unknown": "មិនដឹង",
|
|
110
119
|
"unknownPatientAttributeType": "ប្រភេទនៃគុណលក្ខណៈរបស់អ្នកជំងឺគឺមិនស្គាល់។ {{personAttributeTypeFormat}}",
|
|
111
|
-
"updatePatient": "
|
|
120
|
+
"updatePatient": "Update patient",
|
|
112
121
|
"updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
|
|
113
122
|
"updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
|
|
114
123
|
"updatePatientSuccessSnackbarTitle": "Patient Details Updated",
|
|
115
|
-
"
|
|
116
|
-
"validate": "Validate",
|
|
117
|
-
"yearsEstimateRequired": "តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ",
|
|
124
|
+
"yearsEstimateRequired": "Estimated years required",
|
|
118
125
|
"yes": "បាទ/ចាស"
|
|
119
126
|
}
|