@ampath/esm-patient-registration-app 6.0.1-pre.6
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 +41 -0
- package/README.md +7 -0
- package/dist/130.js +2 -0
- package/dist/130.js.LICENSE.txt +3 -0
- package/dist/130.js.map +1 -0
- package/dist/152.js +1 -0
- package/dist/152.js.map +1 -0
- package/dist/249.js +2 -0
- package/dist/249.js.LICENSE.txt +46 -0
- package/dist/249.js.map +1 -0
- package/dist/255.js +2 -0
- package/dist/255.js.LICENSE.txt +9 -0
- package/dist/255.js.map +1 -0
- package/dist/271.js +1 -0
- package/dist/303.js +1 -0
- package/dist/303.js.map +1 -0
- package/dist/319.js +1 -0
- package/dist/365.js +1 -0
- package/dist/365.js.map +1 -0
- package/dist/460.js +1 -0
- package/dist/525.js +1 -0
- package/dist/525.js.map +1 -0
- package/dist/537.js +1 -0
- package/dist/537.js.map +1 -0
- package/dist/574.js +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/621.js +1 -0
- package/dist/621.js.map +1 -0
- package/dist/644.js +1 -0
- package/dist/729.js +1 -0
- package/dist/729.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/788.js +1 -0
- package/dist/807.js +1 -0
- package/dist/833.js +1 -0
- package/dist/879.js +1 -0
- package/dist/879.js.map +1 -0
- package/dist/ampath-esm-patient-registration-app.js +1 -0
- package/dist/ampath-esm-patient-registration-app.js.buildmanifest.json +649 -0
- package/dist/ampath-esm-patient-registration-app.js.map +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +56 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/docs/images/patient-registration-hierarchy.png +0 -0
- package/jest.config.js +3 -0
- package/package.json +61 -0
- package/src/add-patient-link.scss +3 -0
- package/src/add-patient-link.test.tsx +20 -0
- package/src/add-patient-link.tsx +21 -0
- package/src/config-schema.ts +410 -0
- package/src/constants.ts +14 -0
- package/src/declarations.d.ts +6 -0
- package/src/index.ts +71 -0
- package/src/nav-link.test.tsx +13 -0
- package/src/nav-link.tsx +10 -0
- package/src/offline.resources.ts +155 -0
- package/src/offline.ts +91 -0
- package/src/patient-registration/before-save-prompt.tsx +73 -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 +153 -0
- package/src/patient-registration/field/address/address-hierarchy-levels.component.tsx +73 -0
- package/src/patient-registration/field/address/address-hierarchy.resource.tsx +157 -0
- package/src/patient-registration/field/address/address-search.component.tsx +85 -0
- package/src/patient-registration/field/address/address-search.scss +53 -0
- package/src/patient-registration/field/address/custom-address-field.component.tsx +31 -0
- package/src/patient-registration/field/address/tests/address-hierarchy.test.tsx +214 -0
- package/src/patient-registration/field/address/tests/address-search-component.test.tsx +135 -0
- package/src/patient-registration/field/custom-field.component.tsx +25 -0
- package/src/patient-registration/field/dob/dob.component.tsx +159 -0
- package/src/patient-registration/field/dob/dob.test.tsx +75 -0
- package/src/patient-registration/field/field.component.tsx +47 -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/field.test.tsx +294 -0
- package/src/patient-registration/field/gender/gender-field.component.tsx +49 -0
- package/src/patient-registration/field/gender/gender-field.test.tsx +59 -0
- package/src/patient-registration/field/id/id-field.component.tsx +144 -0
- package/src/patient-registration/field/id/id-field.test.tsx +107 -0
- package/src/patient-registration/field/id/identifier-selection-overlay.component.tsx +198 -0
- package/src/patient-registration/field/id/identifier-selection.scss +37 -0
- package/src/patient-registration/field/name/name-field.component.tsx +142 -0
- package/src/patient-registration/field/obs/obs-field.component.tsx +204 -0
- package/src/patient-registration/field/obs/obs-field.test.tsx +205 -0
- package/src/patient-registration/field/person-attributes/coded-attributes.component.tsx +60 -0
- package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +116 -0
- package/src/patient-registration/field/person-attributes/coded-person-attribute-field.test.tsx +127 -0
- package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +88 -0
- package/src/patient-registration/field/person-attributes/person-attribute-field.test.tsx +187 -0
- package/src/patient-registration/field/person-attributes/person-attributes.resource.ts +20 -0
- package/src/patient-registration/field/person-attributes/text-person-attribute-field.component.tsx +58 -0
- package/src/patient-registration/field/person-attributes/text-person-attribute-field.test.tsx +88 -0
- package/src/patient-registration/field/phone/phone-field.component.tsx +16 -0
- package/src/patient-registration/form-manager.test.ts +67 -0
- package/src/patient-registration/form-manager.ts +414 -0
- package/src/patient-registration/input/basic-input/input/input.component.tsx +179 -0
- package/src/patient-registration/input/basic-input/input/input.test.tsx +72 -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 +49 -0
- package/src/patient-registration/input/combo-input/combo-input.component.tsx +128 -0
- package/src/patient-registration/input/combo-input/selection-tick.component.tsx +20 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.component.tsx +187 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.scss +62 -0
- package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +132 -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 +107 -0
- package/src/patient-registration/input/custom-input/identifier/utils.test.ts +81 -0
- package/src/patient-registration/input/custom-input/identifier/utils.ts +19 -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 +118 -0
- package/src/patient-registration/patient-registration-context.ts +24 -0
- package/src/patient-registration/patient-registration-hooks.ts +287 -0
- package/src/patient-registration/patient-registration-utils.ts +216 -0
- package/src/patient-registration/patient-registration.component.tsx +240 -0
- package/src/patient-registration/patient-registration.resource.test.tsx +26 -0
- package/src/patient-registration/patient-registration.resource.ts +250 -0
- package/src/patient-registration/patient-registration.scss +122 -0
- package/src/patient-registration/patient-registration.test.tsx +471 -0
- package/src/patient-registration/patient-registration.types.ts +318 -0
- package/src/patient-registration/section/death-info/death-info-section.component.tsx +31 -0
- package/src/patient-registration/section/death-info/death-info-section.test.tsx +64 -0
- package/src/patient-registration/section/demographics/demographics-section.component.tsx +30 -0
- package/src/patient-registration/section/demographics/demographics-section.test.tsx +83 -0
- package/src/patient-registration/section/generic-section.component.tsx +17 -0
- package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +235 -0
- package/src/patient-registration/section/patient-relationships/relationships-section.test.tsx +100 -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/overlay.component.tsx +51 -0
- package/src/patient-registration/ui-components/overlay/overlay.scss +63 -0
- package/src/patient-registration/validation/patient-registration-validation.test.tsx +157 -0
- package/src/patient-registration/validation/patient-registration-validation.tsx +60 -0
- package/src/patient-verification/client-registry-constants.ts +13 -0
- package/src/patient-verification/client-registry.component.tsx +66 -0
- package/src/patient-verification/client-registry.scss +1 -0
- package/src/patient-verification/utils.tsx +56 -0
- package/src/patient-verification/verification-modal.scss +20 -0
- package/src/patient-verification/verification.component.tsx +48 -0
- package/src/resource.ts +12 -0
- package/src/root.component.tsx +63 -0
- package/src/root.scss +7 -0
- package/src/root.test.tsx +32 -0
- package/src/routes.json +66 -0
- package/src/widgets/cancel-patient-edit.component.tsx +37 -0
- package/src/widgets/cancel-patient-edit.test.tsx +27 -0
- package/src/widgets/delete-identifier-confirmation-modal.test.tsx +34 -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/display-photo.test.tsx +37 -0
- package/src/widgets/edit-patient-details-button.component.tsx +34 -0
- package/src/widgets/edit-patient-details-button.scss +3 -0
- package/src/widgets/edit-patient-details-button.test.tsx +41 -0
- package/translations/am.json +97 -0
- package/translations/ar.json +97 -0
- package/translations/en.json +103 -0
- package/translations/es.json +97 -0
- package/translations/fr.json +97 -0
- package/translations/he.json +97 -0
- package/translations/km.json +97 -0
- package/translations/zh.json +89 -0
- package/translations/zh_CN.json +89 -0
- package/tsconfig.json +5 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addRelationshipButtonText": "Agregar relación",
|
|
3
|
+
"addressHeader": "Dirección",
|
|
4
|
+
"allFieldsRequiredText": "Todos los campos son obligatorios a menos que se indique como opcionales",
|
|
5
|
+
"autoGeneratedPlaceholderText": "Autogenerado",
|
|
6
|
+
"birthdayNotInTheFuture": "Cumpleaños no puede ser en el futuro",
|
|
7
|
+
"birthdayRequired": "Cumpleaños es obligatorio",
|
|
8
|
+
"birthFieldLabelText": "Nacimiento",
|
|
9
|
+
"cancel": "Cancelar",
|
|
10
|
+
"causeOfDeathInputLabel": "Causa de defunción",
|
|
11
|
+
"closeOverlay": "Cerrar superposición",
|
|
12
|
+
"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.",
|
|
13
|
+
"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}}'.",
|
|
14
|
+
"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.",
|
|
15
|
+
"configure": "Configurar",
|
|
16
|
+
"configureIdentifiers": "Configurar identificadores",
|
|
17
|
+
"contactSection": "Detalles de Contacto",
|
|
18
|
+
"createNew": "Crear Nuevo/a",
|
|
19
|
+
"dateOfBirthLabelText": "Fecha de Nacimiento",
|
|
20
|
+
"deathDateInputLabel": "Fecha de fallecimiento",
|
|
21
|
+
"deathdayNotInTheFuture": "El día de la muerte no puede ser en el futuro",
|
|
22
|
+
"deathSection": "Información de Fallecimiento",
|
|
23
|
+
"deleteIdentifierTooltip": "Eliminar",
|
|
24
|
+
"deleteRelationshipTooltipText": "Eliminar",
|
|
25
|
+
"demographicsSection": "Información Básica",
|
|
26
|
+
"discard": "Descartar",
|
|
27
|
+
"discardModalBody": "Los cambios realizados en los datos de este paciente no se han guardado. ¿Descartar cambios?",
|
|
28
|
+
"discardModalHeader": "Confirmar descarte de cambios",
|
|
29
|
+
"dobToggleLabelText": "¿Se conoce la fecha de nacimiento?",
|
|
30
|
+
"edit": "Editar",
|
|
31
|
+
"editIdentifierTooltip": "Editar",
|
|
32
|
+
"editPatientDetails": "Modificar los datos del paciente",
|
|
33
|
+
"editPatientDetailsBreadcrumb": "Editar detalles del paciente",
|
|
34
|
+
"error": "Error",
|
|
35
|
+
"errorFetchingOrderedFields": "Ocurrió un error al obtener campos ordenados para la jerarquía de direcciones",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Edad estimada en meses",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Edad estimada en años",
|
|
38
|
+
"familyNameLabelText": "Apellidos",
|
|
39
|
+
"familyNameRequired": "Apellidos es obligatorio",
|
|
40
|
+
"female": "Femenino",
|
|
41
|
+
"fullNameLabelText": "Nombre y Apellidos",
|
|
42
|
+
"genderLabelText": "Sexo",
|
|
43
|
+
"genderRequired": "El sexo es obligatorio",
|
|
44
|
+
"genderUnspecified": "Género no especificado",
|
|
45
|
+
"givenNameLabelText": "Nombre",
|
|
46
|
+
"givenNameRequired": "El nombre es obligatorio",
|
|
47
|
+
"identifierValueRequired": "El valor del identificador es obligatorio",
|
|
48
|
+
"idFieldLabelText": "Identificadores",
|
|
49
|
+
"IDInstructions": "Selecciona los identificadores que te gustaría agregar para este paciente:",
|
|
50
|
+
"incompleteForm": "Formulario incompleto",
|
|
51
|
+
"invalidEmail": "Debe indicar un email válido",
|
|
52
|
+
"invalidInput": "Entrada no válida",
|
|
53
|
+
"isDeadInputLabel": "Está muerto",
|
|
54
|
+
"jumpTo": "Ir a",
|
|
55
|
+
"male": "Masculino",
|
|
56
|
+
"middleNameLabelText": "Segundo Nombre",
|
|
57
|
+
"negativeMonths": "Meses negativos",
|
|
58
|
+
"negativeYears": "Años negativos",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"numberInNameDubious": "Número en nombre es dudoso",
|
|
61
|
+
"obsFieldUnknownDatatype": "El concepto para el campo de observación '{{fieldDefinitionId}}' tiene un tipo de datos desconocido '{{datatypeName}}'",
|
|
62
|
+
"optional": "Opcional",
|
|
63
|
+
"other": "Otro",
|
|
64
|
+
"patient": "Paciente",
|
|
65
|
+
"patientNameKnown": "¿Se sabe el nombre del paciente?",
|
|
66
|
+
"patientRegistrationBreadcrumb": "Registro de Pacientes",
|
|
67
|
+
"registerPatient": "Registrar paciente",
|
|
68
|
+
"registerPatientSuccessSnackbarSubtitle": "El paciente ahora se puede encontrar buscándolo por su nombre o número de identificación",
|
|
69
|
+
"registerPatientSuccessSnackbarTitle": "Nuevo paciente creado",
|
|
70
|
+
"registrationErrorSnackbarTitle": "Error en el registro del paciente",
|
|
71
|
+
"relationship": "Relación",
|
|
72
|
+
"relationshipPersonMustExist": "La persona relacionada debe ser una persona existente",
|
|
73
|
+
"relationshipPlaceholder": "Relación",
|
|
74
|
+
"relationshipRemovedText": "Relación eliminada",
|
|
75
|
+
"relationshipsSection": "Relaciones",
|
|
76
|
+
"relationshipToPatient": "Relación con el paciente",
|
|
77
|
+
"relativeFullNameLabelText": "Nombre y Apellidos",
|
|
78
|
+
"relativeNamePlaceholder": "Nombre Apellido",
|
|
79
|
+
"resetIdentifierTooltip": "Resetear",
|
|
80
|
+
"restoreRelationshipActionButton": "Deshacer",
|
|
81
|
+
"searchAddress": "Buscar dirección",
|
|
82
|
+
"searchIdentifierPlaceholder": "Buscar identificador",
|
|
83
|
+
"selectAnOption": "Seleccionar una opción",
|
|
84
|
+
"sexFieldLabelText": "Sexo",
|
|
85
|
+
"source": "Fuente",
|
|
86
|
+
"stroke": "Ictus",
|
|
87
|
+
"submitting": "Enviando",
|
|
88
|
+
"unableToFetch": "No se puede obtener el tipo de atributo de persona {{personattributetype}}",
|
|
89
|
+
"unknown": "Desconocido",
|
|
90
|
+
"unknownPatientAttributeType": "El tipo de atributo del paciente tiene un formato desconocido {{personAttributeTypeFormat}}",
|
|
91
|
+
"updatePatient": "Paciente Actualizado",
|
|
92
|
+
"updatePatientErrorSnackbarTitle": "Error al actualizar los detalles del paciente",
|
|
93
|
+
"updatePatientSuccessSnackbarSubtitle": "La información del paciente se ha actualizado correctamente",
|
|
94
|
+
"updatePatientSuccessSnackbarTitle": "Detalles del paciente actualizados",
|
|
95
|
+
"yearsEstimateRequired": "Estimación de años obligatoria",
|
|
96
|
+
"yes": "Sí"
|
|
97
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addRelationshipButtonText": "Ajouter un lien de parenté",
|
|
3
|
+
"addressHeader": "Adresse",
|
|
4
|
+
"allFieldsRequiredText": "Tous les champs sont requis sauf si explicitement indiqués facultatifs",
|
|
5
|
+
"autoGeneratedPlaceholderText": "Auto-généré",
|
|
6
|
+
"birthdayNotInTheFuture": "La date de naissance ne peut pas être dans le futur",
|
|
7
|
+
"birthdayRequired": "La date de naissance est requise",
|
|
8
|
+
"birthFieldLabelText": "Naissance",
|
|
9
|
+
"cancel": "Annuler",
|
|
10
|
+
"causeOfDeathInputLabel": "Cause de décès",
|
|
11
|
+
"closeOverlay": "Fermer la superposition",
|
|
12
|
+
"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.",
|
|
13
|
+
"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}}'.",
|
|
14
|
+
"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.",
|
|
15
|
+
"configure": "Configurer",
|
|
16
|
+
"configureIdentifiers": "Configurer les identifiants",
|
|
17
|
+
"contactSection": "Détails de contact",
|
|
18
|
+
"createNew": "Créer un nouveau",
|
|
19
|
+
"dateOfBirthLabelText": "Date de naissance",
|
|
20
|
+
"deathDateInputLabel": "Date de décès",
|
|
21
|
+
"deathdayNotInTheFuture": "Le décès ne peut pas être dans le futur",
|
|
22
|
+
"deathSection": "Informations sur le décès",
|
|
23
|
+
"deleteIdentifierTooltip": "Supprimer",
|
|
24
|
+
"deleteRelationshipTooltipText": "Supprimer",
|
|
25
|
+
"demographicsSection": "Informations de base",
|
|
26
|
+
"discard": "Abandonner",
|
|
27
|
+
"discardModalBody": "Les modifications que vous avez apportées aux données de ce patient n'ont pas été enregistrées. Annuler les modifications?",
|
|
28
|
+
"discardModalHeader": "Confirmer l'abandon des modifications",
|
|
29
|
+
"dobToggleLabelText": "Date de naissance connue?",
|
|
30
|
+
"edit": "Éditer",
|
|
31
|
+
"editIdentifierTooltip": "Éditer",
|
|
32
|
+
"editPatientDetails": "Modifier les détails du patient",
|
|
33
|
+
"editPatientDetailsBreadcrumb": "Modifier les détails du patient",
|
|
34
|
+
"error": "Erreur",
|
|
35
|
+
"errorFetchingOrderedFields": "Une erreur s'est produite lors de la récupération des champs ordonnés pour la hiérarchie d'adresse",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Âge estimé en mois",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Âge estimé en années",
|
|
38
|
+
"familyNameLabelText": "Nom de famille",
|
|
39
|
+
"familyNameRequired": "Le nom de famille est requis",
|
|
40
|
+
"female": "Femme",
|
|
41
|
+
"fullNameLabelText": "Nom et prénom",
|
|
42
|
+
"genderLabelText": "Sexe",
|
|
43
|
+
"genderRequired": "Le genre est requis",
|
|
44
|
+
"genderUnspecified": "Le genre n'est pas spécifié",
|
|
45
|
+
"givenNameLabelText": "Prénom",
|
|
46
|
+
"givenNameRequired": "Le prénom est requis",
|
|
47
|
+
"identifierValueRequired": "La valeur de l'identifiant est requise",
|
|
48
|
+
"idFieldLabelText": "Identifiants",
|
|
49
|
+
"IDInstructions": "Sélectionnez les identifiants que vous souhaitez ajouter pour ce patient:",
|
|
50
|
+
"incompleteForm": "Formulaire incomplet",
|
|
51
|
+
"invalidEmail": "Une adresse e-mail valide est requise",
|
|
52
|
+
"invalidInput": "Entrée invalide",
|
|
53
|
+
"isDeadInputLabel": "Est décédé",
|
|
54
|
+
"jumpTo": "Aller à",
|
|
55
|
+
"male": "Homme",
|
|
56
|
+
"middleNameLabelText": "Deuxième prénom",
|
|
57
|
+
"negativeMonths": "Mois négatifs",
|
|
58
|
+
"negativeYears": "Années négatives",
|
|
59
|
+
"no": "Non",
|
|
60
|
+
"numberInNameDubious": "Le chiffre dans le nom est suspect",
|
|
61
|
+
"obsFieldUnknownDatatype": "Le concept pour le champ d'observation '{{fieldDefinitionId}}' a un type de données inconnu '{{datatypeName}}'",
|
|
62
|
+
"optional": "Optionnel",
|
|
63
|
+
"other": "Autre",
|
|
64
|
+
"patient": "Patient",
|
|
65
|
+
"patientNameKnown": "Le nom du patient est connu?",
|
|
66
|
+
"patientRegistrationBreadcrumb": "Enregistrement du patient",
|
|
67
|
+
"registerPatient": "Enregistrer un patient",
|
|
68
|
+
"registerPatientSuccessSnackbarSubtitle": "Le patient peut maintenant être trouvé en le recherchant par son nom ou son numéro d'identification",
|
|
69
|
+
"registerPatientSuccessSnackbarTitle": "Nouveau patient créé",
|
|
70
|
+
"registrationErrorSnackbarTitle": "Échec de l'enregistrement du patient",
|
|
71
|
+
"relationship": "Relation",
|
|
72
|
+
"relationshipPersonMustExist": "La personne liée doit être une personne existante",
|
|
73
|
+
"relationshipPlaceholder": "Relation",
|
|
74
|
+
"relationshipRemovedText": "Relation supprimée",
|
|
75
|
+
"relationshipsSection": "Relations",
|
|
76
|
+
"relationshipToPatient": "Relation avec le patient",
|
|
77
|
+
"relativeFullNameLabelText": "Personne liée",
|
|
78
|
+
"relativeNamePlaceholder": "Prénom Nom de famille",
|
|
79
|
+
"resetIdentifierTooltip": "Réinitialiser",
|
|
80
|
+
"restoreRelationshipActionButton": "Restaurer",
|
|
81
|
+
"searchAddress": "Rechercher une adresse",
|
|
82
|
+
"searchIdentifierPlaceholder": "Rechercher un identifiant",
|
|
83
|
+
"selectAnOption": "Sélectionner une option",
|
|
84
|
+
"sexFieldLabelText": "Sexe",
|
|
85
|
+
"source": "Source",
|
|
86
|
+
"stroke": "Accident vasculaire cérébral",
|
|
87
|
+
"submitting": "En cours de soumission",
|
|
88
|
+
"unableToFetch": "Impossible de récupérer le type d'attribut de personne - {{personattributetype}}",
|
|
89
|
+
"unknown": "Inconnu",
|
|
90
|
+
"unknownPatientAttributeType": "Le type d'attribut de patient a un format inconnu {{personAttributeTypeFormat}}",
|
|
91
|
+
"updatePatient": "Mettre à jour le patient",
|
|
92
|
+
"updatePatientErrorSnackbarTitle": "Échec de la mise à jour des détails du patient",
|
|
93
|
+
"updatePatientSuccessSnackbarSubtitle": "Les informations du patient ont été mises à jour avec succès",
|
|
94
|
+
"updatePatientSuccessSnackbarTitle": "Détails du patient mis à jour",
|
|
95
|
+
"yearsEstimateRequired": "Estimation du nombre d'années requise",
|
|
96
|
+
"yes": "Oui"
|
|
97
|
+
}
|
|
@@ -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": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
|
|
13
|
+
"codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
|
|
14
|
+
"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.",
|
|
15
|
+
"configure": "הגדר",
|
|
16
|
+
"configureIdentifiers": "הגדר זיהויים",
|
|
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": "ערך זיהוי נדרש",
|
|
48
|
+
"idFieldLabelText": "זיהויים",
|
|
49
|
+
"IDInstructions": "בחר את הזיהויים שתרצה להוסיף למטופל זה:",
|
|
50
|
+
"incompleteForm": "טופס לא מלא",
|
|
51
|
+
"invalidEmail": "יש לספק כתובת אימייל חוקית",
|
|
52
|
+
"invalidInput": "קלט לא חוקי",
|
|
53
|
+
"isDeadInputLabel": "מת?",
|
|
54
|
+
"jumpTo": "קפיצה ל",
|
|
55
|
+
"male": "זכר",
|
|
56
|
+
"middleNameLabelText": "שם תוכני",
|
|
57
|
+
"negativeMonths": "חודשים שליליים",
|
|
58
|
+
"negativeYears": "שנים שליליות",
|
|
59
|
+
"no": "לא",
|
|
60
|
+
"numberInNameDubious": "מספר בשם חשוד",
|
|
61
|
+
"obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
|
|
62
|
+
"optional": "אופציונלי",
|
|
63
|
+
"other": "אחר",
|
|
64
|
+
"patient": "מטופל",
|
|
65
|
+
"patientNameKnown": "שם המטופל ידוע?",
|
|
66
|
+
"patientRegistrationBreadcrumb": "רישום מטופל",
|
|
67
|
+
"registerPatient": "רשום מטופל",
|
|
68
|
+
"registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
|
|
69
|
+
"registerPatientSuccessSnackbarTitle": "New Patient Created",
|
|
70
|
+
"registrationErrorSnackbarTitle": "Patient Registration Failed",
|
|
71
|
+
"relationship": "קשר",
|
|
72
|
+
"relationshipPersonMustExist": "האדם הקשור חייב להיות אדם קיים",
|
|
73
|
+
"relationshipPlaceholder": "קשר",
|
|
74
|
+
"relationshipRemovedText": "קשר הוסר",
|
|
75
|
+
"relationshipsSection": "קשרים",
|
|
76
|
+
"relationshipToPatient": "קשר למטופל",
|
|
77
|
+
"relativeFullNameLabelText": "שם מלא",
|
|
78
|
+
"relativeNamePlaceholder": "שם פרטי שם משפחה",
|
|
79
|
+
"resetIdentifierTooltip": "איפוס",
|
|
80
|
+
"restoreRelationshipActionButton": "ביטול",
|
|
81
|
+
"searchAddress": "חיפוש כתובת",
|
|
82
|
+
"searchIdentifierPlaceholder": "חיפוש זיהוי",
|
|
83
|
+
"selectAnOption": "בחר אפשרות",
|
|
84
|
+
"sexFieldLabelText": "מין",
|
|
85
|
+
"source": "מקור",
|
|
86
|
+
"stroke": "שבץ",
|
|
87
|
+
"submitting": "Submitting",
|
|
88
|
+
"unableToFetch": "אין אפשרות לאחזר סוג מאפיין אדם - {{personattributetype}}",
|
|
89
|
+
"unknown": "לא ידוע",
|
|
90
|
+
"unknownPatientAttributeType": "סוג המאפיין של המטופל לא ידוע {{personAttributeTypeFormat}}",
|
|
91
|
+
"updatePatient": "עדכון פרטי מטופל",
|
|
92
|
+
"updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
|
|
93
|
+
"updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
|
|
94
|
+
"updatePatientSuccessSnackbarTitle": "Patient Details Updated",
|
|
95
|
+
"yearsEstimateRequired": "נדרש חיזוי שנים",
|
|
96
|
+
"yes": "כן"
|
|
97
|
+
}
|
|
@@ -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": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an answer concept set UUID '{{answerConceptSetUuid}}' that does not have any concept answers.",
|
|
13
|
+
"codedPersonAttributeAnswerSetInvalid": "The coded person attribute field '{{codedPersonAttributeFieldId}}' has been defined with an invalid answer concept set UUID '{{answerConceptSetUuid}}'.",
|
|
14
|
+
"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.",
|
|
15
|
+
"configure": "កំណត់រចនាសម្ព័ន្ធ",
|
|
16
|
+
"configureIdentifiers": "ឯកសារកំណត់អត្តសញ្ញាណផ្សេងទៀត",
|
|
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": "តម្រូវឱ្យមានកំណត់អត្តសញ្ញាណ",
|
|
48
|
+
"idFieldLabelText": "អ្នកកំណត់អត្តសញ្ញាណ",
|
|
49
|
+
"IDInstructions": "ជ្រើសរើសអត្តសញ្ញាណដែលអ្នកចង់បន្ថែមសម្រាប់អ្នកជំងឺនេះ៖",
|
|
50
|
+
"incompleteForm": "ទម្រង់មិនពេញលេញ",
|
|
51
|
+
"invalidEmail": "ត្រូវតែផ្តល់ឱ្យអ៊ីមែលដែលមានសុពលភាព",
|
|
52
|
+
"invalidInput": "ការបញ្ចូលមិនត្រឹមត្រូវ",
|
|
53
|
+
"isDeadInputLabel": "គឺស្លាប់",
|
|
54
|
+
"jumpTo": "រំលងទៅ",
|
|
55
|
+
"male": "ប្រុស",
|
|
56
|
+
"middleNameLabelText": "លេខជាឈ្មោះដែលសង្ស័យ",
|
|
57
|
+
"negativeMonths": "ខែអវិជ្ជមាន",
|
|
58
|
+
"negativeYears": "ឆ្នាំអវិជ្ជមាន",
|
|
59
|
+
"no": "ទេ",
|
|
60
|
+
"numberInNameDubious": "លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ",
|
|
61
|
+
"obsFieldUnknownDatatype": "Concept for obs field '{{fieldDefinitionId}}' has unknown datatype '{{datatypeName}}'",
|
|
62
|
+
"optional": "ជាជម្រើស",
|
|
63
|
+
"other": "ផ្សេងៗ",
|
|
64
|
+
"patient": "អ្នកជំងឺ",
|
|
65
|
+
"patientNameKnown": "ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?",
|
|
66
|
+
"patientRegistrationBreadcrumb": "ការចុះឈ្មោះអ្នកជំងឺ",
|
|
67
|
+
"registerPatient": "ចុះឈ្មោះអ្នកជំងឺ",
|
|
68
|
+
"registerPatientSuccessSnackbarSubtitle": "The patient can now be found by searching for them using their name or ID number",
|
|
69
|
+
"registerPatientSuccessSnackbarTitle": "New Patient Created",
|
|
70
|
+
"registrationErrorSnackbarTitle": "Patient Registration Failed",
|
|
71
|
+
"relationship": "ទំនាក់ទំនង",
|
|
72
|
+
"relationshipPersonMustExist": "Related person must be an existing person",
|
|
73
|
+
"relationshipPlaceholder": "ទំនាក់ទំនង",
|
|
74
|
+
"relationshipRemovedText": "ការទំនាក់ទំនងត្រូវបានដកចេញ",
|
|
75
|
+
"relationshipsSection": "ទំនាក់ទំនង",
|
|
76
|
+
"relationshipToPatient": "ការទាក់ទងទៅនឹងអ្នកជំងឺ",
|
|
77
|
+
"relativeFullNameLabelText": "ឈ្មោះពេញ",
|
|
78
|
+
"relativeNamePlaceholder": "នាមត្រកូលនាមខ្លួន",
|
|
79
|
+
"resetIdentifierTooltip": "រៀបចំឡើងវិញ",
|
|
80
|
+
"restoreRelationshipActionButton": "វិលត្រឡប់មកដើមវិញ",
|
|
81
|
+
"searchAddress": "ស្វែងរកអាសយដ្ឋាន",
|
|
82
|
+
"searchIdentifierPlaceholder": "ស្វែងរកអត្តសញ្ញាណ",
|
|
83
|
+
"selectAnOption": "យកជម្រើសមួយ",
|
|
84
|
+
"sexFieldLabelText": "ភេទ",
|
|
85
|
+
"source": "ប្រភព",
|
|
86
|
+
"stroke": "ជំងឺស្ទះសរសៃឈាមខួរក្បាល",
|
|
87
|
+
"submitting": "Submitting",
|
|
88
|
+
"unableToFetch": "មិនអាចទាញយកប្រភេទគុណលក្ខណៈតាមអ្នកជំងឺបានទេ - {{personattributetype}}",
|
|
89
|
+
"unknown": "មិនដឹង",
|
|
90
|
+
"unknownPatientAttributeType": "ប្រភេទនៃគុណលក្ខណៈរបស់អ្នកជំងឺគឺមិនស្គាល់។ {{personAttributeTypeFormat}}",
|
|
91
|
+
"updatePatient": "ធ្វើបច្ចុប្បន្នភាពអ្នកជំងឺ",
|
|
92
|
+
"updatePatientErrorSnackbarTitle": "Patient Details Update Failed",
|
|
93
|
+
"updatePatientSuccessSnackbarSubtitle": "The patient's information has been successfully updated",
|
|
94
|
+
"updatePatientSuccessSnackbarTitle": "Patient Details Updated",
|
|
95
|
+
"yearsEstimateRequired": "តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ",
|
|
96
|
+
"yes": "បាទ/ចាស"
|
|
97
|
+
}
|
|
@@ -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": "ID标识是必填项",
|
|
44
|
+
"idFieldLabelText": "ID标识",
|
|
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": "现在可以通过姓名或ID来搜索患者。",
|
|
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
|
+
}
|
|
@@ -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": "ID标识是必填项",
|
|
44
|
+
"idFieldLabelText": "ID标识",
|
|
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": "现在可以通过姓名或ID来搜索患者。",
|
|
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');
|