@tebokaroa/openmrs-esm-patient-notes-app 12.1.0-custom.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/jest.config.js +3 -0
- package/package.json +56 -0
- package/rspack.config.js +1 -0
- package/src/config-schema.ts +22 -0
- package/src/dashboard.meta.ts +7 -0
- package/src/declarations.d.ts +4 -0
- package/src/index.ts +34 -0
- package/src/notes/notes-overview.extension.tsx +74 -0
- package/src/notes/notes-overview.scss +40 -0
- package/src/notes/notes-overview.test.tsx +100 -0
- package/src/notes/paginated-notes.component.tsx +182 -0
- package/src/notes/visit-note-config-schema.ts +38 -0
- package/src/notes/visit-notes-form.scss +228 -0
- package/src/notes/visit-notes-form.test.tsx +494 -0
- package/src/notes/visit-notes-form.workspace.tsx +943 -0
- package/src/notes/visit-notes.resource.ts +113 -0
- package/src/routes.json +32 -0
- package/src/types/index.ts +202 -0
- package/src/visit-note-action-button.extension.tsx +28 -0
- package/src/visit-note-action-button.test.tsx +41 -0
- package/translations/am.json +39 -0
- package/translations/ar.json +39 -0
- package/translations/ar_SY.json +39 -0
- package/translations/bn.json +39 -0
- package/translations/cs.json +39 -0
- package/translations/de.json +39 -0
- package/translations/en.json +41 -0
- package/translations/en_US.json +39 -0
- package/translations/es.json +39 -0
- package/translations/es_MX.json +39 -0
- package/translations/fr.json +39 -0
- package/translations/he.json +39 -0
- package/translations/hi.json +39 -0
- package/translations/hi_IN.json +39 -0
- package/translations/id.json +39 -0
- package/translations/it.json +39 -0
- package/translations/ka.json +39 -0
- package/translations/km.json +39 -0
- package/translations/ku.json +39 -0
- package/translations/ky.json +39 -0
- package/translations/lg.json +39 -0
- package/translations/ne.json +39 -0
- package/translations/pl.json +39 -0
- package/translations/pt.json +39 -0
- package/translations/pt_BR.json +39 -0
- package/translations/qu.json +39 -0
- package/translations/ro_RO.json +39 -0
- package/translations/ru_RU.json +39 -0
- package/translations/si.json +39 -0
- package/translations/sq.json +39 -0
- package/translations/sw.json +39 -0
- package/translations/sw_KE.json +39 -0
- package/translations/tr.json +39 -0
- package/translations/tr_TR.json +39 -0
- package/translations/uk.json +39 -0
- package/translations/uz.json +39 -0
- package/translations/uz@Latn.json +39 -0
- package/translations/uz_UZ.json +39 -0
- package/translations/vi.json +39 -0
- package/translations/zh.json +39 -0
- package/translations/zh_CN.json +39 -0
- package/translations/zh_TW.json +39 -0
- package/tsconfig.json +4 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Adicionar",
|
|
3
|
+
"addImage": "Adicionar imagem",
|
|
4
|
+
"addVisitNote": "Adicione nota da visita",
|
|
5
|
+
"clinicalNoteLabel": "Escreva suas anotações",
|
|
6
|
+
"clinicalNotePlaceholder": "Escreva qualquer nota aqui",
|
|
7
|
+
"date": "Data",
|
|
8
|
+
"diagnoses": "Diagnósticos",
|
|
9
|
+
"discard": "Descartar",
|
|
10
|
+
"emptyDiagnosisText": "Nenhum diagnóstico selecionado — Insira abaixo um diagnóstico",
|
|
11
|
+
"enterPrimaryDiagnoses": "Insira diagnósticos primários",
|
|
12
|
+
"enterSecondaryDiagnoses": "Insira diagnósticos secundários",
|
|
13
|
+
"error": "Erro",
|
|
14
|
+
"errorFetchingConcepts": "Ocorreu um problema ao buscar conceitos",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Imagem",
|
|
17
|
+
"imageRemoved": "Imagem removida",
|
|
18
|
+
"imageUploadHelperText": "Faça carregamento de uma imagem ou use a câmera deste dispositivo para capturar uma imagem",
|
|
19
|
+
"noMatchingDiagnoses": "Nenhum diagnóstico correspondente foi encontrado",
|
|
20
|
+
"note": "Nota",
|
|
21
|
+
"noVisitNoteToDisplay": "Nenhuma nota da visita para mostrar",
|
|
22
|
+
"primaryDiagnosis": "Diagnósticos primários",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Escolha uns diagnósticos primários",
|
|
24
|
+
"primaryDiagnosisRequired": "Escolha pelo menos um diagnóstico primário",
|
|
25
|
+
"saveAndClose": "Salvar e fechar",
|
|
26
|
+
"saving": "Gravando",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Procure um diagnóstico primário",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Procure um diagnóstico secundário",
|
|
29
|
+
"secondaryDiagnosis": "Diagnóstico secundário",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Escolha um diagnóstico secundário",
|
|
31
|
+
"seeAll": "Ver tudo",
|
|
32
|
+
"visitDate": "Data da visita",
|
|
33
|
+
"visitNote": "Nota da visita",
|
|
34
|
+
"visitNoteNowVisible": "Agora está visível na página de consultas",
|
|
35
|
+
"visitNotes": "Notas da visita",
|
|
36
|
+
"visitNoteSaved": "Notas da visita gravada",
|
|
37
|
+
"visitNoteSaveError": "Erro ao gravar nota da visita",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Nota da Visita"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Adicionar",
|
|
3
|
+
"addImage": "Adicionar imagem",
|
|
4
|
+
"addVisitNote": "Adicionar uma nota de visita",
|
|
5
|
+
"clinicalNoteLabel": "Escreva suas anotações",
|
|
6
|
+
"clinicalNotePlaceholder": "Escreva quaisquer observações aqui",
|
|
7
|
+
"date": "Data",
|
|
8
|
+
"diagnoses": "Diagnósticos",
|
|
9
|
+
"discard": "Descartar",
|
|
10
|
+
"emptyDiagnosisText": "Nenhum diagnóstico selecionado - Digite um diagnóstico abaixo",
|
|
11
|
+
"enterPrimaryDiagnoses": "Digite os diagnósticos primários",
|
|
12
|
+
"enterSecondaryDiagnoses": "Digite os diagnósticos secundários",
|
|
13
|
+
"error": "Erro",
|
|
14
|
+
"errorFetchingConcepts": "Houve um problema ao buscar conceitos",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Imagem",
|
|
17
|
+
"imageRemoved": "Imagem removida",
|
|
18
|
+
"imageUploadHelperText": "Faça upload de uma imagem ou use a câmera deste dispositivo para capturar uma imagem",
|
|
19
|
+
"noMatchingDiagnoses": "Nenhum diagnóstico encontrado correspondente",
|
|
20
|
+
"note": "Nota",
|
|
21
|
+
"noVisitNoteToDisplay": "Nenhuma nota de visita a ser exibida",
|
|
22
|
+
"primaryDiagnosis": "Diagnóstico primário",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Escolha um diagnóstico primário",
|
|
24
|
+
"primaryDiagnosisRequired": "Escolha pelo menos um diagnóstico primário",
|
|
25
|
+
"saveAndClose": "Salvar e fechar",
|
|
26
|
+
"saving": "Salvando",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Pesquisar um diagnóstico primário",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Pesquisar um diagnóstico secundário",
|
|
29
|
+
"secondaryDiagnosis": "Diagnóstico secundário",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Escolha um diagnóstico secundário",
|
|
31
|
+
"seeAll": "Ver todos",
|
|
32
|
+
"visitDate": "Data da visita",
|
|
33
|
+
"visitNote": "Nota de visita",
|
|
34
|
+
"visitNoteNowVisible": "Ele agora está visível na página Encontros",
|
|
35
|
+
"visitNotes": "Notas de visita",
|
|
36
|
+
"visitNoteSaved": "Nota de visita salva",
|
|
37
|
+
"visitNoteSaveError": "Erro ao salvar nota de visita",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Nota de visita"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Adauga",
|
|
3
|
+
"addImage": "Adauga imagine",
|
|
4
|
+
"addVisitNote": "Adauga nota vizita",
|
|
5
|
+
"clinicalNoteLabel": "Scrie notitele tale",
|
|
6
|
+
"clinicalNotePlaceholder": "Scrie orice nota aici",
|
|
7
|
+
"date": "Data",
|
|
8
|
+
"diagnoses": "Diagnostic",
|
|
9
|
+
"discard": "Renunta",
|
|
10
|
+
"emptyDiagnosisText": "Niciun diagnostic selectat — Introdu un diagnostic mai jos",
|
|
11
|
+
"enterPrimaryDiagnoses": "Introdu diagnosticul primar",
|
|
12
|
+
"enterSecondaryDiagnoses": "Introdu diagnosticul secundar",
|
|
13
|
+
"error": "Eroare",
|
|
14
|
+
"errorFetchingConcepts": "A aparut o problema la preluarea conceptelor",
|
|
15
|
+
"errorTransformingDiagnoses": "Eroare la transformarea diagnosticului",
|
|
16
|
+
"image": "Imagine",
|
|
17
|
+
"imageRemoved": "Imagine stearsa",
|
|
18
|
+
"imageUploadHelperText": "Incarca o imagine sau foloseste camera dispozitivului pentru a captura o imagine",
|
|
19
|
+
"noMatchingDiagnoses": "Nu s-au gasit diagnostice corespunzatoare",
|
|
20
|
+
"note": "Nota",
|
|
21
|
+
"noVisitNoteToDisplay": "Nu exista nota de vizita de afisat",
|
|
22
|
+
"primaryDiagnosis": "Diagnostic primar",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Alege un diagnostic primar",
|
|
24
|
+
"primaryDiagnosisRequired": "Alege cel putin un diagnostic primar",
|
|
25
|
+
"saveAndClose": "Salveaza si inchide",
|
|
26
|
+
"saving": "Se salveaza",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Cauta un diagnostic primar",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Cauta un diagnostic secundar",
|
|
29
|
+
"secondaryDiagnosis": "Diagnostic secundar",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Alege un diagnostic secundar",
|
|
31
|
+
"seeAll": "Vezi tot",
|
|
32
|
+
"visitDate": "Data vizitei",
|
|
33
|
+
"visitNote": "Nota vizita",
|
|
34
|
+
"visitNoteNowVisible": "Este acum vizibila in pagina de consultatii",
|
|
35
|
+
"visitNotes": "Note vizita",
|
|
36
|
+
"visitNoteSaved": "Nota de vizita salvata",
|
|
37
|
+
"visitNoteSaveError": "Eroare la salvarea notei de vizita",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Nota Vizita"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add",
|
|
3
|
+
"addImage": "Add image",
|
|
4
|
+
"addVisitNote": "Add a visit note",
|
|
5
|
+
"clinicalNoteLabel": "Write your notes",
|
|
6
|
+
"clinicalNotePlaceholder": "Write any notes here",
|
|
7
|
+
"date": "Date",
|
|
8
|
+
"diagnoses": "Diagnoses",
|
|
9
|
+
"discard": "Discard",
|
|
10
|
+
"emptyDiagnosisText": "No diagnosis selected — Enter a diagnosis below",
|
|
11
|
+
"enterPrimaryDiagnoses": "Enter Primary diagnoses",
|
|
12
|
+
"enterSecondaryDiagnoses": "Enter Secondary diagnoses",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"errorFetchingConcepts": "There was a problem fetching concepts",
|
|
15
|
+
"errorTransformingDiagnoses": "Error transforming diagnoses",
|
|
16
|
+
"image": "Image",
|
|
17
|
+
"imageRemoved": "Image removed",
|
|
18
|
+
"imageUploadHelperText": "Upload an image or use this device's camera to capture an image",
|
|
19
|
+
"noMatchingDiagnoses": "No diagnoses found matching",
|
|
20
|
+
"note": "Note",
|
|
21
|
+
"noVisitNoteToDisplay": "No visit note to display",
|
|
22
|
+
"primaryDiagnosis": "Primary diagnosis",
|
|
23
|
+
"primaryDiagnosisInputPlaceholder": "Choose a primary diagnosis",
|
|
24
|
+
"primaryDiagnosisRequired": "Choose at least one primary diagnosis",
|
|
25
|
+
"saveAndClose": "Save and close",
|
|
26
|
+
"saving": "Saving",
|
|
27
|
+
"searchForPrimaryDiagnosis": "Search for a primary diagnosis",
|
|
28
|
+
"searchForSecondaryDiagnosis": "Search for a secondary diagnosis",
|
|
29
|
+
"secondaryDiagnosis": "Secondary diagnosis",
|
|
30
|
+
"secondaryDiagnosisInputPlaceholder": "Choose a secondary diagnosis",
|
|
31
|
+
"seeAll": "See all",
|
|
32
|
+
"visitDate": "Visit date",
|
|
33
|
+
"visitNote": "Visit note",
|
|
34
|
+
"visitNoteNowVisible": "It is now visible on the Encounters page",
|
|
35
|
+
"visitNotes": "Visit notes",
|
|
36
|
+
"visitNoteSaved": "Visit note saved",
|
|
37
|
+
"visitNoteSaveError": "Error saving visit note",
|
|
38
|
+
"visitNoteWorkspaceTitle": "Visit Note"
|
|
39
|
+
}
|